質問編集履歴

1

AndroidManifestを補足として追加しました。

2015/08/22 00:59

投稿

Puhu
Puhu

スコア31

test CHANGED
File without changes
test CHANGED
@@ -305,3 +305,61 @@
305
305
 
306
306
 
307
307
  }
308
+
309
+
310
+
311
+
312
+
313
+ **AndroidManifest**
314
+
315
+
316
+
317
+ <?xml version="1.0" encoding="utf-8"?>
318
+
319
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
320
+
321
+ package="com.example.sere.myapplication" >
322
+
323
+
324
+
325
+ <application
326
+
327
+ android:allowBackup="true"
328
+
329
+ android:icon="@mipmap/ic_launcher"
330
+
331
+ android:label="@string/app_name"
332
+
333
+ android:theme="@style/AppTheme" >
334
+
335
+ <activity
336
+
337
+ android:name=".MainActivity"
338
+
339
+ android:label="@string/app_name" >
340
+
341
+ <intent-filter>
342
+
343
+ <action android:name="android.intent.action.MAIN" />
344
+
345
+
346
+
347
+ <category android:name="android.intent.category.LAUNCHER" />
348
+
349
+ </intent-filter>
350
+
351
+ </activity>
352
+
353
+ <activity
354
+
355
+ android:name=".ransu"
356
+
357
+ android:label="@string/app_name" >
358
+
359
+ </activity>
360
+
361
+ </application>
362
+
363
+
364
+
365
+ </manifest>