scrcpy/server/build.gradle

34 lines
805 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'
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
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
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"