build.gradle 700 字节
Newer Older
1 2 3
apply plugin: 'com.android.application'

android {
R
Romain Vimont 已提交
4
    compileSdkVersion 30
5 6 7
    defaultConfig {
        applicationId "com.genymobile.scrcpy"
        minSdkVersion 21
R
Romain Vimont 已提交
8
        targetSdkVersion 30
R
Romain Vimont 已提交
9 10
        versionCode 20
        versionName "1.17"
11 12 13 14 15 16 17 18 19 20 21 22
        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'])
R
Romain Vimont 已提交
23
    testImplementation 'junit:junit:4.13'
24
}
25 26

apply from: "$project.rootDir/config/android-checkstyle.gradle"