我的应用程序不在Play商店上验证在网络上如果有新版本并下载并启动它。安装完成后,我想重新启动应用程序,并使用BroadcastRecevier
和ACTION_PACKAGE_REPLACED
。这是代码:
广播
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equals(Intent.ACTION_PACKAGE_REPLACED)){
ApplicationInfo app = new ApplicationInfo();
if(app.packageName.equals("it.android.downloadapk")){
Intent LaunchIntent = context.getPackageManager().getLaunchIntentForPackage(app.packageName);
context.startActivity(LaunchIntent);
}
}
}
清单:
<receiver android:name="it.android.downloadapk.Broadcast">
<intent-filter>
<action android:name="android.intent.action.ACTION_PACKAGE_REPLACED"></action>
<data android:scheme="package" android:path="it.android.downloadapk" />
</intent-filter>
</receiver>
问题是,当我安装新的apk时,广播似乎无法启动,为什么?
答案 0 :(得分:28)
看到这个:
How to know my Android application has been upgraded in order to reset an alarm?
正确的解决方法是在清单中使用错误的字符串: http://developer.android.com/reference/android/content/Intent.html#ACTION_PACKAGE_REPLACED
它应该是“android.intent.action.PACKAGE_REPLACED”。
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.broadcast_receiver_test" android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" />
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity android:name=".BroadcastReceiverTestActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".MyBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
<data android:scheme="package" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REMOVED"/>
<data android:scheme="package" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED"/>
<data android:scheme="package" />
</intent-filter>
</receiver>
</application>
</manifest>
MyBroadcastReceiver.java:
public class MyBroadcastReceiver extends BroadcastReceiver
{
@Override
public void onReceive(final Context context,final Intent intent)
{
final String msg="intent:"+intent+" action:"+intent.getAction();
Log.d("DEBUG",msg);
Toast.makeText(context,msg,Toast.LENGTH_SHORT).show();
}
}
请运行它,看看它是否完美。
编辑:如果您的应用适用于API12及更高版本,并且只希望处理更新应用的情况,您可以单独使用此功能:
http://developer.android.com/reference/android/content/Intent.html#ACTION_MY_PACKAGE_REPLACED
答案 1 :(得分:6)
我将以下接收器放入AndroidManifest.xml
<receiver android:name=".StartupReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
</intent-filter>
</receiver>
因此,我的应用可以在更新和设备重启时启动。当然,每个人都提到你需要API 12+用于MY_PACKAGE_REPLACED。
答案 2 :(得分:1)
经过数小时的搜索,在更新后如何重新启动您的应用程序,我终于找到了为什么它不会重新启动。
该应用必须不能由Android Studio或其他IDE启动。如果我手动安装了带有其APK的应用程序并从当前的Android设备启动它,则该应用程序可以识别出我的应用程序是否已更新,并且可以正确地重新启动。
我的用户案例是一个自定义启动器,无需启动Google Play商店即可自行启动PackageInstaller.Session
进行更新
这是代码
清单:
<receiver android:name="UpdateReceiver" >
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
</intent-filter>
</receiver>
UpdateReceiver(科特林代码):
class UpdateReceiver: BroadcastReceiver() {
companion object {
private val TAG = UpdateReceiver::class.java.simpleName
}
override fun onReceive(context: Context?, intent: Intent?) {
Log.d(TAG, "onReceive ${intent?.action ?: "unknown action"}")
if (intent?.action == Intent.ACTION_MY_PACKAGE_REPLACED) {
//MainActivity = Your first activity
val yourIntent = Intent(context, MainActivity::class.java)
yourIntent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
context?.startActivity(yourIntent)
}
}
}
答案 3 :(得分:0)
经过两天的努力和实验,我找到了原因。 原来,我需要仔细阅读官方文档。
如此处所说:https://developer.android.com/reference/android/content/Intent#ACTION_MY_PACKAGE_REPLACED
原来的关键词是: 它不包含任何其他数据
那些。如果您更改了清单, 那么应用程序将不会在更新后重新启动
不客气
答案 4 :(得分:0)
对于尝试所有其他答案均未成功的人,建议您重新启动应用程序。
我注意到该应用已成功更新,但即使我尝试了多种方式启动该活动,也并未启动。
我在BroadcastReceiver
中使用过https://github.com/JakeWharton/ProcessPhoenix,因此基本上在您要下载的更新中,在ProcessPhoenix.triggerRebirth(context);
中添加了BroadcastReceiver
,或以某种方式重新启动了应用程序。