Files
scrcpy/server/build.gradle
2026-05-12 20:28:37 +02:00

33 lines
710 B
Groovy

apply plugin: 'com.android.application'
android {
namespace = 'com.genymobile.scrcpy'
compileSdk = 36
defaultConfig {
applicationId = "com.genymobile.scrcpy"
minSdkVersion 21
targetSdkVersion 36
versionCode 40000
versionName "4.0"
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
}
}
buildFeatures {
buildConfig = true
aidl = true
}
lint {
disable 'UseRequiresApi'
}
}
dependencies {
testImplementation 'junit:junit:4.13.2'
}
apply from: "$project.rootDir/config/android-checkstyle.gradle"