mirror of
https://github.com/simplezhli/flutter_barcode_reader.git
synced 2024-11-15 01:19:23 +08:00
6d37ed830b
bumping version to 1.0
50 lines
1.0 KiB
Groovy
50 lines
1.0 KiB
Groovy
group 'com.apptreesoftware.barcodescan'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.3.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.20"
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.20'
|
|
implementation 'me.dm7.barcodescanner:zxing:1.9.13'
|
|
api 'com.google.android.material:material:1.0.0'
|
|
}
|