|
|
@@ -2,7 +2,7 @@
|
|
|
<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">
|
|
|
+ <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" />
|
|
|
@@ -10,6 +10,40 @@
|
|
|
</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" />
|