2018-01-29 17:06:44 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2023-02-26 22:40:26 +01:00
|
|
|
namespace 'com.genymobile.scrcpy'
|
2023-11-15 21:08:15 +01:00
|
|
|
compileSdk 34
|
2018-01-29 17:06:44 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.genymobile.scrcpy"
|
|
|
|
minSdkVersion 21
|
2023-11-15 21:08:15 +01:00
|
|
|
targetSdkVersion 34
|
2023-12-02 12:30:19 +01:00
|
|
|
versionCode 20301
|
|
|
|
versionName "2.3.1"
|
2018-01-29 17:06:44 +01:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 21:05:47 +01:00
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
aidl true
|
|
|
|
}
|
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"
|