From 452a6b441a3a6eea6091cc8d3ae3d9c389363081 Mon Sep 17 00:00:00 2001
From: maoruibin <1252768410@qq.com>
Date: Sat, 12 Mar 2016 22:20:18 +0800
Subject: [PATCH 1/4] Update README.md
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 76ad67a..5d9ea7b 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,7 @@ AppPlus is a open source android application,and used to manage app,export apk,w
* [systembartint](https://github.com/jgilfelt/SystemBarTint)
* [AndroidProcesses](https://github.com/jaredrummler/AndroidProcesses)
* [recyclerview-animators](https://github.com/wasabeef/recyclerview-animators)
+* [RxJava](https://github.com/ReactiveX/RxJava)
### Changelog ###
Changelog is available [here](/doc/Changelog.md)(write by chinese)
From 3f4df822f91d06efc60c09272d5acf38f1f86856 Mon Sep 17 00:00:00 2001
From: maoruibin <1252768410@qq.com>
Date: Sat, 12 Mar 2016 22:21:28 +0800
Subject: [PATCH 2/4] Update README_CN.md
---
doc/README_CN.md | 2 ++
1 file changed, 2 insertions(+)
diff --git a/doc/README_CN.md b/doc/README_CN.md
index 4da7075..09b5370 100644
--- a/doc/README_CN.md
+++ b/doc/README_CN.md
@@ -18,6 +18,7 @@ AppPlus是一个可以用于传送Apk文件,提取APK文件等的工具软件
### 知识点 ###
* 官方support design库的使用
+* 使用 RxJava 控制异步请求
* 主题颜色切换(主要原理是通过切换事先定义好的Theme,然后重新启动Activity)
* 友盟统计(包括事件统计以及自动更新)
* RecycleView 分割线以及Item动画的应用
@@ -29,6 +30,7 @@ AppPlus是一个可以用于传送Apk文件,提取APK文件等的工具软件
* [systembartint](https://github.com/jgilfelt/SystemBarTint) -- 沉浸式效果
* [AndroidProcesses](https://github.com/jaredrummler/AndroidProcesses)
* [recyclerview-animators](https://github.com/wasabeef/recyclerview-animators)
+* [RxJava](https://github.com/ReactiveX/RxJava)
### 更新日志 ###
Changelog is available [here](/doc/Changelog.md)
From 75ecf37714fcd41cde64f7f3b9b1a3edc035a330 Mon Sep 17 00:00:00 2001
From: maoruibin <1252768410@qq.com>
Date: Sat, 2 Apr 2016 23:55:49 +0800
Subject: [PATCH 3/4] Update README_CN.md
update url
---
doc/README_CN.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/README_CN.md b/doc/README_CN.md
index 09b5370..29d05b9 100644
--- a/doc/README_CN.md
+++ b/doc/README_CN.md
@@ -9,7 +9,7 @@ AppPlus是一个可以用于传送Apk文件,提取APK文件等的工具软件
### 开发初衷 ###
-[为什么开发了 AppPlus](http://maoruibin.github.io/technology/2015/12/21/reason-for-appplus.html)
+[为什么开发了 AppPlus](http://maoruibin.github.io/2015/12/21/reason-for-appplus.html)
### 截图 ###
From 71d1280012ca57ee17e7dd4d2ebbfbc2f8514c2c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=92=8B=E6=9C=8B?=
Date: Mon, 28 Nov 2016 16:02:32 +0800
Subject: [PATCH 4/4] update umeng enableEncrypt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
https://dev.umeng.com/analytics/android-doc/integration
-AnalyticsConfig.enableEncrypt(boolean enable);//6.0.0版本以前
+MobclickAgent.enableEncrypt(boolean enable);//6.0.0版本及以后
---
.../main/java/com/gudong/appkit/ui/activity/BaseActivity.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/app/src/main/java/com/gudong/appkit/ui/activity/BaseActivity.java b/app/src/main/java/com/gudong/appkit/ui/activity/BaseActivity.java
index 0d8cd7f..1e9fb90 100644
--- a/app/src/main/java/com/gudong/appkit/ui/activity/BaseActivity.java
+++ b/app/src/main/java/com/gudong/appkit/ui/activity/BaseActivity.java
@@ -35,7 +35,6 @@
import com.gudong.appkit.ui.control.ThemeControl;
import com.gudong.appkit.utils.Utils;
import com.readystatesoftware.systembartint.SystemBarTintManager;
-import com.umeng.analytics.AnalyticsConfig;
import com.umeng.analytics.MobclickAgent;
/**
@@ -52,7 +51,7 @@ protected void onCreate(Bundle savedInstanceState) {
setTheme(mThemeUtils.getTheme(this));
super.onCreate(savedInstanceState);
// 设置是否对日志信息进行加密, true 加密
- AnalyticsConfig.enableEncrypt(true);
+ MobclickAgent.enableEncrypt(true);
// 设置布局
if(initLayout()>0){
setContentView(initLayout());