Skip to content

Commit

Permalink
[Version] Update new version to 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tianma8023 committed Apr 26, 2019
1 parent 6af9c85 commit c3f77ff
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 40 deletions.
5 changes: 4 additions & 1 deletion LOG-CN.md
@@ -1,5 +1,8 @@
# 更新日志
- 19.04.17 v2.0.3 需要重启
- 19.04.26 v2.0.4 需要重启
1. 变化:移除微信捐赠入口
2. 变化:移除Bugly崩溃日志统计
- 19.04.17 v2.0.3
1. 变化:太极用户须知变更
2. 修复:其他问题修复
- 19.04.11 v2.0.2
Expand Down
9 changes: 6 additions & 3 deletions LOG-EN.md
@@ -1,13 +1,16 @@
# Update Logs
- 19.04.17 v2.0.3 Reboot required
- 19.04.26 v2.0.4 Reboot required
1. Change: remove Wechat donation entry
2. Change: remove Bugly crash analyze tools
- 19.04.17 v2.0.3
1. Change: notice for TaiChi users.
2. Fix: fix the issue of log level.
- 19.04.11 v2.0.2 Reboot required
- 19.04.11 v2.0.2
1. New option: show SMS code notification
2. Improvment: notice for TaiChi users.
3. Optimization: optimize some features.
4. Change: no longer support Android 5.x.
- 19.03.29 v2.0.1 Reboot required
- 19.03.29 v2.0.1
1. Fix: Module invalid issue before Android P.
2. Change: change the default value for some options.
- 19.03.28 v2.0.0
Expand Down
21 changes: 3 additions & 18 deletions app/build.gradle
Expand Up @@ -17,12 +17,12 @@ android {
applicationId "com.github.tianma8023.xposed.smscode"
minSdkVersion 23
targetSdkVersion 27
versionCode 33
versionName "2.0.3"
versionCode 34
versionName "2.0.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

buildConfigField("String", "LOG_TAG", "\"T-SmsCode\"")
buildConfigField("int", "MODULE_VERSION", "33")
buildConfigField("int", "MODULE_VERSION", "34")

vectorDrawables.generatedDensities = ['hdpi']

Expand Down Expand Up @@ -79,20 +79,6 @@ android {
output.outputFileName = "XposedSmsCode_v${variant.versionName.replaceAll('\\s+', '_')}_${releaseTime()}_${variant.buildType.name.charAt(0)}.apk"
}
}

flavorDimensions "type"

productFlavors {
coolapk {
dimension "type"
}
// xposed {
// dimension "type"
// }
// github {
// dimension "type"
// }
}
}

greendao {
Expand All @@ -109,7 +95,6 @@ dependencies {
implementation 'com.android.support:customtabs:27.1.1' // custom tabs
implementation 'com.android.support:preference-v7:27.1.1' // preference support


testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
Expand Down
36 changes: 18 additions & 18 deletions app/proguard-rules.pro
Expand Up @@ -13,20 +13,20 @@
# ==========================
# Umeng analyze proguard start

-keepclassmembers class * {
public <init> (org.json.JSONObject);
}

-keep public class com.github.tianma8023.xposed.smscode.R$*{
public static final int *;
}

-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}

-keep class com.umeng.** {*;}
#-keepclassmembers class * {
# public <init> (org.json.JSONObject);
#}
#
#-keep public class com.github.tianma8023.xposed.smscode.R$*{
#public static final int *;
#}
#
#-keepclassmembers enum * {
# public static **[] values();
# public static ** valueOf(java.lang.String);
#}
#
#-keep class com.umeng.** {*;}

# Umeng analyze proguard end
# ==========================
Expand Down Expand Up @@ -70,10 +70,10 @@ public static final int *;
# ==========================
# bugly proguard start

-dontwarn com.tencent.bugly.**
-keep public class com.tencent.bugly.** {
*;
}
#-dontwarn com.tencent.bugly.**
#-keep public class com.tencent.bugly.** {
# *;
#}

# bugly proguard end
# ==========================

0 comments on commit c3f77ff

Please sign in to comment.