2018-01-29 17:06:44 +01:00
|
|
|
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
|
2018-01-29 17:06:44 +01:00
|
|
|
defaultConfig {
|
2025-10-19 17:02:35 +02:00
|
|
|
applicationId = "com.genymobile.scrcpy"
|
2018-01-29 17:06:44 +01:00
|
|
|
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"
|
2018-01-29 17:06:44 +01:00
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-11-15 21:05:47 +01:00
|
|
|
buildFeatures {
|
2025-10-19 17:02:35 +02:00
|
|
|
buildConfig = true
|
|
|
|
|
aidl = true
|
|
|
|
|
}
|
|
|
|
|
lint {
|
|
|
|
|
disable 'UseRequiresApi'
|
2023-11-15 21:05:47 +01:00
|
|
|
}
|
2018-01-29 17:06:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2022-12-21 13:28:08 +01:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2018-01-29 17:06:44 +01:00
|
|
|
}
|
2018-02-07 18:06:23 +01:00
|
|
|
|
|
|
|
|
apply from: "$project.rootDir/config/android-checkstyle.gradle"
|