2018-01-30 00:06:44 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2021-10-30 17:23:51 +08:00
|
|
|
compileSdkVersion 31
|
2018-01-30 00:06:44 +08:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.genymobile.scrcpy"
|
|
|
|
minSdkVersion 21
|
2021-10-30 17:23:51 +08:00
|
|
|
targetSdkVersion 31
|
2022-04-29 02:09:48 +08:00
|
|
|
versionCode 12400
|
|
|
|
versionName "1.24"
|
2018-01-30 00:06:44 +08:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2021-11-13 05:42:08 +08:00
|
|
|
testImplementation 'junit:junit:4.13.1'
|
2018-01-30 00:06:44 +08:00
|
|
|
}
|
2018-02-08 01:06:23 +08:00
|
|
|
|
|
|
|
apply from: "$project.rootDir/config/android-checkstyle.gradle"
|