Skip to content

Commit 85b399f

Browse files
authored
Merge pull request #57 from StringCare/develop
v3.1 - Path treatment and test tasks
2 parents f1be79f + 56ae717 commit 85b399f

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222

2323
#### [Migrations](https://github.com/StringCare/AndroidLibrary/wiki/Migrations)
2424

25+
#### [Tasks](https://github.com/StringCare/AndroidLibrary/wiki/Tasks)
26+
27+
#### [Resource Tips](https://github.com/StringCare/AndroidLibrary/wiki/Resource-Tips)
28+
2529
[link]: https://github.com/StringCare/AndroidLibrary
2630
[badge]: https://img.shields.io/bintray/v/efff/maven/StringCareAndroidPlugin.svg
2731

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.android.application'
2-
apply plugin: 'kotlin-android-extensions'
32
apply plugin: 'kotlin-android'
3+
apply plugin: 'kotlin-android-extensions'
44

55
android {
66
signingConfigs {

build.gradle

Lines changed: 6 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 = '3.0'
6+
stringcare_version = '3.1'
77
}
88

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

1818
dependencies {
1919
classpath "com.stringcare:plugin:$stringcare_version"
20-
// classpath files('../GradlePlugin/build/libs/plugin-2.2.jar')
21-
// classpath files('../KotlinGradlePlugin/build/libs/plugin-2.2.jar')
20+
// classpath files('../GradlePlugin/build/libs/plugin-3.0.jar')
21+
// classpath files('../KotlinGradlePlugin/build/libs/plugin-3.0.jar')
2222
// classpath files('..\\GradlePlugin\\build\\libs\\plugin-0.9.jar')
2323
classpath 'com.android.tools.build:gradle:3.4.1'
2424
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1"
@@ -46,4 +46,7 @@ apply plugin: StringCare
4646

4747
stringcare {
4848
debug true
49+
modules {
50+
app {}
51+
}
4952
}

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
apply plugin: 'com.android.library'
2-
apply plugin: 'kotlin-android-extensions'
32
apply plugin: 'kotlin-android'
3+
apply plugin: 'kotlin-android-extensions'
44
apply plugin: 'com.github.dcendents.android-maven'
55
apply plugin: 'com.jfrog.bintray'
66

7-
version = "3.0"
7+
version = "3.1"
88

99
android {
1010
compileSdkVersion 28

library/src/main/res/values/strings.xml

100755100644
File mode changed.

0 commit comments

Comments
 (0)