mirror of
https://github.com/DJDoubleD/refreezer.git
synced 2026-01-16 00:42:53 -03:00
- updated locales for intl/i18n compatability - updated submodule commit references (fixes #100) - updated translations from crowdin - upgrade to gradle 8.12 - updated dependencies
59 lines
2.0 KiB
Groovy
59 lines
2.0 KiB
Groovy
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
rootProject.layout.buildDirectory = rootProject.layout.projectDirectory.dir('../build')
|
|
subprojects {
|
|
project.layout.buildDirectory = rootProject.layout.buildDirectory.dir(project.name)
|
|
|
|
// This will make sure all the sub projects have an android namespace,
|
|
// if not it will read it from AndroidManifest.xml
|
|
// Also sets the compileSdk to 35 and the target javaVersion to 17
|
|
// (needs to be changed manually to the latest in the future)
|
|
afterEvaluate {
|
|
// check if android block is available
|
|
if (it.hasProperty('android')) {
|
|
|
|
if (it.android.namespace == null) {
|
|
def manifest = groovy.xml.XmlSlurper.parse(file(it.android.sourceSets.main.manifest.srcFile))
|
|
def packageName = manifest.@package.text()
|
|
println("Setting ${packageName} as android namespace")
|
|
it.android {
|
|
namespace = packageName
|
|
}
|
|
}
|
|
|
|
def javaVersion = JavaVersion.VERSION_17
|
|
android {
|
|
def androidApiVersion = 35
|
|
compileSdk androidApiVersion
|
|
defaultConfig {
|
|
targetSdk androidApiVersion
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility javaVersion
|
|
targetCompatibility javaVersion
|
|
}
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
|
|
kotlinOptions {
|
|
jvmTarget = javaVersion.toString()
|
|
}
|
|
}
|
|
println("Setting java version to ${javaVersion.toString()} which is $javaVersion")
|
|
println("Setting compileSdk and targetSdk to $androidApiVersion")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
subprojects {
|
|
project.evaluationDependsOn(':app')
|
|
}
|
|
|
|
tasks.register("clean", Delete) {
|
|
delete rootProject.layout.buildDirectory
|
|
}
|