build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. buildToolsVersion "29.0.2"
  5. defaultConfig {
  6. applicationId "com.zqx.kedaxunfei"
  7. minSdkVersion 19
  8. targetSdkVersion 28
  9. versionCode 1
  10. versionName "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. implementation fileTree(include: ['*.jar'], dir: 'libs')
  22. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  23. exclude group: 'com.android.support', module: 'support-annotations'
  24. })
  25. implementation 'com.android.support:appcompat-v7:28.0.0'
  26. implementation 'com.android.support:cardview-v7:28.0.0'
  27. implementation 'com.jakewharton:butterknife:8.4.0'
  28. annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
  29. compile files('libs/Msc.jar')
  30. implementation 'homhomlin.lib:sldinglayout:0.9.0'
  31. }