
* Up Gradle to 8.10 * Update Android dependencies * Up Qt to 6.7.2 * Up qtkeychain to 0.14.3 * Move function of changing the color of the navigation bar to the android side * Fix splashscreen and recent apps thumbnail backgrounds * Android authentication refactoring * Fix GitHub action * Fix the extra circle around the connect button on Android * Fix keyboard popup * Increase the amount of requestNetwork attempts on Android 11
25 lines
542 B
Kotlin
25 lines
542 B
Kotlin
plugins {
|
|
id(libs.plugins.android.library.get().pluginId)
|
|
id("property-delegate")
|
|
}
|
|
|
|
java {
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
}
|
|
|
|
val qtAndroidDir: String by gradleProperties
|
|
|
|
android {
|
|
namespace = "org.qtproject.qt.android.binding"
|
|
|
|
sourceSets {
|
|
getByName("main") {
|
|
java.setSrcDirs(listOf("$qtAndroidDir/src"))
|
|
res.setSrcDirs(listOf("$qtAndroidDir/res"))
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(fileTree(mapOf("dir" to "../libs", "include" to listOf("*.jar"))))
|
|
}
|