Code-Guard/app/build.gradle

104 lines
3.2 KiB
Groovy
Raw Normal View History

2023-06-17 18:20:19 +02:00
plugins {
id 'com.android.application'
id 'com.google.protobuf'
2023-06-17 18:20:19 +02:00
}
android {
namespace 'com.cringe_studios.cringe_authenticator'
compileSdk 34
2023-06-17 18:20:19 +02:00
defaultConfig {
applicationId "com.cringe_studios.cringe_authenticator"
minSdk 21
targetSdk 34
2023-06-17 18:20:19 +02: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
}
buildFeatures {
viewBinding true
}
sourceSets {
main {
java {
srcDir "build/generated/source/proto/debug/javalite"
}
proto {
srcDir 'src/main/proto'
}
}
}
}
protobuf {
protoc {
2023-09-16 22:53:25 +02:00
artifact = 'com.google.protobuf:protoc:3.24.3'
}
generateProtoTasks {
all().each { task ->
task.builtins {
java {
option "lite"
}
}
}
}
2023-06-17 18:20:19 +02:00
}
dependencies {
constraints {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0") {
because("kotlin-stdlib-jdk7 is now a part of kotlin-stdlib")
}
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
}
}
2023-06-17 18:20:19 +02:00
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-livedata:2.6.2'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.6.2'
2023-09-24 16:27:44 +02:00
implementation 'androidx.navigation:navigation-fragment:2.7.3'
implementation 'androidx.navigation:navigation-ui:2.7.3'
2023-06-17 18:20:19 +02:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation "androidx.biometric:biometric:1.1.0"
2023-09-24 16:27:44 +02:00
implementation 'com.cringe_studios:CringeAuthenticatorLibrary:1.6'
implementation 'com.google.mlkit:barcode-scanning:17.2.0'
2023-09-19 23:05:22 +02:00
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'androidx.activity:activity:1.7.2'
2023-06-21 21:33:17 +02:00
2023-07-03 20:26:55 +02:00
def camerax_version = "1.2.3"
2023-06-21 21:33:17 +02:00
implementation "androidx.camera:camera-core:${camerax_version}"
implementation "androidx.camera:camera-camera2:${camerax_version}"
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
implementation "androidx.camera:camera-video:${camerax_version}"
implementation "androidx.camera:camera-view:${camerax_version}"
implementation "androidx.camera:camera-extensions:${camerax_version}"
implementation "androidx.exifinterface:exifinterface:1.3.6"
2023-09-16 22:53:25 +02:00
implementation 'com.google.protobuf:protobuf-javalite:3.24.3'
2023-09-17 19:22:24 +02:00
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'com.caverock:androidsvg-aar:1.4'
}