2018-01-30 00:06:44 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2019-06-12 03:49:14 +08:00
|
|
|
compileSdkVersion 29
|
2018-01-30 00:06:44 +08:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.genymobile.scrcpy"
|
|
|
|
minSdkVersion 21
|
2019-06-12 03:49:14 +08:00
|
|
|
targetSdkVersion 29
|
2020-05-28 00:19:33 +08:00
|
|
|
versionCode 16
|
|
|
|
versionName "1.14"
|
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'])
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
}
|
2018-02-08 01:06:23 +08:00
|
|
|
|
|
|
|
apply from: "$project.rootDir/config/android-checkstyle.gradle"
|