scrcpy/server/build.gradle

27 lines
682 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
namespace 'com.genymobile.scrcpy'
2022-09-02 20:41:23 +08:00
compileSdkVersion 33
defaultConfig {
applicationId "com.genymobile.scrcpy"
minSdkVersion 21
2022-09-02 20:41:23 +08:00
targetSdkVersion 33
2022-12-22 19:33:29 +08: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 20:28:08 +08:00
testImplementation 'junit:junit:4.13.2'
}
apply from: "$project.rootDir/config/android-checkstyle.gradle"