build.gradle 403 B

12345678910111213141516
  1. apply plugin: 'com.android.application'
  2. dependencies {
  3. compile project(":vision")
  4. //compile 'me.dm7.barcodescanner:vision:1.9'
  5. //compile supportLibraryDependency
  6. compile 'com.android.support:appcompat-v7:25.3.1'
  7. compile 'com.android.support:design:25.3.1'
  8. }
  9. android {
  10. defaultConfig {
  11. applicationId "${project.group}.vision.sample"
  12. }
  13. buildToolsVersion '25.0.2'
  14. }