build.gradle 374 B

123456789101112131415
  1. apply plugin: 'com.android.library'
  2. ext {
  3. isLibrary = true
  4. pomPackaging = "aar"
  5. pomArtifactId = "zxing"
  6. pomName = "ZXing Scanner View"
  7. pomDescription = 'An android library project which contains the zxing barcode scanner view'
  8. }
  9. dependencies {
  10. //compile project(":core")
  11. compile libraries.barcodescanner_core
  12. compile libraries.zxing_core
  13. }