liuyuqi-dellpc 5 years ago
commit
5aba16393b
38 changed files with 660 additions and 0 deletions
  1. 9 0
      BDAutoUpdateDemo/.classpath
  2. 3 0
      BDAutoUpdateDemo/.gitignore
  3. 33 0
      BDAutoUpdateDemo/.project
  4. 53 0
      BDAutoUpdateDemo/AndroidManifest.xml
  5. BIN
      BDAutoUpdateDemo/ic_launcher-web.png
  6. 3 0
      BDAutoUpdateDemo/lint.xml
  7. 20 0
      BDAutoUpdateDemo/proguard-project.txt
  8. 15 0
      BDAutoUpdateDemo/project.properties
  9. BIN
      BDAutoUpdateDemo/res/drawable-xhdpi/demo_logo.png
  10. 55 0
      BDAutoUpdateDemo/res/layout/activity_main.xml
  11. 5 0
      BDAutoUpdateDemo/res/values/strings.xml
  12. 20 0
      BDAutoUpdateDemo/res/values/styles.xml
  13. 130 0
      BDAutoUpdateDemo/src/com/example/bdautoupdatedemo/MainActivity.java
  14. 9 0
      BDIntegrationSDK_LibProject/.classpath
  15. 3 0
      BDIntegrationSDK_LibProject/.gitignore
  16. 33 0
      BDIntegrationSDK_LibProject/.project
  17. 20 0
      BDIntegrationSDK_LibProject/AndroidManifest.xml
  18. BIN
      BDIntegrationSDK_LibProject/libs/BDAutoUpdateSDK_20150605_V1.2.0.jar
  19. BIN
      BDIntegrationSDK_LibProject/libs/BDAutoUpdateSDK_V1.2.0.2.jar
  20. BIN
      BDIntegrationSDK_LibProject/libs/android-support-v4.jar
  21. BIN
      BDIntegrationSDK_LibProject/libs/armeabi/libMD5_v1.so
  22. BIN
      BDIntegrationSDK_LibProject/libs/armeabi/libbase64encoder_v1_4.so
  23. BIN
      BDIntegrationSDK_LibProject/libs/galaxy_lite.jar
  24. BIN
      BDIntegrationSDK_LibProject/libs/need_lib.jar
  25. BIN
      BDIntegrationSDK_LibProject/libs/patchupdate.jar
  26. BIN
      BDIntegrationSDK_LibProject/libs/x86/libMD5_v1.so
  27. BIN
      BDIntegrationSDK_LibProject/libs/x86/libbase64encoder_v1_4.so
  28. 20 0
      BDIntegrationSDK_LibProject/proguard-project.txt
  29. 15 0
      BDIntegrationSDK_LibProject/project.properties
  30. BIN
      BDIntegrationSDK_LibProject/res/drawable-mdpi/bdp_update_logo.png
  31. 14 0
      BDIntegrationSDK_LibProject/res/drawable/bdp_update_bg_dialog_btn.xml
  32. 14 0
      BDIntegrationSDK_LibProject/res/drawable/bdp_update_bg_dialog_content.xml
  33. 14 0
      BDIntegrationSDK_LibProject/res/drawable/bdp_update_bg_dialog_title.xml
  34. 15 0
      BDIntegrationSDK_LibProject/res/drawable/bdp_update_progress_download.xml
  35. 99 0
      BDIntegrationSDK_LibProject/res/layout/bdp_update_activity_confirm_dialog.xml
  36. 29 0
      BDIntegrationSDK_LibProject/res/values/bdp_update_strings.xml
  37. 25 0
      BDIntegrationSDK_LibProject/res/values/bdp_update_styles.xml
  38. 4 0
      README.md

+ 9 - 0
BDAutoUpdateDemo/.classpath

@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
+	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
+	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="gen"/>
+	<classpathentry kind="output" path="bin/classes"/>
+</classpath>

+ 3 - 0
BDAutoUpdateDemo/.gitignore

@@ -0,0 +1,3 @@
+/gen
+/bin
+/.settings

+ 33 - 0
BDAutoUpdateDemo/.project

@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>BDAutoUpdateDemo</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>

+ 53 - 0
BDAutoUpdateDemo/AndroidManifest.xml

@@ -0,0 +1,53 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.baidu.autoupdatesdk.demo"
+    android:versionCode="10"
+    android:versionName="3.0.0" xmlns:tools="http://schemas.android.com/tools">
+    
+    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
+    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
+    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
+    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    <uses-permission android:name="android.permission.INTERNET" />
+    <uses-permission android:name="android.permission.GET_TASKS"/>
+    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
+
+    <uses-sdk
+        android:minSdkVersion="8"
+        android:targetSdkVersion="19" />
+
+    <application
+        android:allowBackup="true"
+        android:icon="@drawable/demo_logo"
+        android:label="@string/app_name"
+        android:theme="@style/AppTheme" >
+        
+        <meta-data android:name="BDAPPID" android:value="3067515"/>
+        <meta-data android:name="BDAPPKEY" android:value="f3Os4GAOqxgm79GqbnkT9L8T"/>
+        
+        <activity android:name="com.example.bdautoupdatedemo.MainActivity"
+            android:screenOrientation="sensor">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
+        </activity>
+        
+        <activity android:name="com.baidu.autoupdatesdk.ConfirmDialoigActivity"
+            android:screenOrientation="sensor"
+            android:exported="false"
+            android:theme="@style/bdp_update_dialog_style_fullscreen" />
+        
+        <receiver android:name="com.baidu.autoupdatesdk.receiver.BDBroadcastReceiver"
+            android:exported="false">
+            <intent-filter>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_NEW_UPDATE"/>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_DOWNLOAD_COMPLETE"/>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_NEW_AS"/>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_AS_DOWNLOAD_COMPLETE"/>
+            </intent-filter>
+        </receiver>
+    </application>
+
+</manifest>

BIN
BDAutoUpdateDemo/ic_launcher-web.png


+ 3 - 0
BDAutoUpdateDemo/lint.xml

@@ -0,0 +1,3 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<lint>
+</lint>

+ 20 - 0
BDAutoUpdateDemo/proguard-project.txt

@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}

+ 15 - 0
BDAutoUpdateDemo/project.properties

@@ -0,0 +1,15 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system edit
+# "ant.properties", and override values to adapt the script to your
+# project structure.
+#
+# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
+#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
+
+# Project target.
+target=android-21
+android.library.reference.1=../BDIntegrationSDK_LibProject

BIN
BDAutoUpdateDemo/res/drawable-xhdpi/demo_logo.png


+ 55 - 0
BDAutoUpdateDemo/res/layout/activity_main.xml

@@ -0,0 +1,55 @@
+<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>

+ 5 - 0
BDAutoUpdateDemo/res/values/strings.xml

@@ -0,0 +1,5 @@
+<resources>
+
+    <string name="app_name">BDAutoUpdateDemo</string>
+
+</resources>

+ 20 - 0
BDAutoUpdateDemo/res/values/styles.xml

@@ -0,0 +1,20 @@
+<resources>
+
+    <!--
+        Base application theme, dependent on API level. This theme is replaced
+        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
+    -->
+    <style name="AppBaseTheme" parent="android:Theme.Light">
+        <!--
+            Theme customizations available in newer API levels can go in
+            res/values-vXX/styles.xml, while customizations related to
+            backward-compatibility can go here.
+        -->
+    </style>
+
+    <!-- Application theme. -->
+    <style name="AppTheme" parent="AppBaseTheme">
+        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
+    </style>
+
+</resources>

+ 130 - 0
BDAutoUpdateDemo/src/com/example/bdautoupdatedemo/MainActivity.java

@@ -0,0 +1,130 @@
+package com.example.bdautoupdatedemo;
+
+import android.app.Activity;
+import android.app.ProgressDialog;
+import android.os.Bundle;
+import android.text.TextUtils;
+import android.view.View;
+import android.widget.TextView;
+
+import com.baidu.autoupdatesdk.AppUpdateInfo;
+import com.baidu.autoupdatesdk.AppUpdateInfoForInstall;
+import com.baidu.autoupdatesdk.BDAutoUpdateSDK;
+import com.baidu.autoupdatesdk.CPCheckUpdateCallback;
+import com.baidu.autoupdatesdk.CPUpdateDownloadCallback;
+import com.baidu.autoupdatesdk.UICheckUpdateCallback;
+import com.baidu.autoupdatesdk.demo.R;
+
+public class MainActivity extends Activity implements View.OnClickListener {
+	
+	private TextView txt_log;
+	
+	private ProgressDialog dialog;
+	
+	@Override
+	protected void onCreate(Bundle savedInstanceState) {
+		super.onCreate(savedInstanceState);
+		setContentView(R.layout.activity_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:
+			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;
+		default:
+			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(MainActivity.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");
+		}
+		
+	}
+	
+}

+ 9 - 0
BDIntegrationSDK_LibProject/.classpath

@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
+	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
+	<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="gen"/>
+	<classpathentry kind="output" path="bin/classes"/>
+</classpath>

+ 3 - 0
BDIntegrationSDK_LibProject/.gitignore

@@ -0,0 +1,3 @@
+/gen
+/bin
+/.settings

+ 33 - 0
BDIntegrationSDK_LibProject/.project

@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>BDIntegrationSDK_LibProject</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>com.android.ide.eclipse.adt.ApkBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>

+ 20 - 0
BDIntegrationSDK_LibProject/AndroidManifest.xml

@@ -0,0 +1,20 @@
+<?xml version="1.0" ?><manifest android:versionCode="1" android:versionName="1.0" package="com.baidu.integrationsdk.lib" xmlns:android="http://schemas.android.com/apk/res/android">
+     
+
+    <application>
+        
+        <meta-data android:name="BDAPPID" android:value=""/>
+        <meta-data android:name="BDAPPKEY" android:value=""/>
+        
+	 
+        
+    <activity android:exported="false" android:name="com.baidu.autoupdatesdk.ConfirmDialoigActivity" android:screenOrientation="sensor" android:theme="@style/bdp_update_dialog_style_fullscreen"/><receiver android:exported="false" android:name="com.baidu.autoupdatesdk.receiver.BDBroadcastReceiver">
+            <intent-filter>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_NEW_UPDATE"/>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_DOWNLOAD_COMPLETE"/>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_NEW_AS"/>
+                <action android:name="com.baidu.autoupdatesdk.ACTION_AS_DOWNLOAD_COMPLETE"/>
+            </intent-filter>
+        </receiver></application>
+
+<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/><uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/><uses-permission android:name="android.permission.READ_PHONE_STATE"/><uses-permission android:name="android.permission.WRITE_SETTINGS"/><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/><uses-permission android:name="android.permission.INTERNET"/><uses-permission android:name="android.permission.GET_TASKS"/><uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/></manifest>

BIN
BDIntegrationSDK_LibProject/libs/BDAutoUpdateSDK_20150605_V1.2.0.jar


BIN
BDIntegrationSDK_LibProject/libs/BDAutoUpdateSDK_V1.2.0.2.jar


BIN
BDIntegrationSDK_LibProject/libs/android-support-v4.jar


BIN
BDIntegrationSDK_LibProject/libs/armeabi/libMD5_v1.so


BIN
BDIntegrationSDK_LibProject/libs/armeabi/libbase64encoder_v1_4.so


BIN
BDIntegrationSDK_LibProject/libs/galaxy_lite.jar


BIN
BDIntegrationSDK_LibProject/libs/need_lib.jar


BIN
BDIntegrationSDK_LibProject/libs/patchupdate.jar


BIN
BDIntegrationSDK_LibProject/libs/x86/libMD5_v1.so


BIN
BDIntegrationSDK_LibProject/libs/x86/libbase64encoder_v1_4.so


+ 20 - 0
BDIntegrationSDK_LibProject/proguard-project.txt

@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+#   http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+#   public *;
+#}

+ 15 - 0
BDIntegrationSDK_LibProject/project.properties

@@ -0,0 +1,15 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system edit
+# "ant.properties", and override values to adapt the script to your
+# project structure.
+#
+# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
+#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
+
+# Project target.
+target=android-21
+android.library=true

BIN
BDIntegrationSDK_LibProject/res/drawable-mdpi/bdp_update_logo.png


+ 14 - 0
BDIntegrationSDK_LibProject/res/drawable/bdp_update_bg_dialog_btn.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <item>
+        <shape>
+            <corners android:radius="5dip" />
+
+            <solid android:color="#ff44d7b3" />
+
+            <padding android:bottom="0dip" android:left="0dip" android:right="0dip" android:top="0dip" />
+        </shape>
+    </item>
+
+</selector>

+ 14 - 0
BDIntegrationSDK_LibProject/res/drawable/bdp_update_bg_dialog_content.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <item>
+        <shape>
+            <corners android:bottomLeftRadius="3dip" android:bottomRightRadius="3dip" android:topRightRadius="0dip" android:topLeftRadius="0dip" />
+
+            <solid android:color="#ffffffff" />
+
+            <padding android:bottom="0dip" android:left="0dip" android:right="0dip" android:top="0dip" />
+        </shape>
+    </item>
+
+</selector>

+ 14 - 0
BDIntegrationSDK_LibProject/res/drawable/bdp_update_bg_dialog_title.xml

@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <item>
+        <shape>
+            <corners android:topRightRadius="3dip" android:topLeftRadius="3dip" android:bottomLeftRadius="0dip" android:bottomRightRadius="0dip" />
+
+            <solid android:color="#ff57b7fe" />
+
+            <padding android:bottom="0dip" android:left="0dip" android:right="0dip" android:top="0dip" />
+        </shape>
+    </item>
+
+</selector>

+ 15 - 0
BDIntegrationSDK_LibProject/res/drawable/bdp_update_progress_download.xml

@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+    <item android:id="@android:id/background">
+        <shape>
+            <solid android:color="#ff475867"/>
+        </shape>
+    </item>
+	<item android:id="@android:id/progress">
+	    <clip>
+	        <shape>
+	            <solid android:color="#ff129e00"/>
+	        </shape>
+        </clip>
+	</item>
+</layer-list>

+ 99 - 0
BDIntegrationSDK_LibProject/res/layout/bdp_update_activity_confirm_dialog.xml

@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="wrap_content"
+    android:orientation="vertical"
+    android:background="@null" >
+    
+    <TextView 
+        android:id="@+id/txt_title"
+        android:layout_width="match_parent"
+        android:layout_height="40dip"
+        android:paddingLeft="18dip"
+        android:gravity="center_vertical"
+        android:textColor="#ffffffff"
+        android:textSize="16sp"
+        android:background="@drawable/bdp_update_bg_dialog_title"
+        />
+    
+    <LinearLayout 
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:paddingLeft="18dip"
+        android:paddingRight="18dip"
+        android:paddingTop="16dip"
+        android:paddingBottom="14dip"
+        android:background="@drawable/bdp_update_bg_dialog_content"
+        android:orientation="vertical">
+        
+        <TextView 
+            android:id="@+id/txt_main_tip"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_marginBottom="14dip"
+            android:singleLine="true"
+            android:ellipsize="end"
+            android:textColor="#ff58b6ff"
+            android:textSize="14sp"
+            />
+        
+        <ScrollView 
+	        android:layout_width="match_parent"
+	        android:layout_height="64dip"
+	        android:layout_marginBottom="10dip"
+	        android:fadingEdge="vertical"
+	        android:fadingEdgeLength="20dip"
+	        android:requiresFadingEdge="vertical"
+	        >
+	        
+	        <TextView 
+	            android:id="@+id/txt_minor_tip"
+	            android:layout_width="match_parent"
+	            android:layout_height="wrap_content"
+	            android:textColor="#ff333333"
+	            android:textSize="13sp"
+	            />
+	    </ScrollView>
+	    
+        <Button 
+            android:id="@+id/btn_action_1"
+            android:layout_width="match_parent"
+            android:layout_height="40dip"
+            android:layout_marginBottom="10dip"
+            android:textColor="#ffffffff"
+            android:textSize="14sp"
+            android:background="@drawable/bdp_update_bg_dialog_btn"
+            />
+        
+        <LinearLayout 
+            android:id="@+id/lin_other_btns"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:weightSum="2"
+            android:gravity="center"
+            android:orientation="horizontal">
+            
+            <TextView 
+                android:id="@+id/txt_action_2"
+                android:layout_width="0dip"
+                android:layout_height="wrap_content"
+                android:layout_weight="1"
+                android:textColor="#ffabbed9"
+                android:textSize="13sp"
+                android:gravity="center"
+                android:text="@string/bdp_update_not_now"
+                />
+            
+            <TextView 
+                android:id="@+id/txt_action_3"
+                android:layout_width="0dip"
+                android:layout_height="wrap_content"
+                android:layout_weight="1"
+                android:textColor="#ffabbed9"
+                android:textSize="13sp"
+                android:gravity="center"
+                android:text="@string/bdp_update_ignore"
+                />
+        </LinearLayout>
+    </LinearLayout>
+</LinearLayout>

+ 29 - 0
BDIntegrationSDK_LibProject/res/values/bdp_update_strings.xml

@@ -0,0 +1,29 @@
+<resources>
+
+    <string name="bdp_update_request_net_error">网络错误,请重试</string>
+    
+    <string name="bdp_update_tip_waiting">等待下载</string>
+    <string name="bdp_update_title_download">发现新版本</string>
+    <string name="bdp_update_title_install">发现新版本安装包</string>
+    <string name="bdp_update_title_as">提示</string>
+    <string name="bdp_update_download_main_tip">%1$s → %2$s / %3$s</string>
+    <string name="bdp_update_install_main_tip">%1$s → %2$s</string>
+    <string name="bdp_update_minor_tip">更新内容:</string>
+    <string name="bdp_update_action_download">立即升级</string>
+    <string name="bdp_update_action_install">立即安装</string>
+    <string name="bdp_update_not_now">暂不升级</string>
+    <string name="bdp_update_ignore">忽略此版本</string>
+    
+    <string name="bdp_update_new_download">发现新版本,点击更新</string>
+    <string name="bdp_update_download_complete">新版本下载完成,点击安装</string>
+    
+    <string name="bdp_update_as_notify_title">百度手机助手</string>
+    <string name="bdp_update_as_notify_tip">百度手机助手</string>
+    <string name="bdp_update_as_download_complete">百度手机助手下载完成</string>
+    <string name="bdp_update_as_install_tip">推荐您使用百度手机助手进行升级。您尚未安装百度手机助手,请先安装。</string>
+    <string name="bdp_update_as_action_install">安装</string>
+    <string name="bdp_update_as_action_cancel">取消</string>
+    
+    <string name="bdp_update_install_file_not_exist">安装包已被删除</string>
+
+</resources>

+ 25 - 0
BDIntegrationSDK_LibProject/res/values/bdp_update_styles.xml

@@ -0,0 +1,25 @@
+<resources xmlns:android="http://schemas.android.com/apk/res/android">
+
+    <style name="bdp_update_dialog_style" parent="android:Theme.Dialog">
+        <item name="android:windowFrame">@null</item>
+        <item name="android:windowIsFloating">true</item>
+        <item name="android:windowIsTranslucent">true</item> 
+        <item name="android:windowNoTitle">true</item><!--除去title-->
+        <item name="android:windowContentOverlay">@null</item> 
+        <item name="android:backgroundDimEnabled">true</item>
+        <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
+        <item name="android:windowBackground">@android:color/transparent</item>
+    </style>
+    
+    <style name="bdp_update_dialog_style_fullscreen" parent="@style/bdp_update_dialog_style">
+        <item name="android:windowFullscreen">true</item>
+    </style>
+    
+    <style name="bdp_update_progress_download">
+        <item name="android:indeterminateOnly">false</item>
+        <item name="android:progressDrawable">@drawable/bdp_update_progress_download</item>
+        <item name="android:minHeight">8dip</item>
+        <item name="android:maxHeight">8dip</item>
+    </style>
+
+</resources>

+ 4 - 0
README.md

@@ -0,0 +1,4 @@
+## BDAutoUpdateDemo
+
+百度自动更新包,在开发安卓项目中,可以不用自己写更新app的逻辑代码。检测到更新调用 lib代码即可。
+