質問編集履歴

1

manifestファイルと画像を追記

2018/06/13 11:55

投稿

TA-KEY
TA-KEY

スコア21

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,60 @@
3
3
  意味が全くわからないのですが、簡単にでもいいので教えていただけないでしょうか。
4
4
 
5
5
 
6
+
7
+ ![イメージ説明](beaaed970775552ee0ba4b3e951ddf6a.png)
8
+
9
+
10
+
11
+ ```xml
12
+
13
+ <?xml version="1.0" encoding="utf-8"?>
14
+
15
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
16
+
17
+ package="com.example.taiki.errortest">
18
+
19
+
20
+
21
+ <application
22
+
23
+ android:allowBackup="true"
24
+
25
+ android:icon="@mipmap/ic_launcher"
26
+
27
+ android:label="@string/app_name"
28
+
29
+ android:roundIcon="@mipmap/ic_launcher_round"
30
+
31
+ android:supportsRtl="true"
32
+
33
+ android:theme="@style/AppTheme">
34
+
35
+ <activity
36
+
37
+ android:name=".MainActivity"
38
+
39
+ android:label="@string/app_name">
40
+
41
+ <intent-filter>
42
+
43
+ <action android:name="android.intent.action.MAIN" />
44
+
45
+
46
+
47
+ <category android:name="android.intent.category.LAUNCHER" />
48
+
49
+ </intent-filter>
50
+
51
+ </activity>
52
+
53
+ </application>
54
+
55
+
56
+
57
+ </manifest>
58
+
59
+ ```
6
60
 
7
61
 
8
62