2021-12-12 15:44:30 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'kotlin-android'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-12-16 12:21:17 +01:00
|
|
|
compileSdk 30
|
2021-12-12 15:44:30 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-12-12 15:51:52 +01:00
|
|
|
applicationId "com.maenle.bump"
|
2021-12-12 15:44:30 +01:00
|
|
|
minSdk 29
|
2021-12-16 12:21:17 +01:00
|
|
|
targetSdk 30
|
2021-12-12 15:44:30 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation 'com.google.android.gms:play-services-mlkit-barcode-scanning:16.1.4'
|
2021-12-16 12:21:17 +01:00
|
|
|
implementation 'com.android.volley:volley:1.2.0'
|
2021-12-30 13:08:52 +01:00
|
|
|
implementation 'com.google.firebase:firebase-messaging-ktx:21.0.1'
|
2021-12-12 15:44:30 +01:00
|
|
|
def camerax_version = "1.0.2"
|
|
|
|
implementation 'androidx.core:core-ktx:1.3.2'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
|
|
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
|
|
|
|
implementation "androidx.camera:camera-camera2:$camerax_version"
|
|
|
|
implementation "androidx.camera:camera-lifecycle:$camerax_version"
|
|
|
|
implementation 'com.google.zxing:core:3.3.0'
|
2021-12-16 12:21:17 +01:00
|
|
|
implementation "androidx.camera:camera-view:1.0.0-alpha20"
|
2021-12-13 23:41:08 +01:00
|
|
|
implementation 'com.macasaet.fernet:fernet-java8:1.4.2'
|
2021-12-12 15:44:30 +01:00
|
|
|
testImplementation 'junit:junit:4.+'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
2022-01-06 17:49:26 +01:00
|
|
|
implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.3'
|
2021-12-30 13:08:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin
|