build.gradle 945 B

123456789101112131415161718192021222324252627282930313233
  1. evaluationDependsOn(':server')
  2. apply plugin: 'com.android.application'
  3. android {
  4. compileSdkVersion 28
  5. defaultConfig {
  6. applicationId "org.las2mile.scrcpy"
  7. minSdkVersion 19
  8. targetSdkVersion 28
  9. versionCode 2
  10. versionName "1.1"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. setProperty("archivesBaseName", "scrcpy")
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. implementation 'com.android.support.constraint:constraint-layout:1.1.2'
  24. testImplementation 'junit:junit:4.12'
  25. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  26. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  27. }