teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

マニフェストを追記しました

2016/07/27 08:48

投稿

atokoo
atokoo

スコア13

title CHANGED
File without changes
body CHANGED
@@ -72,4 +72,33 @@
72
72
  }
73
73
 
74
74
  }
75
+ ```
76
+
77
+
78
+
79
+
80
+
81
+ 追記
82
+ ```マニフェスト
83
+ <?xml version="1.0" encoding="utf-8"?>
84
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
85
+ package="sample.android.camera01"
86
+ android:versionCode="1"
87
+ android:versionName="1.0">
88
+ <application android:label="@string/app_name">
89
+ <activity android:name=".SampleCamera01"
90
+ android:label="@string/app_name">
91
+ <intent-filter>
92
+ <action android:name="android.intent.action.MAIN" />
93
+ <category android:name="android.intent.category.LAUNCHER" />
94
+ </intent-filter>
95
+ </activity>
96
+
97
+ </application>
98
+ <uses-sdk android:minSdkVersion="4" />
99
+
100
+ <uses-permission android:name="android.permission.CAMERA" />
101
+ <uses-permission android:name="android.permission.WRIGHT_EXTERNAL_STORAGE" />
102
+
103
+ </manifest>
75
104
  ```