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.
 
 
 
 
 
 

50 lignes
1.1 KiB

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