我正在研究一個應用程序我想給應用程序用戶強制更新,如果在Play商店中有新版本可用,應用程序應該向用戶顯示一個對話消息。如果新版本可用,如何在Android應用程序中強制更新?
0
A
回答
4
public class ForceUpdateAsync extends AsyncTask<String, String, JSONObject>{
private String latestVersion;
private String currentVersion;
private Context context;
public ForceUpdateAsync(String currentVersion, Context context){
this.currentVersion = currentVersion;
this.context = context;
}
@Override
protected JSONObject doInBackground(String... params) {
try {
latestVersion = Jsoup.connect("https://play.google.com/store/apps/details?id="+context.getPackageName()+"&hl=en")
.timeout(30000)
.userAgent("Mozilla/5.0 (Windows; U; WindowsNT 5.1; en-US; rv1.8.1.6) Gecko/20070725 Firefox/2.0.0.6")
.referrer("http://www.google.com")
.get()
.select("div[itemprop=softwareVersion]")
.first()
.ownText();
} catch (IOException e) {
e.printStackTrace();
}
return new JSONObject();
}
@Override
protected void onPostExecute(JSONObject jsonObject) {
if(latestVersion!=null){
if(!currentVersion.equalsIgnoreCase(latestVersion)){
// Toast.makeText(context,"update is available.",Toast.LENGTH_LONG).show();
if(!(context instanceof SplashActivity)) {
if(!((Activity)context).isFinishing()){
showForceUpdateDialog();
}
}
}
}
super.onPostExecute(jsonObject);
}
public void showForceUpdateDialog(){
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(new ContextThemeWrapper(context,
R.style.DialogDark));
alertDialogBuilder.setTitle(context.getString(R.string.youAreNotUpdatedTitle));
alertDialogBuilder.setMessage(context.getString(R.string.youAreNotUpdatedMessage) + " " + latestVersion + context.getString(R.string.youAreNotUpdatedMessage1));
alertDialogBuilder.setCancelable(false);
alertDialogBuilder.setPositiveButton(R.string.update, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
context.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + context.getPackageName())));
dialog.cancel();
}
});
alertDialogBuilder.show();
}
}
應用中打開你。
<string name="youAreNotUpdatedTitle">Update Available</string>
<string name="youAreNotUpdatedMessage">A new version of YOUR_APP_NAME is available. Please update to version\s</string>
<string name="youAreNotUpdatedMessage1">\s now</string>
<string name="update">Update</string>
記住,您必須在對話框代碼中定義對話框的樣式。
現在只需在您的基本活動中寫入forceUpdate()函數並在onResume()方法內調用它即可完成!
// check version on play store and force update
public void forceUpdate(){
PackageManager packageManager = this.getPackageManager();
PackageInfo packageInfo = null;
try {
packageInfo = packageManager.getPackageInfo(getPackageName(),0);
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
String currentVersion = packageInfo.versionName;
new ForceUpdateAsync(currentVersion,BaseActivity.this).execute();
}
+0
嘿這個代碼是爲我工作,但不工作在realse prograud啓用plz幫助我 –
0
在服務器端存儲您的應用程序的versionCode(您在playstore上發佈)。每次用戶打開應用程序並獲取版本代碼時,請打開API。比較應用用戶當前正在使用的versionCode和您存儲在服務器上的版本。下面是代碼來獲取的versionCode您的應用程序
PackageManager manager = this.getPackageManager();
PackageInfo info = manager.getPackageInfo(this.getPackageName(), 0);
String versionCode = info.versionCode;
的如果的versionCode不匹配(即從的versionCode服務器>應用程序的versionCode),提示用戶更新。
P.S如果您想使用此方法,則每次更新Playstore上的應用程序時都必須更新服務器上的versionCode。
0
在您的第一個活動中,您可以創建一個應該返回最新版本應用的api調用。如果當前版本較低,則將其與當前應用程序版本進行比較,顯示一個要求更新的對話框他們更新按鈕,可以在string.xml你可以添加你想要這樣無論按摩Play商店
0
您可以執行以下操作。
- 你應該在你的應用程序,它可以 實施check for the current version of your app on play store此功能。 並且如果用戶正在使用舊版本,則提示他們對話框更新爲 。
- 您的應用程序應該具有任何分析功能(Facebook,Firebase, Localytics等)支持應用程序內消息的SDK集成。與 的幫助,你可以播放推送通知或應用內消息 來更新應用程序。
在這種技術的幫助下,您可以要求您的用戶更新應用程序。
相關問題
- 1. 如何更新應用程序的數據而無需更新應用程序版本? (android應用程序)
- 2. 如何強制PhoneGap Android應用程序執行自我更新?
- 3. 在AppFog或CloudFoundry上,應如何強制更新應用程序?
- 4. 強制用戶更新應用程序
- 5. 如何在rails應用程序中強制使用gem版本?
- 6. 如何在Android版本中添加新的應用程序?
- 7. 如何在Chrome應用程序中動態更新版本號?
- 8. 在後臺強制更新Android應用程序的最新版本,無需用戶按任何按鈕
- 9. GWT:如何強制客戶端在新版本可用時重新下載整個應用程序?
- 10. 強制應用程序商店更新
- 11. 如何強制用戶更新應用程序?
- 12. 強制用戶擁有應用程序的最新版本
- 13. 強制Eclipse(Helios)在應用程序運行時使用更新版本的SWT
- 14. Android - 應用程序版本控制,更新
- 15. 如何更新MobileFirst pruduction server 7.0中的應用程序版本?
- 16. 如何更新WSO2 EMM中的應用程序版本?
- 17. 如何在AppStore上更新應用程序版本
- 18. 更改Android應用程序中的laucher活動更新版本
- 19. 更新Android應用程序到最新版本的OpenSSL
- 20. 最新版本的Android應用程序的力更新
- 21. Android應用程序更新 - 如何?
- 22. 如何在新應用更新時強制重新啓動AppStore
- 23. 如何強制退出Android應用程序並重新啓動?
- 24. 新版本的Android應用程序
- 25. 如何強制更新ios應用程序
- 26. 如何在wpf應用程序中檢查更新安裝新版本
- 27. 應用程序版本更新sniplets
- 28. 應用程序版本未更新
- 29. 更新應用程序的Rails版本
- 30. 如果新版本可用,更新本地軟件包文件
當您打開您的應用程序,然後調用您的服務器上的Web服務,並檢查應用程序是否更新?如果應用程序更新,然後在谷歌Play商店中打開您的應用程序並更新您的應用程序。 –
你不能這樣做,如果你真的想這樣做,那麼將版本名稱存儲在你的服務器中,並且每當用戶在Splash屏幕上打開應用程序時說,檢查存儲在你的服務器中的版本,並檢查應用程序安裝的版本,基於那個做你的事情。 –
您可以使用外部API檢查已安裝的應用程序版本和最新版本api。檢查這個http://stackoverflow.com/questions/25201349/programmatically-check-play-store-for-app-updates – Praveen