2023-06-17 18:20:19 +02:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
2023-07-17 20:50:29 +02:00
|
|
|
id 'com.google.protobuf'
|
2023-06-17 18:20:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace 'com.cringe_studios.cringe_authenticator'
|
|
|
|
compileSdk 33
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.cringe_studios.cringe_authenticator"
|
|
|
|
minSdk 21
|
|
|
|
targetSdk 33
|
|
|
|
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
|
|
|
|
}
|
2023-07-17 20:50:29 +02:00
|
|
|
|
|
|
|
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'
|
2023-07-17 20:50:29 +02:00
|
|
|
}
|
|
|
|
generateProtoTasks {
|
|
|
|
all().each { task ->
|
|
|
|
task.builtins {
|
|
|
|
java {
|
|
|
|
option "lite"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-17 18:20:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2023-06-26 21:13:35 +02:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-livedata:2.4.1'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.4.1'
|
2023-06-17 18:20:19 +02:00
|
|
|
implementation 'androidx.navigation:navigation-fragment:2.5.3'
|
|
|
|
implementation 'androidx.navigation:navigation-ui:2.5.3'
|
|
|
|
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-07-17 20:50:29 +02:00
|
|
|
implementation 'com.cringe_studios:CringeAuthenticatorLibrary:1.5'
|
2023-06-19 20:30:18 +02:00
|
|
|
implementation 'com.google.mlkit:barcode-scanning:17.1.0'
|
2023-06-21 21:33:17 +02:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.9'
|
|
|
|
|
|
|
|
|
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}"
|
2023-07-17 20:50:29 +02:00
|
|
|
|
2023-09-16 22:53:25 +02:00
|
|
|
implementation 'com.google.protobuf:protobuf-javalite:3.24.3'
|
2023-07-17 20:50:29 +02:00
|
|
|
}
|