问题描述
因此,您可以看到软件包名称中没有大写字母。 以前,它说用户没有授予安装许可。 有趣的是,该应用程序已经安装,我正在测试一些新代码。 它要求卸载,但我还是没有用。 我重新启动了设备(Redmi Note 3,最新的操作系统更新),然后出现此错误。 值得一提的是,此应用之前也曾遇到麻烦。 设备具有API 23,我将minSdkVersion设置为23,但是在单击“运行”时,它继续显示minSdkVersion为28。我将其设置为21,然后运行它。 将其设置回23,这次没有任何麻烦。 奇怪。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.nocapitals.www.nocapitals_hereeither">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SetReminder"/>
<receiver android:name=".AlertReceiver" android:process="remote"/>
</application>
</manifest>
1楼
将您的进程名称更改为:remote
。
我不完全确定为什么会这样,但是根据 ,如果没有冒号,表示该过程是全局的(与您的UID具有相同UID的任何应用共享),而MIUI作为MIUI可能阻止了该工作。