一般安卓app都會有版本檢測自動更新傻工,說起更新就會涉及到“熱更新”概念,不過它在游戲中較常見咙冗,這里就不折騰熱更新了沾歪。
服務端:
首先在服務端做好準備,app啟動后獲取最新版本信息以及更新包下載地址雾消,可以寫個接口灾搏,也可以用古老的方法:放個txt文檔保存版本信息,app 端讀取txt內(nèi)容獲得版本信息立润。
獲取當前版本信息:
獲取了服務器中最新版本信息后狂窑,自然也要獲取當前運行的app版本,獲取versionCode直接比對版本號桑腮,這也是很easy的東西泉哈,貼個代碼不說了
//獲取當前版本號
static String getVersionCode(Context context) {
try {
PackageManager packageManager = context.getPackageManager();
PackageInfo packageInfo = packageManager.getPackageInfo(
context.getPackageName(), 0);
return String.valueOf(packageInfo.versionCode);
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return null;
}
順便貼上版本號比對代碼,更新后留下的apk文件刪除
if (Integer.parseInt(getVersionCode(activity)) < Integer.parseInt(object.getString("verCode"))) {
Message msg = Message.obtain();
msg.obj = downloadAdd + object.getString("apkname");//apk下載地址
handler.sendMessage(msg);
} else {
File apkfile = new File(apk);
if (apkfile.isFile()) {
//noinspection ResultOfMethodCallIgnored
apkfile.delete();
}
if (tip) {
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
show(activity, "已經(jīng)是最新版本", 1);
}
});
}
}
這里我并沒有用廣播,而是使用Handler處理更新動作丛晦。接收到更新消息之后Runnable新建一個線程下載更新包奕纫,下載成功后啟動安裝。當然了烫沙,下載過程顯示進度條很有必要匹层,這里新建個xml,只需放個ProgressBar就好锌蓄,至于樣式隨便自己喜歡又固。
<ProgressBar android:id="@+id/progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginTop="10dp"/>
最后再說兩個地方,一個是安卓 6.0 的運行時權限(也就是API 23及更高版本編譯)煤率,除了在AndroidManifest靜態(tài)配置權限以外仰冠,還需要在運行時檢測是否擁有權限ContextCompat.checkSelfPermission()
另一個就是安卓 7.0 引入一項新的應用簽名方案 APK Signature Scheme v2,它能提供更快的應用安裝時間和更多針對未授權 APK 文件更改的保護蝶糯。在默認情況下洋只,Android Studio 2.2 和 Android Plugin for Gradle 2.2 會使用 APK Signature Scheme v2 和傳統(tǒng)簽名方案來簽署應用。以及安卓7.0的StrictMode Api禁止我們的應用對外部(跨越應用分享)公開file://昼捍,若使用file://格式共享文件則會報FileUriExposedException異常识虚,這會導致apk下載好之后無法自動啟動安裝。
android 7.0應用間的文件共享需要使用content://類型的URI分享妒茬,所以自動安裝的問題可以通過使用FileProvider解決担锤,在AndroidManifest.xml中注冊provider,provider可以向應用外提供數(shù)據(jù)乍钻,并且為其提供臨時的文件訪問權限肛循。
自動更新就這點東西,最后再貼一下代碼吧
//實例化handler接收子線程的更新消息
handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
new Update(LoginActivity.this, msg.obj.toString()).checkUpdateInfo();
}
};
public class Update {
// 應用程序Context
private Context mContext;
// 下載安裝包的網(wǎng)絡路徑
private String apkUrl;
private static final String savePath = Environment.getExternalStorageDirectory().getAbsolutePath()+"/Download/KYDZ.apk";// 保存apk的文件夾
// 進度條與通知UI刷新的handler和msg常量
private ProgressBar mProgress;
private static final int DOWN_UPDATE = 1;
private static final int DOWN_OVER = 2;
private int progress;// 當前進度
private boolean interceptFlag = false;// 用戶取消下載
// 通知處理刷新界面的handler
@SuppressLint("HandlerLeak")
private Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case DOWN_UPDATE:
mProgress.setProgress(progress);
break;
case DOWN_OVER:
installApk();
break;
}
super.handleMessage(msg);
}
};
public Update(Context context, String apkUrl) {
this.mContext = context;
this.apkUrl = apkUrl;
}
// 顯示更新程序?qū)υ捒蛞瘢┲鞒绦蛘{(diào)用
public void checkUpdateInfo() {
// showNoticeDialog();
showDownloadDialog();
}
/**
* 詢問是否更新
*/
private void showNoticeDialog() {
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(
mContext);// Builder多糠,可以通過此builder設置改變AleartDialog的默認的主題樣式及屬性相關信息
builder.setTitle("軟件版本更新");
String updateMsg = "有最新的軟件包,請下載浩考!";
builder.setMessage(updateMsg);
builder.setPositiveButton("下載", new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
showDownloadDialog();
}
});
builder.setNegativeButton("以后再說", new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
Dialog noticeDialog = builder.create();
noticeDialog.show();
}
/**
* 更新進度對話框
*/
private void showDownloadDialog() {
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(mContext);
builder.setTitle("軟件版本更新");
final LayoutInflater inflater = LayoutInflater.from(mContext);
@SuppressLint("InflateParams")
View v = inflater.inflate(R.layout.progress, null);
mProgress = v.findViewById(R.id.progress);
builder.setCancelable(false);
builder.setView(v);// 設置對話框的內(nèi)容為一個View
builder.setNegativeButton("取消", new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
interceptFlag = true;
System.exit(0);//強制更新夹孔,取消更新便退出程序
}
});
Dialog downloadDialog = builder.create();
downloadDialog.setCanceledOnTouchOutside(false);
downloadDialog.show();
downloadApk();
}
/**
* 啟動下載apk線程
*/
private void downloadApk() {
Thread downLoadThread = new Thread(mdownApkRunnable);
downLoadThread.start();
}
/**
* 打開apk啟動安裝,并在安裝完成后自動打開
*/
private void installApk() {
File apkFile= new File(savePath);
if (!apkFile.exists()) {
return;
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
if (!mContext.getPackageManager().canRequestPackageInstalls()) {
/*
* 在Android 8.0的系統(tǒng)中析孽,未知來源應用權限的開關被移除掉了搭伤,
* 取而代之的是未知來源應用的管理列表,如果你想要安裝某個被自己所信任的開發(fā)者的app,
* 則需要在手動授權"安裝未知應用"的許可袜瞬。
*/
Uri packageURI = Uri.parse("package:" + mContext.getPackageName());
Intent intent = new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES, packageURI);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mContext.startActivity(intent);
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
// 由于沒有在Activity環(huán)境下啟動Activity,設置下面的標簽
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
//參數(shù)1 上下文, 參數(shù)2 Provider主機地址 和配置文件中保持一致 參數(shù)3 共享的文件
Uri apkUri = FileProvider.getUriForFile(mContext, BuildConfig.APPLICATION_ID, apkFile);
//添加這一句表示對目標應用臨時授權該Uri所代表的文件
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndType(apkUri, "application/vnd.android.package-archive");
mContext.startActivity(intent);
}
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
// 由于沒有在Activity環(huán)境下啟動Activity,設置下面的標簽
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { //判讀版本是否在7.0以上
//參數(shù)1 上下文, 參數(shù)2 Provider主機地址 和配置文件中保持一致 參數(shù)3 共享的文件
Uri apkUri = FileProvider.getUriForFile(mContext, BuildConfig.APPLICATION_ID, apkFile);
//添加這一句表示對目標應用臨時授權該Uri所代表的文件
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndType(apkUri, "application/vnd.android.package-archive");
} else {
intent.setDataAndType(Uri.fromFile(apkFile),
"application/vnd.android.package-archive");
}
intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
mContext.startActivity(intent);
}
}
private Runnable mdownApkRunnable = new Runnable() {
@Override
public void run() {
URL url;
try {
url = new URL(apkUrl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.connect();
int length = conn.getContentLength();
InputStream ins = conn.getInputStream();
FileOutputStream outStream = new FileOutputStream(savePath);
int count = 0;
byte buf[] = new byte[1024];
do {
int numread = ins.read(buf);
count += numread;
progress = (int) (((float) count / length) * 100);
// 下載進度
mHandler.sendEmptyMessage(DOWN_UPDATE);
if (numread <= 0) {
// 下載完成通知安裝
mHandler.sendEmptyMessage(DOWN_OVER);
break;
}
outStream.write(buf, 0, numread);
} while (!interceptFlag);// 點擊取消停止下載
outStream.close();
ins.close();
} catch (Exception e) {
e.printStackTrace();
}
}
};
}