The QR Code Scanner package for Appeto SDK.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

55 lignes
1.3 KiB

  1. group 'net.touchcapture.qr.flutterqr'
  2. version '1.0-SNAPSHOT'
  3. buildscript {
  4. ext.kotlin_version = '1.4.30'
  5. repositories {
  6. google()
  7. jcenter()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:4.1.2'
  11. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  12. }
  13. }
  14. rootProject.allprojects {
  15. repositories {
  16. google()
  17. jcenter()
  18. }
  19. }
  20. apply plugin: 'com.android.library'
  21. apply plugin: 'kotlin-android'
  22. apply plugin: 'kotlin-android-extensions'
  23. apply plugin: 'kotlin-kapt'
  24. android {
  25. compileSdkVersion 30
  26. sourceSets {
  27. main.java.srcDirs += 'src/main/kotlin'
  28. }
  29. defaultConfig {
  30. // minSdkVersion is determined by Native View.
  31. minSdkVersion 20
  32. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  33. }
  34. lintOptions {
  35. disable 'InvalidPackage'
  36. }
  37. aaptOptions.cruncherEnabled = false
  38. aaptOptions.useNewCruncher = false
  39. }
  40. dependencies {
  41. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  42. implementation('com.journeyapps:zxing-android-embedded:4.1.0') { transitive = false }
  43. implementation 'androidx.appcompat:appcompat:1.2.0'
  44. implementation 'com.google.zxing:core:3.3.0'
  45. }