mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
Address some gradle warnings (#259)
* chore: Address AGP 8.X warning * chore(core): Address conflicting-namespace warning
This commit is contained in:
parent
d8434dc51d
commit
7145763652
@ -25,7 +25,9 @@ android {
|
|||||||
applicationIdSuffix pkgNameSuffix
|
applicationIdSuffix pkgNameSuffix
|
||||||
versionCode extVersionCode
|
versionCode extVersionCode
|
||||||
versionName project.ext.properties.getOrDefault("libVersion", "1.4") + ".$extVersionCode"
|
versionName project.ext.properties.getOrDefault("libVersion", "1.4") + ".$extVersionCode"
|
||||||
setProperty("archivesBaseName", "tachiyomi-$pkgNameSuffix-v$versionName")
|
base {
|
||||||
|
archivesName = "tachiyomi-$pkgNameSuffix-v$versionName"
|
||||||
|
}
|
||||||
def readmes = project.projectDir.listFiles({ File file ->
|
def readmes = project.projectDir.listFiles({ File file ->
|
||||||
file.name == "README.md" || file.name == "CHANGELOG.md"
|
file.name == "README.md" || file.name == "CHANGELOG.md"
|
||||||
} as FileFilter)
|
} as FileFilter)
|
||||||
|
@ -9,7 +9,7 @@ android {
|
|||||||
minSdk = AndroidConfig.minSdk
|
minSdk = AndroidConfig.minSdk
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace = "eu.kanade.tachiyomi.extension"
|
namespace = "eu.kanade.tachiyomi.extension.core"
|
||||||
|
|
||||||
@Suppress("UnstableApiUsage")
|
@Suppress("UnstableApiUsage")
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
Loading…
Reference in New Issue
Block a user