| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.unity3d.player" xmlns:tools="http://schemas.android.com/tools" android:installLocation="preferExternal">
- <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />
- <application android:theme="@style/UnityThemeSelector" android:icon="@mipmap/app_icon" android:label="@string/app_name">
- <activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
- </activity>
- <service
- android:name="com.hpplay.sdk.source.process.LelinkSdkService"
- android:exported="true"
- tools:replace="android:exported"
- android:process=":lelinkps" >
- <intent-filter>
- <action android:name="com.hpplay.sdk.source.LelinkSdkService.ACTION" />
- </intent-filter>
- </service>
- <activity
- android:name="com.hpplay.sdk.source.permission.PermissionBridgeActivity"
- android:excludeFromRecents="true"
- android:exported="false"
- android:process=":lelinkps"
- android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" />
- <service
- android:name="com.hpplay.component.screencapture.ScreenCaptureService"
- android:exported="false"
- android:foregroundServiceType="mediaProjection"
- android:process=":lelinkps" />
- <receiver
- android:name="com.hpplay.sdk.source.process.LelinkReceiver"
- android:exported="true"
- tools:replace="android:exported"
- android:process=":lelinkps" >
- <intent-filter>
- <action android:name="com.hpplay.source.service.close" />
- </intent-filter>
- </receiver>
- </application>
- <uses-permission android:name="android.permission.BLUETOOTH" />
- <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
- <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
- <uses-permission-sdk-23 android:name="android.permission.BLUETOOTH" />
- <uses-permission-sdk-23 android:name="android.permission.ACCESS_COARSE_LOCATION" />
- <uses-feature android:name="android.hardware.bluetooth_le" android:required="true" />
- <!-- Needed only if your app looks for Bluetooth devices.
- You must add an attribute to this permission, or declare the
- ACCESS_FINE_LOCATION permission, depending on the results when you
- check location usage in your app. -->
- <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
- <!-- Needed only if your app makes the device discoverable to Bluetooth
- devices. -->
- <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
- <!-- Needed only if your app communicates with already-paired Bluetooth
- devices. -->
- <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
- </manifest>
|