我有一个react-native应用程序,我需要分发,但我们的分销商抱怨说,应用程序将安装在他们的android设备上,但应用程序不会显示在可运行的应用程序列表中,也不是打开选项时,新鲜安装。该应用程序只显示在设置中的应用程序列表中卸载。
我的清单是:
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"
android:exported="true">
<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:pathPrefix="/${applicationId}/android/callback"
android:scheme="${applicationId}" />
</intent-filter>
</activity>
</application>
</manifest>
我尝试启用通用架构,更改密钥库,甚至尝试重新安装项目,但似乎都不起作用。
1条答案
按热度按时间xcitsw881#
你错过
在您的
intent-filter
中