当前位置: 首页 > 游戏攻略 > 自己制作的app能自动更新吗 在app开发中怎么实现app打开自动更新

自己制作的app能自动更新吗 在app开发中怎么实现app打开自动更新

更新日期:2021-12-14 15:31:51

来源:互联网

浏览量:11


下面就是为您整理了的自己制作的app能自动更新吗的答案

在app开发中怎么实现app打开自动更新急需答案

Android开发如何实现APP自动更新

先来看看要实现的效果图:

对于安卓用户来说,手机应用市场说满天飞可是一点都不夸张,比如小米,魅族,,360,机锋,应用宝等等,当我们想上线一款新版本APP时,先不说渠道打包的麻烦,单纯指上传APP到各大应用市场的工作量就已经很大了,好不容易我们把APP都上传完了,突然发现一个会导致应用闪退的小Bug,这时那个崩溃啊,明明不是很大的改动,难道我们还要再去重新去把各大应用市场的版本再上传更新一次?相信我,运营人员肯定会弄死你的!!有问题,自然就会有解决问题的方案,因此我们就会想到如果在APP里内嵌自动更新的功能,那么我们将可以省去很多麻烦,当然关于这方面功能的第三方SDK有很多。好了,言归正传,今天我们自己来实现下关于APP自动更新。

流程其实并不复杂:

当用户打开APP的时候,我们让APP去发送一个检查版本的网络请求,或者利用服务端向APP推送一个透传消息来检查APP的版本,如果当前APP版本比服务器上的旧,那么我们就提醒用户进行下载更新APP,当然在特定的情况下,我们也可以强制的让用户去升级,当然这是很不友好的,尽可能的减少这样的做法。好了,来梳理下流程。

首先既然是一个APP的更新,那么我们就需要去下载新的APP。

然后我们需要一个通知来告诉用户当前的下载进度,再来当APP安装包下载完成后,我们需要去系统的安装程序来对APP进行安装更新。

知识点:

下载:

异步HTTP请求文件下载,并监听当前下载进度(这里我采用了okhttp)通知:Notification(具体用法请自行翻阅API文档)安装:Intent (具体用法请自行翻阅API文档)来看下具体实现代码:我们需要一个后台服务来支撑App的下载12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111114115116117118119120121122123124125126127128129importandroid.app.Notification;importandroid.app.NotificationManager;importandroid.app.PendingIntent;importandroid.app.Service;importandroid.content.Intent;importandroid.graphics.BitmapFactory;importandroid.net.Uri;importandroid.os.IBinder;importandroid.support.annotation.Nullable;importandroid.support.v7.app.NotificationCompat;importcom.fangku.commonlibrary.utils.StorageUtil;importcom.zhy.http.okhttp.OkHttpUtils;importcom.zhy.http.okhttp.callback.FileCallBack;importjava.io.File;importokhttp3.Call;publicclassDownloadServiceextendsService{privateStringmDownloadUrl;//APK的下载路径privateNotificationManagermNotificationManager;privateNotificationmNotification;@OverridepublicvoidonCreate(){super.onCreate();mNotificationManager=(NotificationManager)getSystemService(Service.NOTIFICATION_SERVICE);}@OverridepublicintonStartCommand(Intentintent,intflags,intstartId){if(intent==null){notifyMsg(温馨提醒,文件下载失败,0);stopSelf();}mDownloadUrl=intent.getStringExtra(apkUrl);//获取下载APK的链接downloadFile(mDownloadUrl);//下载APKreturnsuper.onStartCommand(intent,flags,startId);}@Nullable@OverridepublicIBinderonBind(Intentintent){returnnull;}privatevoidnotifyMsg(Stringtitle,Stringcontent,intprogress){NotificationCompat.Builderbuilder=newNotificationCompat.Builder(this);//为了向下兼容,这里采用了v7包下的NotificationCompat来构造builder.setSmallIcon(R.mipmap.icon_login_logo).setLargeIcon(BitmapFactory.decodeResource(getResources(),R.mipmap.icon_login_logo)).setContentTitle(title);if(progress0progress100){//下载进行中builder.setProgress(100,progress,false);}else{builder.setProgress(0,0,false);}builder.setAutoCancel(true);builder.setWhen(System.currentTimeMillis());builder.setContentText(content);if(progress=100){//下载完成builder.setContentIntent(getInstallIntent());}mNotification=builder.build();mNotificationManager.notify(0,mNotification);}privatePendingIntentgetInstallIntent(){Filefile=newFile(StorageUtil.DOWNLOAD_DIR APP文件名);Intentintent=newIntent(Intent.ACTION_VIEW);intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setDataAndType(Uri.parse(file:// file.getAbsolutePath()),application/vnd.android.package-archive);PendingIntentpendingIntent=PendingIntent.getActivity(this,0,intent,PendingIntent.FLAG_UPDATE_CURRENT);returnpendingIntent;}privatevoiddownloadFile(Stringurl){OkHttpUtils.get().url(url).build().execute(newFileCallBack(StorageUtil.DOWNLOAD_DIR,APP文件名){@OverridepublicvoidonError(Callcall,Exceptione,intid){notifyMsg(温馨提醒,文件下载失败,0);stopSelf();}@OverridepublicvoidonResponse(Fileresponse,intid){//当文件下载完成后回调notifyMsg(温馨提醒,文件下载已完成,100);stopSelf();}@OverridepublicvoidinProgress(floatprogress,longtotal,intid){//progress*100为当前文件下载进度,total为文件大小if((int)(progress*100)==0){//避免频繁刷新View,这里设置每下载10%提醒更新一次进度notifyMsg(温馨提醒,文件正在下载..,(int)(progress*100));}}});}}然后我们只需要在我们想要的更新APP的时候去调起这个服务即可,比如在系统设置里的版本检查等123Intentintent=newIntent(mContext,DownloadService.class);intent.putExtra(apkUrl,APK下载地址);startService(intent);

总结这里我只是粗略演示本地自动更新APP的功能,在实际应用中,我们应该配合服务端来做,比如在用户启动APP的时候去比对版本

资料自己制作的app能自动更新吗来源于网友整理,仅供参考。

    提示:想了解更多自己制作的app能自动更新吗 在app开发中怎么实现app打开自动更新相关的内容,请尝试通过上方搜索框搜索。


    相关资讯