scrcpy/server/build.gradle

31 lines
745 B
Groovy
Raw Permalink Normal View History

apply plugin: 'com.android.application'
android {
namespace 'com.genymobile.scrcpy'
2023-11-15 21:08:15 +01:00
compileSdk 34
defaultConfig {
applicationId "com.genymobile.scrcpy"
minSdkVersion 21
2023-11-15 21:08:15 +01:00
targetSdkVersion 34
2024-08-02 22:32:04 +02:00
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 {
2022-12-21 13:28:08 +01:00
testImplementation 'junit:junit:4.13.2'
}
apply from: "$project.rootDir/config/android-checkstyle.gradle"