質問編集履歴
1
AndroidManifest.xmlを掲載します
test
CHANGED
File without changes
|
test
CHANGED
@@ -286,4 +286,62 @@
|
|
286
286
|
|
287
287
|
|
288
288
|
|
289
|
+
```
|
290
|
+
|
291
|
+
|
292
|
+
|
293
|
+
AndroidManifest.xml
|
294
|
+
|
289
295
|
```
|
296
|
+
|
297
|
+
<?xml version="1.0" encoding="utf-8"?>
|
298
|
+
|
299
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
300
|
+
|
301
|
+
package="PACKAGE.MY.playaudiolan">
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
<uses-permission android:name="android.permission.INTERNET"/>
|
306
|
+
|
307
|
+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
308
|
+
|
309
|
+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
310
|
+
|
311
|
+
|
312
|
+
|
313
|
+
<application
|
314
|
+
|
315
|
+
android:allowBackup="true"
|
316
|
+
|
317
|
+
android:icon="@mipmap/ic_launcher"
|
318
|
+
|
319
|
+
android:label="@string/app_name"
|
320
|
+
|
321
|
+
android:roundIcon="@mipmap/ic_launcher_round"
|
322
|
+
|
323
|
+
android:supportsRtl="true"
|
324
|
+
|
325
|
+
android:theme="@style/Theme.PlayAudioLanSimple">
|
326
|
+
|
327
|
+
<activity android:name=".MainActivity">
|
328
|
+
|
329
|
+
<intent-filter>
|
330
|
+
|
331
|
+
<action android:name="android.intent.action.MAIN" />
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
<category android:name="android.intent.category.LAUNCHER" />
|
336
|
+
|
337
|
+
</intent-filter>
|
338
|
+
|
339
|
+
</activity>
|
340
|
+
|
341
|
+
</application>
|
342
|
+
|
343
|
+
|
344
|
+
|
345
|
+
</manifest>
|
346
|
+
|
347
|
+
```
|