Skip to content

Commit 1aab976

Browse files
committed
v4.0.0
1 parent afa884e commit 1aab976

File tree

3 files changed

+11
-26
lines changed

3 files changed

+11
-26
lines changed

app/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
4+
apply plugin: StringCare
5+
6+
stringcare {
7+
debug true
8+
assetsFiles = ["*.json"]
9+
stringFiles = ['strings.xml']
10+
srcFolders = ['src/main']
11+
}
412

513
android {
614
signingConfigs {

build.gradle

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
ext.kotlin_version = '1.3.50'
44

55
ext {
6-
stringcare_version = '3.6.3'
6+
stringcare_version = '4.0.0'
77
}
88

99
repositories {
@@ -17,7 +17,7 @@ buildscript {
1717

1818
dependencies {
1919
classpath "com.stringcare:plugin:$stringcare_version"
20-
// classpath files('../KotlinGradlePlugin/build/libs/plugin-3.5.jar')
20+
// classpath files('../KotlinGradlePlugin/build/libs/plugin-4.0.0.jar')
2121
classpath 'com.android.tools.build:gradle:3.5.3'
2222
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1"
2323
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
@@ -35,26 +35,3 @@ allprojects {
3535
}
3636
}
3737
}
38-
39-
task clean(type: Delete) {
40-
delete rootProject.buildDir
41-
}
42-
43-
apply plugin: StringCare
44-
45-
stringcare {
46-
debug true
47-
modules {
48-
app {
49-
assetsFiles = ["*.json"]
50-
}
51-
}
52-
variants {
53-
prod {
54-
applicationId = "com.efraespada.stringobfuscator"
55-
}
56-
devDebug {
57-
applicationId = "com.efraespada.otherobfuscator"
58-
}
59-
}
60-
}

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'com.github.dcendents.android-maven'
55
apply plugin: 'com.jfrog.bintray'
66

7-
version = "3.6.3"
7+
version = "4.0.0"
88

99
android {
1010
compileSdkVersion 28

0 commit comments

Comments
 (0)