2018-01-29 17:06:44 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2023-02-26 22:40:26 +01:00
|
|
|
namespace 'com.genymobile.scrcpy'
|
2024-10-20 15:06:54 +02:00
|
|
|
compileSdk 35
|
2018-01-29 17:06:44 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.genymobile.scrcpy"
|
|
|
|
minSdkVersion 21
|
2024-10-20 15:06:54 +02:00
|
|
|
targetSdkVersion 35
|
2024-11-24 16:01:16 +01:00
|
|
|
versionCode 30000
|
|
|
|
versionName "3.0"
|
2018-01-29 17:06:44 +01:00
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2023-11-15 21:05:47 +01:00
|
|
|
buildFeatures {
|
|
|
|
buildConfig true
|
|
|
|
aidl true
|
|
|
|
}
|
2018-01-29 17:06:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-12-21 13:28:08 +01:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2018-01-29 17:06:44 +01:00
|
|
|
}
|
2018-02-07 18:06:23 +01:00
|
|
|
|
|
|
|
apply from: "$project.rootDir/config/android-checkstyle.gradle"
|