build.gradle 693 B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion COMPILE_SDK_VERSION
  4. buildToolsVersion BUILD_TOOLS_VERSION
  5. defaultConfig {
  6. applicationId "com.kaola.qrcodescanner"
  7. minSdkVersion MIN_SDK_VERSION
  8. targetSdkVersion TARGET_SDK_VERSION
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled true
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. compile project(':zxing')
  21. compile fileTree(dir: 'libs', include: ['*.jar'])
  22. compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
  23. }