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) 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 1a3d846..7a5fdc8 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 @@ -51,7 +51,6 @@ protected void onCreate(Bundle savedInstanceState) { setTheme(mThemeUtils.getTheme(this)); super.onCreate(savedInstanceState); // 设置是否对日志信息进行加密, true 加密 - //AnalyticsConfig.enableEncrypt(true); // 设置布局 if(initLayout()>0){ setContentView(initLayout()); diff --git a/doc/Changelog.md b/doc/Changelog.md index 75d43f3..70c0840 100644 --- a/doc/Changelog.md +++ b/doc/Changelog.md @@ -1,5 +1,9 @@ #ChangeLog# +* 0.9.5 + + add package info list (16/12/26) + adapter Android N (16/12/25) * 0.3.2 diff --git a/doc/README_CN.md b/doc/README_CN.md index 4da7075..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) ### 截图 ### @@ -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)