scrcpy/server/build.gradle

33 lines
712 B
Groovy
Raw Permalink Normal View History

apply plugin: 'com.android.application'
android {
2025-10-19 17:02:35 +02:00
namespace = 'com.genymobile.scrcpy'
2026-03-24 20:56:19 +01:00
compileSdk = 36
defaultConfig {
2025-10-19 17:02:35 +02:00
applicationId = "com.genymobile.scrcpy"
minSdkVersion 21
2025-10-19 17:02:35 +02:00
targetSdkVersion 36
2025-12-17 19:43:29 +01:00
versionCode 30304
versionName "3.3.4"
2025-10-19 17:02:35 +02:00
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
}
}
buildFeatures {
2025-10-19 17:02:35 +02:00
buildConfig = true
aidl = true
}
lint {
disable 'UseRequiresApi'
}
}
dependencies {
2022-12-21 13:28:08 +01:00
testImplementation 'junit:junit:4.13.2'
}
apply from: "$project.rootDir/config/android-checkstyle.gradle"