Genymobile-scrcpy/server/build.gradle
2026-03-24 20:56:19 +01:00

33 lines
712 B
Groovy

apply plugin: 'com.android.application'
android {
namespace = 'com.genymobile.scrcpy'
compileSdk = 36
defaultConfig {
applicationId = "com.genymobile.scrcpy"
minSdkVersion 21
targetSdkVersion 36
versionCode 30304
versionName "3.3.4"
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"