scrcpy/server/build.gradle

26 lines
644 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2022-09-02 14:41:23 +02:00
compileSdkVersion 33
defaultConfig {
applicationId "com.genymobile.scrcpy"
minSdkVersion 21
2022-09-02 14:41:23 +02:00
targetSdkVersion 33
2022-12-22 12:33:29 +01:00
versionCode 12500
versionName "1.25"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2022-12-21 13:28:08 +01:00
testImplementation 'junit:junit:4.13.2'
}
apply from: "$project.rootDir/config/android-checkstyle.gradle"