Skip to content

Commit d98121e

Browse files
committed
v2.1 working
1 parent b315754 commit d98121e

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ dependencies {
4040
})
4141
implementation 'com.android.support:appcompat-v7:28.0.0'
4242
testImplementation 'junit:junit:4.12'
43-
implementation project(path: ':library')
43+
// implementation project(path: ':library')
4444
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
45-
// implementation "com.stringcare:library:$stringcare_version"
45+
implementation "com.stringcare:library:2.1"
4646
}
4747

4848

build.gradle

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

55
ext {
6-
stringcare_version = '1.6'
6+
stringcare_version = '2.0'
77
}
88

99
repositories {
@@ -16,8 +16,8 @@ buildscript {
1616
}
1717

1818
dependencies {
19-
// classpath "com.stringcare:plugin:$stringcare_version"
20-
classpath files('../GradlePlugin/build/libs/plugin-1.5.jar')
19+
classpath "com.stringcare:plugin:$stringcare_version"
20+
// classpath files('../GradlePlugin/build/libs/plugin-1.5.jar')
2121
// classpath files('..\\GradlePlugin\\build\\libs\\plugin-0.9.jar')
2222
classpath 'com.android.tools.build:gradle:3.5.0-beta02'
2323
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1"

library/build.gradle

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

7-
version = "1.6"
7+
version = "2.1"
88

99
android {
1010
compileSdkVersion 28
@@ -94,6 +94,7 @@ task sourcesJar(type: Jar) {
9494

9595
task javadoc(type: Javadoc) {
9696
exclude '**/**.java'
97+
exclude '**/**.kt'
9798
source = android.sourceSets.main.java.srcDirs
9899
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
99100
}

0 commit comments

Comments
 (0)