2018-01-29 16:06:44 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2023-02-26 21:40:26 +00:00
|
|
|
namespace 'com.genymobile.scrcpy'
|
2023-11-15 20:08:15 +00:00
|
|
|
compileSdk 34
|
2018-01-29 16:06:44 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.genymobile.scrcpy"
|
|
|
|
minSdkVersion 21
|
2023-11-15 20:08:15 +00:00
|
|
|
targetSdkVersion 34
|
2024-03-02 22:22:09 +00:00
|
|
|
versionCode 20400
|
|
|
|
versionName "2.4"
|
2018-01-29 16:06:44 +00:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 20:05:47 +00:00
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
aidl true
|
|
|
|
}
|
2018-01-29 16:06:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-12-21 12:28:08 +00:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2018-01-29 16:06:44 +00:00
|
|
|
}
|
2018-02-07 17:06:23 +00:00
|
|
|
|
|
|
|
apply from: "$project.rootDir/config/android-checkstyle.gradle"
|