質問編集履歴
1
文章の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,4 +88,90 @@
|
|
88
88
|
|
89
89
|
|
90
90
|
|
91
|
-
|
91
|
+
実行後に自動で以下のコードに書き換えられます。
|
92
|
+
|
93
|
+
```
|
94
|
+
|
95
|
+
<?xml version="1.0" encoding="utf-8"?>
|
96
|
+
|
97
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.businesscase" android:installLocation="auto">
|
98
|
+
|
99
|
+
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="27" />
|
100
|
+
|
101
|
+
<uses-permission android:name="android.permission.INTERNET" />
|
102
|
+
|
103
|
+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
104
|
+
|
105
|
+
<uses-feature android:name="android.hardware.camera" android:required="false" />
|
106
|
+
|
107
|
+
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
|
108
|
+
|
109
|
+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
110
|
+
|
111
|
+
<uses-permission android:name="android.permission.CAMERA" />
|
112
|
+
|
113
|
+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
114
|
+
|
115
|
+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
116
|
+
|
117
|
+
<application android:label="BusinessCase.Android" android:name="android.app.Application" android:allowBackup="true" android:icon="@mipmap/icon" android:debuggable="true">
|
118
|
+
|
119
|
+
<activity android:configChanges="orientation|screenSize" android:icon="@mipmap/icon" android:label="BusinessCase" android:theme="@style/MainTheme" android:name="crc64145a7a6fe65cf54e.MainActivity">
|
120
|
+
|
121
|
+
<intent-filter>
|
122
|
+
|
123
|
+
<action android:name="android.intent.action.MAIN" />
|
124
|
+
|
125
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
126
|
+
|
127
|
+
</intent-filter>
|
128
|
+
|
129
|
+
</activity>
|
130
|
+
|
131
|
+
<receiver android:enabled="true" android:exported="false" android:label="Connectivity Plugin Broadcast Receiver" android:name="crc64cea48322b3427ae9.ConnectivityChangeBroadcastReceiver" />
|
132
|
+
|
133
|
+
<activity android:configChanges="orientation|screenSize" android:name="crc646957603ea1820544.MediaPickerActivity" />
|
134
|
+
|
135
|
+
<service android:name="crc64a98abb514ffad9f1.KeepAliveService" />
|
136
|
+
|
137
|
+
<receiver android:enabled="true" android:exported="false" android:label="Essentials Battery Broadcast Receiver" android:name="crc64a0e0a82d0db9a07d.BatteryBroadcastReceiver" />
|
138
|
+
|
139
|
+
<receiver android:enabled="true" android:exported="false" android:label="Essentials Energy Saver Broadcast Receiver" android:name="crc64a0e0a82d0db9a07d.EnergySaverBroadcastReceiver" />
|
140
|
+
|
141
|
+
<receiver android:enabled="true" android:exported="false" android:label="Essentials Connectivity Broadcast Receiver" android:name="crc64a0e0a82d0db9a07d.ConnectivityBroadcastReceiver" />
|
142
|
+
|
143
|
+
<provider android:authorities="com.companyname.businesscase.fileProvider" android:exported="false" android:grantUriPermissions="true" android:name="xamarin.essentials.fileProvider">
|
144
|
+
|
145
|
+
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/xamarin_essentials_fileprovider_file_paths" />
|
146
|
+
|
147
|
+
</provider>
|
148
|
+
|
149
|
+
<receiver android:enabled="true" android:exported="false" android:name="crc643f46942d9dd1fff9.PowerSaveModeBroadcastReceiver" />
|
150
|
+
|
151
|
+
<provider android:name="mono.MonoRuntimeProvider" android:exported="false" android:initOrder="1999999999" android:authorities="com.companyname.businesscase.mono.MonoRuntimeProvider.__mono_init__" />
|
152
|
+
|
153
|
+
<!--suppress ExportedReceiver-->
|
154
|
+
|
155
|
+
<receiver android:name="mono.android.Seppuku">
|
156
|
+
|
157
|
+
<intent-filter>
|
158
|
+
|
159
|
+
<action android:name="mono.android.intent.action.SEPPUKU" />
|
160
|
+
|
161
|
+
<category android:name="mono.android.intent.category.SEPPUKU.com.companyname.businesscase" />
|
162
|
+
|
163
|
+
</intent-filter>
|
164
|
+
|
165
|
+
</receiver>
|
166
|
+
|
167
|
+
</application>
|
168
|
+
|
169
|
+
<provider android:name="android.support.v4.content.FileProvider" android:authorities="com.companyname.businesscase.fileprovider" android:exported="false" android:grantUriPermissions="true">
|
170
|
+
|
171
|
+
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths"></meta-data>
|
172
|
+
|
173
|
+
</provider>
|
174
|
+
|
175
|
+
</manifest>
|
176
|
+
|
177
|
+
```
|