include system apps

This commit is contained in:
randogoth 2025-02-24 16:53:45 +02:00
parent 2fde531964
commit c065a013fc
3 changed files with 12 additions and 1 deletions

View file

@ -9,6 +9,7 @@ android {
namespace = "vision.flux.plasmoid"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileSdkVersion 34
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
@ -28,6 +29,7 @@ android {
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
targetSdkVersion 34
}
buildTypes {

View file

@ -10,6 +10,13 @@ subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
afterEvaluate { project ->
if (project.hasProperty("android")) {
project.android {
compileSdkVersion 34
}
}
}
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app') // Ensure dependencies are evaluated correctly