2018-01-29 16:06:44 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-02-07 17:06:23 +00:00
|
|
|
compileSdkVersion 27
|
2018-01-29 16:06:44 +00:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.genymobile.scrcpy"
|
|
|
|
minSdkVersion 21
|
2018-02-07 17:06:23 +00:00
|
|
|
targetSdkVersion 27
|
2018-01-29 16:06:44 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
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-07 17:06:23 +00:00
|
|
|
|
|
|
|
apply from: "$project.rootDir/config/android-checkstyle.gradle"
|