The QR Code Scanner package for Appeto SDK.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- group 'net.touchcapture.qr.flutterqr'
- version '1.0-SNAPSHOT'
-
- buildscript {
- ext.kotlin_version = '1.4.21'
- repositories {
- google()
- jcenter()
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:4.1.1'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
-
- rootProject.allprojects {
- repositories {
- google()
- jcenter()
- }
- }
-
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- apply plugin: 'kotlin-kapt'
-
- android {
- compileSdkVersion 30
-
-
- sourceSets {
- main.java.srcDirs += 'src/main/kotlin'
- }
- defaultConfig {
- minSdkVersion 19
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- lintOptions {
- disable 'InvalidPackage'
- }
-
- aaptOptions.cruncherEnabled = false
- aaptOptions.useNewCruncher = false
- }
-
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- implementation('com.journeyapps:zxing-android-embedded:4.1.0') { transitive = false }
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.google.zxing:core:3.3.0'
- }
|