修改androidManifest

This commit is contained in:
bingshi 2022-12-13 14:58:04 +08:00
parent 9544638820
commit d18c755483

View File

@ -9,6 +9,7 @@
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:supportsRtl="true" android:supportsRtl="true"
android:extractNativeLibs="true"
android:usesCleartextTraffic="true" android:usesCleartextTraffic="true"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"> android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<!-- Tell Cocos2dxActivity the name of our .so --> <!-- Tell Cocos2dxActivity the name of our .so -->
@ -60,6 +61,7 @@
To the list of attributes on the activity element. To the list of attributes on the activity element.
--> -->
<activity <activity
android:exported="true"
android:name="net.openid.appauth.RedirectUriReceiverActivity" android:name="net.openid.appauth.RedirectUriReceiverActivity"
tools:node="replace"> tools:node="replace">
<intent-filter> <intent-filter>
@ -68,8 +70,10 @@
<category android:name="android.intent.category.BROWSABLE"/> <category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="com.googleusercontent.apps.53206975661-asnf3qe4bg29p8h981pgf099osvrjbme"/> <data android:scheme="com.googleusercontent.apps.53206975661-asnf3qe4bg29p8h981pgf099osvrjbme"/>
</intent-filter> </intent-filter>
</activity> </activity>
<service android:name ="com.youme.voiceengine.VoiceEngineService"> <service android:name ="com.youme.voiceengine.VoiceEngineService"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="com.youme.voiceengine.VoiceEngineService"/> <action android:name="com.youme.voiceengine.VoiceEngineService"/>
<category android:name="android.intent.category.default"/> <category android:name="android.intent.category.default"/>