patbef-Android/app/build.gradle

56 lines
1.9 KiB
Groovy
Raw Normal View History

2024-01-29 16:26:13 +01:00
plugins {
id 'com.android.application'
2024-09-17 12:58:57 +02:00
id 'com.google.gms.google-services'
2024-01-29 16:26:13 +01:00
}
android {
compileSdk 34
defaultConfig {
applicationId "de.labor_stein.befund"
2024-09-17 12:58:57 +02:00
minSdk 31
2024-01-29 16:26:13 +01:00
targetSdk 34
2024-09-17 12:58:57 +02:00
versionCode 13
versionName "1.11"
2024-01-29 16:26:13 +01:00
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
}
2024-09-17 12:58:57 +02:00
namespace 'de.labor_stein.befund'
2024-01-29 16:26:13 +01:00
}
dependencies {
2024-09-17 12:58:57 +02:00
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'
2024-01-29 16:26:13 +01:00
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2024-09-17 12:58:57 +02:00
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'
2024-01-29 16:26:13 +01:00
implementation 'org.whispersystems:curve25519-java:0.5.0'
2024-09-17 12:58:57 +02:00
implementation 'com.google.code.gson:gson:2.10.1'
2024-01-29 16:26:13 +01:00
implementation 'com.google.crypto.tink:tink-android:1.6.1'
implementation 'com.github.bumptech.glide:glide:4.9.0'
2024-09-17 12:58:57 +02:00
implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.1'
2024-01-29 16:26:13 +01:00
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
implementation("androidx.biometric:biometric:1.1.0")
2024-09-17 12:58:57 +02:00
implementation platform('com.google.firebase:firebase-bom:33.3.0')
2024-01-29 16:26:13 +01:00
}