build.gradle 703 B

1234567891011121314151617181920212223242526
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. applicationId "me.yoqi.qrcode"
  6. minSdkVersion 14
  7. targetSdkVersion 28
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled true
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
  13. }
  14. }
  15. }
  16. dependencies {
  17. implementation fileTree(dir: 'libs', include: ['*.jar'])
  18. // implementation 'com.android.support:appcompat-v7:21.0.3'
  19. implementation 'com.android.support:appcompat-v7:28.0.0'
  20. // implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  21. // implementation files('libs/zxing.jar')
  22. }