一:前言

公司的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的更多相关文章

  1. [转]Android应用的自动更新

    软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...

  2. android之apk自动更新解析包失败问题

    在apk自动更新(相关问题可以看我的博客http://blog.csdn.net/caicongyang) 从服务器下载完成后,点击notification提示安装时,每次都报解析包失败错误!首先我想 ...

  3. Android App版本自动更新

    App在开发过程中,随着业务场景的不断增多,功能的不断完善,早期下载App的用户便无法体验最新的功能,为了能让用户更及时的体验App最新版本,在App开发过程加入App自动更新功能便显得尤为重要.更新 ...

  4. 【Android 应用开发】Android应用的自动更新模块

    . 作者 :万境绝尘  转载请注明出处 : http://blog.csdn.net/shulianghan/article/details/18964835 . 软件的自动更新一般都与Splash界 ...

  5. 安卓程序代写 网上程序代写[原]Android应用的自动更新模块

    软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...

  6. Android应用的自动更新模块

    软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...

  7. 转载:Android应用的自动更新模块

    软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...

  8. android 数据绑定(3)自动更新UI

    1.官方文档 https://developer.android.com/topic/libraries/data-binding/observability 2.observable 属性 适合对象 ...

  9. Android(2)—Mono For Android App版本自动更新

    0.前言 公司Android查询的项目已经开始,整体采用Java后台+App前台来实现,由于项目小,App这块就我一个人开发,首先需要研究的是:Android版本的更新升级问题:本人经过近一周的学习整 ...

随机推荐

  1. appium的几点总结

    原文链接:http://blog.csdn.net/bear_w/article/details/50345283 1. 建立session时常用命令: DesiredCapabilities cap ...

  2. linux下tomcat安装

    1.先安装jdk,我们这里用yum进行安装: yum -y install java-1.7.0-openjdk* 确定是否安装成功: java -version 如果显示jdk的版本信息,说明安装成 ...

  3. Linux Shell 通配符、元字符、转义符【转帖】

    作者:程默 说到shell通配符(wildcard),大家在使用时候会经常用到.下面是一个实例: 1   1 2 3 4 [chengmo@localhost ~/shell]$ ls a.txt  ...

  4. 通读SDWebImage②--视图分类

    本文目录 UIView+WebCacheOperation UIImageView+WebCache.UIImageView+HighlightedWebCache.MKAnnotationView+ ...

  5. Python之路【第六篇】python基础 之面向对象进阶

    一 isinstance(obj,cls)和issubclass(sub,super) isinstance(obj,cls)检查是否obj是否是类 cls 的对象  和  issubclass(su ...

  6. 开源免费的HTML5游戏引擎

    青瓷引擎的成长 青瓷引擎自2015年4月项目启动开始,7月首次亮相2015年ChinaJoy,便得到业界的极大关注,随后开启限量测试,收到数百个开发者团队的试用申请及反馈,期间经历了18个内测版本,完 ...

  7. android ADT 无法查看第三方jar源代码

    Source not foundThe JAR of this class file belongs to container 'Android Private Libraries' which do ...

  8. C++基础_总结

    (1)多态性都有哪些?(静态和动态,然后分别叙述了一下虚函数和函数重载) 多态分为两种:静态和动态.静态主要包括函数重载和模板:动态主要是依靠虚函数实现的. 静态联编:重载函数不加virtual关键字 ...

  9. 简单正则匹配QQ邮箱

    <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <script src ...

  10. WPF整理-二进制资源和内容

    WPF中的Binary Resource(二进制资源)是相对于前面所说的Logical resource(逻辑资源)而说的,一般指Image.XML文件等. 注意:这里说的是Resource" ...