build.gradle 644 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 33
  4. defaultConfig {
  5. applicationId "com.genymobile.scrcpy"
  6. minSdkVersion 21
  7. targetSdkVersion 33
  8. versionCode 12500
  9. versionName "1.25"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. testImplementation 'junit:junit:4.13.2'
  21. }
  22. apply from: "$project.rootDir/config/android-checkstyle.gradle"