gpt4 book ai didi

android - InApp 更新功能不起作用我收到此错误 com.google.android.play.core.install.InstallException : Install Error: -3

转载 作者:行者123 更新时间:2023-12-05 00:04:59 61 4
gpt4 key购买 nike

我正在尝试通过我的应用程序显示更新时出现以下错误

com.google.android.play.core.install.InstallException:安装错误:-3

这是检查和更新App的代码

public void checkAppUpdate(){
// Creates instance of the manager.

// Returns an intent object that you use to check for an update.
Task<AppUpdateInfo> appUpdateInfoTask = appUpdateManager.getAppUpdateInfo();

// Checks whether the platform allows the specified type of update,
// and checks the update priority.
appUpdateInfoTask.addOnSuccessListener(new OnSuccessListener<AppUpdateInfo>() {
@Override
public void onSuccess(AppUpdateInfo appUpdateInfo) {
Log.i("UpdateError123",appUpdateInfo.updateAvailability()+"");

if (appUpdateInfo.updateAvailability() == UpdateAvailability.UPDATE_AVAILABLE) {
// Request an immediate update.

try {
appUpdateManager.startUpdateFlowForResult(
// Pass the intent that is returned by 'getAppUpdateInfo()'.
appUpdateInfo,
// Or 'AppUpdateType.FLEXIBLE' for flexible updates.
AppUpdateType.IMMEDIATE,
// The current activity making the update request.
MainActivity.this,
// Include a request code to later monitor this update request.
1021);
} catch (IntentSender.SendIntentException e) {
e.printStackTrace();
}
}
}
});

appUpdateInfoTask.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(Exception e) {
e.printStackTrace();
Log.i("UpdateError",e.toString()+"");
}
});
}

最佳答案

不知何故,您没有从错误处理程序中使用 e.printStackTrace(); 获得完整的错误描述,或者您没有使用 android DDMS tool调试错误:

com.google.android.play.core.install.InstallException: Install Error(-3): The API is not available on this device. (https://developer.android.com/reference/com/google/android/play/core/install/model/InstallErrorCode#ERROR_API_NOT_AVAILABLE)

这意味着未安装/启用 Play 商店 和/或 Google Play 服务。在模拟器上,确保使用“Google Play”ABI,其中包括商店和所需的服务。

关于android - InApp 更新功能不起作用我收到此错误 com.google.android.play.core.install.InstallException : Install Error: -3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61061706/

61 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com