build.gradle 683 B

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