2021-08-09 10:01:17 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-25 16:07:26 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
|
2021-10-20 13:32:43 +08:00
|
|
|
<queries>
|
|
|
|
|
<package android:name="com.tencent.mm" />
|
|
|
|
|
<package android:name="com.zhixingpai.powerfun" />
|
|
|
|
|
</queries>
|
2021-11-12 16:21:13 +08:00
|
|
|
<application android:requestLegacyExternalStorage="true" >
|
2021-10-20 13:32:43 +08:00
|
|
|
<activity android:name="com.unityplugins.imageselector.TestMainActivity"
|
|
|
|
|
android:theme="@style/UnityThemeSelector"
|
2021-09-23 18:14:53 +08:00
|
|
|
android:screenOrientation="landscape"
|
2021-09-13 17:33:58 +08:00
|
|
|
android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection|density" android:hardwareAccelerated="false">
|
2021-08-25 16:07:26 +08:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data android:scheme="powerfunx" android:host="app" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2021-12-01 10:38:43 +08:00
|
|
|
<activity android:name="com.unityplugins.mapbox.GlobeActivity"
|
|
|
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
|
|
|
android:screenOrientation="landscape"></activity>
|
2021-08-25 16:07:26 +08:00
|
|
|
</application>
|
2021-09-07 11:00:32 +08:00
|
|
|
|
2021-08-25 16:07:26 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH"/>
|
2021-09-07 11:00:32 +08:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2021-10-12 20:07:13 +08:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2021-11-09 11:37:10 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2021-08-25 16:07:26 +08:00
|
|
|
<uses-feature android:name="android.hardware.bluetooth_le" android:required="false"/>
|
|
|
|
|
</manifest>
|