Skip to content

Commit daca4b6

Browse files
committed
1.2 working fine with com.android.tools.build:gradle:3.2.1
1 parent faec671 commit daca4b6

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ android {
1616
}
1717
buildTypes {
1818
release {
19-
minifyEnabled true
19+
minifyEnabled false
2020
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2121
}
2222
debug {
@@ -38,8 +38,8 @@ dependencies {
3838
})
3939
implementation 'com.android.support:appcompat-v7:28.0.0'
4040
testImplementation 'junit:junit:4.12'
41-
implementation project(path: ':library')
42-
// implementation "com.stringcare:library:$stringcare_version"
41+
// implementation project(path: ':library')
42+
implementation "com.stringcare:library:$stringcare_version"
4343
}
4444

4545

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
buildscript {
33

44
ext {
5-
stringcare_version = '0.9'
5+
stringcare_version = '1.2'
66
}
77

88
repositories {
@@ -15,8 +15,8 @@ buildscript {
1515
}
1616

1717
dependencies {
18-
// classpath "com.stringcare:plugin:$stringcare_version"
19-
classpath files('../GradlePlugin/build/libs/plugin-0.9.jar')
18+
classpath "com.stringcare:plugin:$stringcare_version"
19+
// classpath files('../GradlePlugin/build/libs/plugin-0.9.jar')
2020
// classpath files('..\\GradlePlugin\\build\\libs\\plugin-0.9.jar')
2121
classpath 'com.android.tools.build:gradle:3.2.1'
2222
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Nov 07 22:16:56 CET 2018
1+
#Tue Jan 15 17:50:13 CET 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

library/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

5-
version = "0.9"
5+
version = "1.2"
66

77
android {
88
compileSdkVersion 28
@@ -22,11 +22,11 @@ android {
2222
}
2323
buildTypes {
2424
release {
25-
minifyEnabled true
25+
minifyEnabled false
2626
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2727
}
2828
debug {
29-
minifyEnabled true
29+
minifyEnabled false
3030
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3131
}
3232
}
@@ -58,7 +58,7 @@ install {
5858
pom {
5959
project {
6060
packaging 'aar'
61-
name 'Simple Android library to hide strings'
61+
name 'StringCareAndroidLibrary'
6262
url siteUrl
6363
// Set your license
6464
licenses {

0 commit comments

Comments
 (0)