55 lines
1.5 KiB
Kotlin
55 lines
1.5 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
android {
|
|
namespace = "de.duffy.screencast"
|
|
compileSdk = 35
|
|
|
|
defaultConfig {
|
|
applicationId = "de.duffy.screencast"
|
|
minSdk = 24
|
|
targetSdk = 35
|
|
versionCode = 3
|
|
versionName = "1.2"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
// Debug-Signatur, damit die Release-APK ohne eigenen Keystore installierbar bleibt.
|
|
signingConfig = signingConfigs.getByName("debug")
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
testOptions {
|
|
unitTests.isReturnDefaultValues = true
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
systemProperty("sampleH264", System.getProperty("sampleH264") ?: "")
|
|
systemProperty("muxOutDir", System.getProperty("muxOutDir") ?: "")
|
|
testLogging { showStandardStreams = true }
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("junit:junit:4.13.2")
|
|
implementation("androidx.core:core-ktx:1.13.1")
|
|
implementation("androidx.appcompat:appcompat:1.7.0")
|
|
implementation("com.google.android.material:material:1.12.0")
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.7")
|
|
}
|