Android接入百度自动更新SDK
一:前言
公司的app,上传到百度应用市场,然后说必须要接入百度的自动更新sdk才能上架,于是从百度官网上去下载jar包,下载的时候必须要带上数据统计,如果使用自动的jar包,还需要带上广告联盟,坑爹啊,有木有。我下载下来把其他无关的jar包根so文件删掉了.把百度的demo也进行精简了一下.只留下了自动更新必须要用到的.
二:效果图如下
三:代码如下
AutoUpdateActivity.java 代码删的就剩下整个Activity了,其实调用百度sdk还挺简单的,一句话就能搞定,然后再监听回调函数.
/**
* 百度自动更新
* @author ansen
* @create time 2015-11-07
*/
public class AutoUpdateActivity extends Activity implements View.OnClickListener {
private TextView txt_log;
private ProgressDialog dialog; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.autoupdate_main);
findViewById(R.id.btn_ui).setOnClickListener(this);
findViewById(R.id.btn_silence).setOnClickListener(this);
findViewById(R.id.btn_as).setOnClickListener(this);
findViewById(R.id.btn_noui).setOnClickListener(this);
txt_log = (TextView) findViewById(R.id.txt_log);
dialog = new ProgressDialog(this);
dialog.setIndeterminate(true);
} @Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_ui://UI更新
txt_log.setText("");
dialog.show();
BDAutoUpdateSDK.uiUpdateAction(this, new MyUICheckUpdateCallback());
break;
case R.id.btn_silence:
txt_log.setText("");
BDAutoUpdateSDK.silenceUpdateAction(this);
break;
case R.id.btn_as:
txt_log.setText("");
dialog.show();
BDAutoUpdateSDK.asUpdateAction(this, new MyUICheckUpdateCallback());
break;
case R.id.btn_noui:
txt_log.setText("");
dialog.show();
BDAutoUpdateSDK.cpUpdateCheck(this, new MyCPCheckUpdateCallback());
break;
}
} @Override
protected void onDestroy() {
dialog.dismiss();
super.onDestroy();
} private class MyUICheckUpdateCallback implements UICheckUpdateCallback {
@Override
public void onCheckComplete() {
dialog.dismiss();
}
} private class MyCPCheckUpdateCallback implements CPCheckUpdateCallback {
@Override
public void onCheckUpdateCallback(AppUpdateInfo info, AppUpdateInfoForInstall infoForInstall) {
if(infoForInstall != null && !TextUtils.isEmpty(infoForInstall.getInstallPath())) {
txt_log.setText(txt_log.getText() + "\n install info: " + infoForInstall.getAppSName() + ", \nverion=" + infoForInstall.getAppVersionName() + ", \nchange log=" + infoForInstall.getAppChangeLog());
txt_log.setText(txt_log.getText() + "\n we can install the apk file in: " + infoForInstall.getInstallPath());
BDAutoUpdateSDK.cpUpdateInstall(getApplicationContext(), infoForInstall.getInstallPath());
}else if(info != null) {
BDAutoUpdateSDK.cpUpdateDownload(AutoUpdateActivity.this, info, new UpdateDownloadCallback());
}else {
txt_log.setText(txt_log.getText() + "\n no update.");
}
dialog.dismiss();
} } private class UpdateDownloadCallback implements CPUpdateDownloadCallback {
@Override
public void onDownloadComplete(String apkPath) {
txt_log.setText(txt_log.getText() + "\n onDownloadComplete: " + apkPath);
BDAutoUpdateSDK.cpUpdateInstall(getApplicationContext(), apkPath);
} @Override
public void onStart() {
txt_log.setText(txt_log.getText() + "\n Download onStart");
} @Override
public void onPercent(int percent, long rcvLen, long fileSize) {
txt_log.setText(txt_log.getText() + "\n Download onPercent: " + percent + "%");
} @Override
public void onFail(Throwable error, String content) {
txt_log.setText(txt_log.getText() + "\n Download onFail: " + content);
} @Override
public void onStop() {
txt_log.setText(txt_log.getText() + "\n Download onStop");
}
}
}
autoupdate_main.xml AutoUpdateActivity加载的布局文件.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dip"
android:orientation="vertical"
android:gravity="center"
tools:context="${packageName}.${activityClass}" > <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"> <Button
android:id="@+id/btn_ui"
android:layout_width="match_parent"
android:layout_height="40dip"
android:text="UI更新"/> <Button
android:id="@+id/btn_silence"
android:layout_width="match_parent"
android:layout_height="40dip"
android:text="静默更新"
/> <Button
android:id="@+id/btn_as"
android:layout_width="match_parent"
android:layout_height="40dip"
android:text="百度助手更新"
/> <Button
android:id="@+id/btn_noui"
android:layout_width="match_parent"
android:layout_height="40dip"
android:text="无UI更新"
/>
</LinearLayout> <ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"> <TextView
android:id="@+id/txt_log"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</ScrollView> </LinearLayout>
四.注意事项
1.需要引用另外一个项目,另外一个项目里面必须有两个百度的jar包.BDAutoUpdate_APPX_SDK_20150826.jar跟need_lib.jar
2.需要在AndroidManifest.xml中配置appid,appkey,还有弹窗显示的Activity.
<!-- 百度自动更新SDK Appid配置,AppKey配置-->
<meta-data android:name="BDAPPID" android:value="3067515"/>
<meta-data android:name="BDAPPKEY" android:value="f3Os4GAOqxgm79GqbnkT9L8T"/>
<!-- 百度自动更新SDK -->
<activity
android:name="com.baidu.autoupdatesdk.ConfirmDialoigActivity"
android:exported="false"
android:screenOrientation="sensor"
android:theme="@style/bdp_update_dialog_style_fullscreen"/>
3.appid跟appkey是官网申请的 http://app.baidu.com/value/sdkservice?f=9
推荐下自己创建的android QQ群:202928390 欢迎大家的加入.
Android接入百度自动更新SDK的更多相关文章
- [转]Android应用的自动更新
软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...
- android之apk自动更新解析包失败问题
在apk自动更新(相关问题可以看我的博客http://blog.csdn.net/caicongyang) 从服务器下载完成后,点击notification提示安装时,每次都报解析包失败错误!首先我想 ...
- Android App版本自动更新
App在开发过程中,随着业务场景的不断增多,功能的不断完善,早期下载App的用户便无法体验最新的功能,为了能让用户更及时的体验App最新版本,在App开发过程加入App自动更新功能便显得尤为重要.更新 ...
- 【Android 应用开发】Android应用的自动更新模块
. 作者 :万境绝尘 转载请注明出处 : http://blog.csdn.net/shulianghan/article/details/18964835 . 软件的自动更新一般都与Splash界 ...
- 安卓程序代写 网上程序代写[原]Android应用的自动更新模块
软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...
- Android应用的自动更新模块
软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...
- 转载:Android应用的自动更新模块
软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...
- android 数据绑定(3)自动更新UI
1.官方文档 https://developer.android.com/topic/libraries/data-binding/observability 2.observable 属性 适合对象 ...
- Android(2)—Mono For Android App版本自动更新
0.前言 公司Android查询的项目已经开始,整体采用Java后台+App前台来实现,由于项目小,App这块就我一个人开发,首先需要研究的是:Android版本的更新升级问题:本人经过近一周的学习整 ...
随机推荐
- MongoDB常用命令
本文整理了一年多以来我常用的MongoDB操作,涉及mongo-shell.pymongo,既有运维层面也有应用层面,内容有浅有深,这也就是我从零到熟练的历程. MongoDB的使用之前也分享过一篇, ...
- C#窗体中读取修改xml文件
由于之前没有操作过xml文件,尤其是在窗体中操作xml,脑子一直转不动,而且很抵制去做这个功能,终于还是突破了自己通过查询资料完成了这个功能,在此记录一下自己的成果. 功能说明:程序中存在的xml文件 ...
- 媒体查询(pc端,移动端不同布局)
媒体查询语法: 1.内联写法:and之后必须有空格@media screen and (min-width:960px //判断浏览器大小条件){body{background:red} //常规的样 ...
- Visual Studio 2015 如何将全英界面转成中文
1 启动VS2015程序,在菜单栏中找到tools 2 在弹出的下拉窗口中选中options 3 此时弹出的对话框,选中Environment下的international setting 4 点击获 ...
- html websocket
from:http://www.ibm.com/developerworks/cn/web/1112_huangxa_websocket/ websocket 规范升级过,在该链接的文章内未提及,后面 ...
- C# WinForm 导出导入Excel/Doc 完整实例教程[使用Aspose.Cells.dll]
[csharp] view plain copy 1.添加引用: Aspose.Cells.dll(我们就叫工具包吧,可以从网上下载.关于它的操作我在“Aspose.Cells操作说明 中文版 下载 ...
- Sort简单排序
List<T> 类型排序: public List<ProductionMaterialModel> OrderBybom(List<ProductionMaterial ...
- Mysql修改root密码
一.启动命令行,输入: taskkill /f /im mysqld.exe //关闭mysql 二.转入mysql的bin目录下 三.输入:mysqld --skip-grant-tables // ...
- 《.NET之美》消息及勘误
<.NET之美>消息及勘误 编辑最终还是采用了<.NET之美>作为书名,尽管我一直觉得这个名字有点文艺了,而更倾向于使用<.NET专题解析>这个名称. 目前已经可以 ...
- 给公司部门设计的SOA架构
新来老大年前开会说各位同学,公司业务越来越重,未来几年要成倍增长......,要梳理出一套新架构,才能更好的支持N万用户.....,以后升职加薪当上....打败..... 想想还有点小激动呢,于是过年 ...