plugins { id 'com.android.application' id 'com.google.gms.google-services' } android { compileSdk 34 defaultConfig { applicationId "de.labor_stein.befund" minSdk 31 targetSdk 34 versionCode 13 versionName "1.11" 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 } buildFeatures { viewBinding true } namespace 'de.labor_stein.befund' } dependencies { implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.navigation:navigation-fragment:2.8.0' implementation 'androidx.navigation:navigation-ui:2.8.0' implementation 'com.google.firebase:firebase-messaging:24.0.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.camera:camera-core:1.5.0-alpha01' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.2.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' implementation 'org.whispersystems:curve25519-java:0.5.0' implementation 'com.google.code.gson:gson:2.10.1' implementation 'com.google.crypto.tink:tink-android:1.6.1' implementation 'com.github.bumptech.glide:glide:4.9.0' implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.1' implementation 'com.journeyapps:zxing-android-embedded:4.3.0' implementation("androidx.biometric:biometric:1.1.0") implementation platform('com.google.firebase:firebase-bom:33.3.0') }