scrcpy/server/build.gradle
2024-08-02 22:32:04 +02:00

30 lines
745 B
Groovy

apply plugin: 'com.android.application'
android {
namespace 'com.genymobile.scrcpy'
compileSdk 34
defaultConfig {
applicationId "com.genymobile.scrcpy"
minSdkVersion 21
targetSdkVersion 34
versionCode 20601
versionName "2.6.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
buildConfig true
aidl true
}
}
dependencies {
testImplementation 'junit:junit:4.13.2'
}
apply from: "$project.rootDir/config/android-checkstyle.gradle"