質問編集履歴

1

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

2016/07/27 08:48

投稿

atokoo
atokoo

スコア13

test CHANGED
File without changes
test CHANGED
@@ -147,3 +147,61 @@
147
147
  }
148
148
 
149
149
  ```
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+ 追記
162
+
163
+ ```マニフェスト
164
+
165
+ <?xml version="1.0" encoding="utf-8"?>
166
+
167
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
168
+
169
+ package="sample.android.camera01"
170
+
171
+ android:versionCode="1"
172
+
173
+ android:versionName="1.0">
174
+
175
+ <application android:label="@string/app_name">
176
+
177
+ <activity android:name=".SampleCamera01"
178
+
179
+ android:label="@string/app_name">
180
+
181
+ <intent-filter>
182
+
183
+ <action android:name="android.intent.action.MAIN" />
184
+
185
+ <category android:name="android.intent.category.LAUNCHER" />
186
+
187
+ </intent-filter>
188
+
189
+ </activity>
190
+
191
+
192
+
193
+ </application>
194
+
195
+ <uses-sdk android:minSdkVersion="4" />
196
+
197
+
198
+
199
+ <uses-permission android:name="android.permission.CAMERA" />
200
+
201
+ <uses-permission android:name="android.permission.WRIGHT_EXTERNAL_STORAGE" />
202
+
203
+
204
+
205
+ </manifest>
206
+
207
+ ```