raphael
a72cc71cd9
- qr code is generated from text code - password is shown as well, when clicking on the 'view' icon - hides top view - removes floating button - display status is now in an own class
61 lines
2.0 KiB
Groovy
61 lines
2.0 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'kotlin-android'
|
|
}
|
|
|
|
android {
|
|
compileSdk 30
|
|
|
|
defaultConfig {
|
|
applicationId "com.maenle.bump"
|
|
minSdk 29
|
|
targetSdk 30
|
|
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'
|
|
implementation 'com.android.volley:volley:1.2.0'
|
|
implementation 'com.google.firebase:firebase-messaging-ktx:21.0.1'
|
|
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'
|
|
implementation "androidx.camera:camera-view:1.0.0-alpha20"
|
|
implementation 'com.macasaet.fernet:fernet-java8:1.4.2'
|
|
testImplementation 'junit:junit:4.+'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.3'
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services' // Google Play services Gradle plugin
|