The QR Code Scanner package for Appeto SDK.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- group 'net.touchcapture.qr.flutterqr'
- version '1.0-SNAPSHOT'
-
- buildscript {
- ext.kotlin_version = '1.5.10'
- repositories {
- google()
- mavenCentral()
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:4.2.1'
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
- }
-
- rootProject.allprojects {
- repositories {
- google()
- mavenCentral()
- }
- }
-
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
-
- android {
- compileSdkVersion 30
-
- sourceSets {
- main.java.srcDirs += 'src/main/kotlin'
- }
- defaultConfig {
- // minSdkVersion is determined by Native View.
- minSdkVersion 20
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildFeatures {
- viewBinding = true
- }
-
- }
-
- 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.3.0'
- implementation 'com.google.zxing:core:3.4.1'
- }
|