質問編集履歴
1
AndroidManifestを補足として追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -151,4 +151,33 @@
|
|
151
151
|
return (codicide);
|
152
152
|
}
|
153
153
|
|
154
|
-
}
|
154
|
+
}
|
155
|
+
|
156
|
+
|
157
|
+
**AndroidManifest**
|
158
|
+
|
159
|
+
<?xml version="1.0" encoding="utf-8"?>
|
160
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
161
|
+
package="com.example.sere.myapplication" >
|
162
|
+
|
163
|
+
<application
|
164
|
+
android:allowBackup="true"
|
165
|
+
android:icon="@mipmap/ic_launcher"
|
166
|
+
android:label="@string/app_name"
|
167
|
+
android:theme="@style/AppTheme" >
|
168
|
+
<activity
|
169
|
+
android:name=".MainActivity"
|
170
|
+
android:label="@string/app_name" >
|
171
|
+
<intent-filter>
|
172
|
+
<action android:name="android.intent.action.MAIN" />
|
173
|
+
|
174
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
175
|
+
</intent-filter>
|
176
|
+
</activity>
|
177
|
+
<activity
|
178
|
+
android:name=".ransu"
|
179
|
+
android:label="@string/app_name" >
|
180
|
+
</activity>
|
181
|
+
</application>
|
182
|
+
|
183
|
+
</manifest>
|