97 lines
3.1 KiB
Plaintext
97 lines
3.1 KiB
Plaintext
import com.android.build.gradle.internal.api.BaseVariantOutputImpl
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("com.google.devtools.ksp")
|
|
kotlin("android")
|
|
}
|
|
|
|
android {
|
|
namespace = "me.weishu.kernelsu"
|
|
|
|
ndkVersion = "25.1.8937393"
|
|
|
|
defaultConfig {
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
ndk {
|
|
abiFilters += listOf("arm64-v8a", "x86_64")
|
|
}
|
|
}
|
|
|
|
lint {
|
|
checkReleaseBuilds = false
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.3.2"
|
|
}
|
|
|
|
packagingOptions {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path(file("src/main/cpp/CMakeLists.txt"))
|
|
version = "3.18.1"
|
|
}
|
|
}
|
|
|
|
applicationVariants.all {
|
|
outputs.forEach {
|
|
val output = it as BaseVariantOutputImpl
|
|
output.outputFileName = "KernelSU_$versionName-${buildType.name}.apk"
|
|
}
|
|
|
|
kotlin.sourceSets {
|
|
getByName(name) {
|
|
kotlin.srcDir("build/generated/ksp/$name/kotlin")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
val accompanistVersion = "0.28.0"
|
|
val composeDestinationsVersion = "1.7.27-beta"
|
|
implementation(platform("androidx.compose:compose-bom:2022.12.00"))
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
implementation("androidx.activity:activity-compose:1.6.1")
|
|
implementation("androidx.compose.material:material:1.4.0-beta02")
|
|
implementation("androidx.compose.material:material-icons-extended")
|
|
implementation("androidx.compose.material3:material3")
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
implementation("androidx.core:core-ktx:1.9.0")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
|
|
implementation("androidx.navigation:navigation-compose:2.5.3")
|
|
implementation("com.google.accompanist:accompanist-drawablepainter:$accompanistVersion")
|
|
implementation("com.google.accompanist:accompanist-navigation-animation:$accompanistVersion")
|
|
implementation("com.google.accompanist:accompanist-systemuicontroller:$accompanistVersion")
|
|
implementation("io.github.raamcosta.compose-destinations:animations-core:$composeDestinationsVersion")
|
|
|
|
implementation("io.coil-kt:coil-compose:2.2.2")
|
|
implementation("me.zhanghai.android.appiconloader:appiconloader-coil:1.5.0")
|
|
|
|
val libsuVersion = "5.0.4"
|
|
implementation("com.github.topjohnwu.libsu:core:$libsuVersion")
|
|
implementation("com.github.topjohnwu.libsu:service:$libsuVersion")
|
|
implementation("dev.rikka.rikkax.parcelablelist:parcelablelist:2.0.0")
|
|
|
|
implementation("com.github.alorma:compose-settings-ui-m3:0.22.0")
|
|
|
|
ksp("io.github.raamcosta.compose-destinations:ksp:$composeDestinationsVersion")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.4")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
|
|
}
|