build.gradle 393 B

1234567891011121314
  1. apply plugin: 'com.android.library'
  2. ext {
  3. isLibrary = true
  4. pomPackaging = "aar"
  5. pomArtifactId = "vision"
  6. pomName = "Google Mobile Vision Scanner View"
  7. pomDescription = 'An android library project which contains the Google mobile vision barcode scanner view'
  8. }
  9. dependencies {
  10. compile project(":core")
  11. compile 'com.google.android.gms:play-services-vision:10.2.1'
  12. }