質問編集履歴

2

修正

2015/12/08 15:40

投稿

rumippu
rumippu

スコア26

test CHANGED
File without changes
test CHANGED
@@ -43,6 +43,8 @@
43
43
  ご回答ありがとうございます。
44
44
 
45
45
  マニフェストは以下のとおりになります
46
+
47
+ ```ここに言語を入力
46
48
 
47
49
  <?xml version="1.0" encoding="utf-8"?>
48
50
 
@@ -110,9 +112,13 @@
110
112
 
111
113
  </manifest>
112
114
 
115
+ ```
116
+
113
117
 
114
118
 
115
119
  また、logcatの赤字の部分はこのようになっております
120
+
121
+ ```ここに言語を入力
116
122
 
117
123
  12-09 00:26:07.664 3783-3783/? E/cutils: to chown(/mnt/shell/emulated/0, 0, 0)
118
124
 
@@ -122,6 +128,8 @@
122
128
 
123
129
  12-09 00:26:07.666 3783-3783/com.example.fumi.chaosimage E/cutils: to chown(/storage/emulated/0/Android/obb, 0, 0)
124
130
 
131
+ ```
132
+
125
133
 
126
134
 
127
135
  以上、よろしくお願いします

1

追記

2015/12/08 15:40

投稿

rumippu
rumippu

スコア26

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,95 @@
33
33
 
34
34
 
35
35
  以上、どなたかご回答いただければ幸いです。
36
+
37
+
38
+
39
+
40
+
41
+ 追記:
42
+
43
+ ご回答ありがとうございます。
44
+
45
+ マニフェストは以下のとおりになります
46
+
47
+ <?xml version="1.0" encoding="utf-8"?>
48
+
49
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
50
+
51
+ package="〜" >
52
+
53
+
54
+
55
+ <application
56
+
57
+ android:allowBackup="true"
58
+
59
+ android:icon="@mipmap/ic_launcher"
60
+
61
+ android:label="@string/app_name"
62
+
63
+ android:theme="@style/AppTheme" >
64
+
65
+
66
+
67
+
68
+
69
+ <activity
70
+
71
+ android:name=".TitleActivity"
72
+
73
+ android:label="@string/app_name">
74
+
75
+
76
+
77
+ <!--<action android:name="android.intent.action.MAIN" />-->
78
+
79
+ <!--<category android:name="android.intent.category.LAUNCHER" />-->
80
+
81
+
82
+
83
+ <intent-filter>
84
+
85
+ <action android:name="android.intent.action.MAIN" />
86
+
87
+ <category android:name="android.intent.category.LAUNCHER" />
88
+
89
+ </intent-filter>
90
+
91
+
92
+
93
+ </activity>
94
+
95
+
96
+
97
+ <activity
98
+
99
+ android:name=".MainActivity"
100
+
101
+ android:label="@string/app_name">
102
+
103
+ </activity>
104
+
105
+
106
+
107
+ </application>
108
+
109
+
110
+
111
+ </manifest>
112
+
113
+
114
+
115
+ また、logcatの赤字の部分はこのようになっております
116
+
117
+ 12-09 00:26:07.664 3783-3783/? E/cutils: to chown(/mnt/shell/emulated/0, 0, 0)
118
+
119
+ 12-09 00:26:07.664 3783-3783/? E/cutils: to chown(/mnt/shell/emulated/obb, 0, 0)
120
+
121
+ 12-09 00:26:07.666 3783-3783/? E/cutils: to chown(/storage/emulated/0/Android, 0, 0)
122
+
123
+ 12-09 00:26:07.666 3783-3783/com.example.fumi.chaosimage E/cutils: to chown(/storage/emulated/0/Android/obb, 0, 0)
124
+
125
+
126
+
127
+ 以上、よろしくお願いします