rename dir

Signed-off-by: androidacy-user <opensource@androidacy.com>
pull/89/head
androidacy-user 3 years ago
parent 8de65a47f6
commit 636eec7fe9

@ -48,7 +48,31 @@ android {
useSupportLibrary = true
}
multiDexEnabled = true
resourceConfigurations.addAll(listOf("ar", "bs", "cs", "de", "es-rMX", "fr", "hu", "id", "ja", "hu", "nl", "pl", "pt", "pt-rBR", "ro", "ru", "tr", "uk", "zh", "zh-rTW", "en"))
resourceConfigurations.addAll(
listOf(
"ar",
"bs",
"cs",
"de",
"es-rMX",
"fr",
"hu",
"id",
"ja",
"hu",
"nl",
"pl",
"pt",
"pt-rBR",
"ro",
"ru",
"tr",
"uk",
"zh",
"zh-rTW",
"en"
)
)
}
splits {
@ -504,6 +528,12 @@ dependencies {
}
android {
sourceSets {
this.getByName("main") {
this.java.srcDir("src/main/kotlin")
}
}
ndkVersion = "25.2.9519653"
dependenciesInfo {
includeInApk = false

@ -34,6 +34,7 @@ subprojects {
plugins.withType<com.android.build.gradle.api.AndroidBasePlugin> {
apply(plugin = "org.gradle.android.cache-fix")
}
}
tasks.register("clean", Delete::class) {
@ -46,4 +47,3 @@ afterEvaluate {
targetCompatibility = JavaVersion.VERSION_17.toString()
}
}

Loading…
Cancel
Save