質問編集履歴

1

追記

2015/11/19 01:13

投稿

mememd
mememd

スコア50

test CHANGED
File without changes
test CHANGED
@@ -2,4 +2,64 @@
2
2
 
3
3
  どのような事が原因なのでしょうか。
4
4
 
5
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
6
+
5
- ス等も必要があるのならば出しますのでどなたか助けてください。
7
+ package="パッケジ名" >
8
+
9
+
10
+
11
+ <application
12
+
13
+ android:allowBackup="true"
14
+
15
+ android:icon="@mipmap/ic_launcher"
16
+
17
+ android:label="@string/app_name"
18
+
19
+ android:supportsRtl="true"
20
+
21
+ android:theme="@style/AppTheme" >
22
+
23
+ <activity android:name=".MainActivity" >
24
+
25
+ <intent-filter>
26
+
27
+ <action android:name="android.intent.action.MAIN" />
28
+
29
+
30
+
31
+ <category android:name="android.intent.category.LAUNCHER" />
32
+
33
+ </intent-filter>
34
+
35
+ </activity>
36
+
37
+ </application>
38
+
39
+ <uses-permission android:name="android.permission.INTERNET" />
40
+
41
+ </manifest>
42
+
43
+
44
+
45
+ <resources>
46
+
47
+
48
+
49
+ <!-- Base application theme. -->
50
+
51
+ <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
52
+
53
+ <!-- Customize your theme here. -->
54
+
55
+ <item name="colorPrimary">@color/colorPrimary</item>
56
+
57
+ <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
58
+
59
+ <item name="colorAccent">@color/colorAccent</item>
60
+
61
+ </style>
62
+
63
+
64
+
65
+ </resources>