Skip to content

Commit eb3d5bd

Browse files
committed
test
1 parent f0fdd8a commit eb3d5bd

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed

app/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ apply plugin: 'kotlin-android'
44

55
apply plugin: 'kotlin-android-extensions'
66

7+
apply plugin: StringCare
8+
9+
stringcare {
10+
debug true
11+
assetsFiles = ["*.json"]
12+
stringFiles = ['strings.xml', "strings_extra.xml"]
13+
srcFolders = ['src/main', "src/other_source"]
14+
}
15+
716
android {
817
compileSdkVersion 28
918
defaultConfig {

build.gradle

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ buildscript {
77
repositories {
88
google()
99
jcenter()
10-
1110
}
1211
dependencies {
1312
classpath 'com.android.tools.build:gradle:3.5.3'
14-
classpath "com.stringcare:plugin:$stringcare_version"
13+
// classpath "com.stringcare:plugin:$stringcare_version"
14+
classpath files('../KotlinGradlePlugin/build/libs/plugin-3.6.3.jar')
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1616
// NOTE: Do not place your application dependencies here; they belong
1717
// in the individual module build.gradle files
@@ -28,17 +28,3 @@ allprojects {
2828
task clean(type: Delete) {
2929
delete rootProject.buildDir
3030
}
31-
32-
apply plugin: StringCare
33-
34-
stringcare {
35-
debug true
36-
main_module "app"
37-
modules {
38-
app {
39-
assetsFiles = ["*.json"]
40-
stringFiles = ['strings.xml', "strings_extra.xml"]
41-
srcFolders = ['src/main', "src/other_source"]
42-
}
43-
}
44-
}

0 commit comments

Comments
 (0)