質問編集履歴

1

manifests追記

2018/07/18 01:28

投稿

syyyow
syyyow

スコア28

test CHANGED
File without changes
test CHANGED
@@ -259,3 +259,91 @@
259
259
  }
260
260
 
261
261
  ```
262
+
263
+
264
+
265
+ ```java
266
+
267
+ manifests
268
+
269
+ <?xml version="1.0" encoding="utf-8"?>
270
+
271
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
272
+
273
+ package="jp.myapplication">
274
+
275
+ +
276
+
277
+ <uses-permission android:name="android.permission.INTERNET" />
278
+
279
+
280
+
281
+ <!-- To auto-complete the email text field in the login form with the user's emails -->
282
+
283
+ <uses-permission android:name="android.permission.GET_ACCOUNTS" />
284
+
285
+ <uses-permission android:name="android.permission.READ_PROFILE" />
286
+
287
+ <uses-permission android:name="android.permission.READ_CONTACTS" />
288
+
289
+
290
+
291
+ <application
292
+
293
+ android:allowBackup="true"
294
+
295
+ android:icon="@mipmap/ic_launcher"
296
+
297
+ android:label="@string/app_name"
298
+
299
+ android:roundIcon="@mipmap/ic_launcher_round"
300
+
301
+ android:supportsRtl="true"
302
+
303
+ android:theme="@style/AppTheme">
304
+
305
+ <activity
306
+
307
+ android:name=".Welcome"
308
+
309
+ android:label="@string/app_name">
310
+
311
+ <intent-filter>
312
+
313
+ <action android:name="android.intent.action.MAIN" />
314
+
315
+
316
+
317
+ <category android:name="android.intent.category.LAUNCHER" />
318
+
319
+ </intent-filter>
320
+
321
+ </activity>
322
+
323
+ <activity android:name=".Product_box" />
324
+
325
+ <activity android:name=".Product_onion" />
326
+
327
+ <activity android:name=".Product_garlic" />
328
+
329
+ <activity android:name=".Product_carrot" />
330
+
331
+ <activity android:name=".Home" />
332
+
333
+ <activity
334
+
335
+ android:name=".SignUp"
336
+
337
+ android:label="@string/title_activity_login">
338
+
339
+
340
+
341
+ </activity>
342
+
343
+ </application>
344
+
345
+
346
+
347
+ </manifest>
348
+
349
+ ```