質問編集履歴
1
manifests追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -128,4 +128,48 @@
|
|
128
128
|
|
129
129
|
};
|
130
130
|
}
|
131
|
+
```
|
132
|
+
|
133
|
+
```java
|
134
|
+
manifests
|
135
|
+
<?xml version="1.0" encoding="utf-8"?>
|
136
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
137
|
+
package="jp.myapplication">
|
138
|
+
+
|
139
|
+
<uses-permission android:name="android.permission.INTERNET" />
|
140
|
+
|
141
|
+
<!-- To auto-complete the email text field in the login form with the user's emails -->
|
142
|
+
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
143
|
+
<uses-permission android:name="android.permission.READ_PROFILE" />
|
144
|
+
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
145
|
+
|
146
|
+
<application
|
147
|
+
android:allowBackup="true"
|
148
|
+
android:icon="@mipmap/ic_launcher"
|
149
|
+
android:label="@string/app_name"
|
150
|
+
android:roundIcon="@mipmap/ic_launcher_round"
|
151
|
+
android:supportsRtl="true"
|
152
|
+
android:theme="@style/AppTheme">
|
153
|
+
<activity
|
154
|
+
android:name=".Welcome"
|
155
|
+
android:label="@string/app_name">
|
156
|
+
<intent-filter>
|
157
|
+
<action android:name="android.intent.action.MAIN" />
|
158
|
+
|
159
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
160
|
+
</intent-filter>
|
161
|
+
</activity>
|
162
|
+
<activity android:name=".Product_box" />
|
163
|
+
<activity android:name=".Product_onion" />
|
164
|
+
<activity android:name=".Product_garlic" />
|
165
|
+
<activity android:name=".Product_carrot" />
|
166
|
+
<activity android:name=".Home" />
|
167
|
+
<activity
|
168
|
+
android:name=".SignUp"
|
169
|
+
android:label="@string/title_activity_login">
|
170
|
+
|
171
|
+
</activity>
|
172
|
+
</application>
|
173
|
+
|
174
|
+
</manifest>
|
131
175
|
```
|