判断应用是否正在升级版本
主要根据 Intent.EXTRA_REPLACING 进行判断
Java
boolean isReplaceOperation(Intent intent) {
return intent.getBooleanExtra(Intent.EXTRA_REPLACING, false);
}
Kotlin
fun isReplaceOperation(intent : Intent ) : Boolean {
return intent.getBooleanExtra(Intent.EXTRA_REPLACING, false);
}