test
This commit is contained in:
@@ -18,7 +18,6 @@ android {
|
||||
minSdk = 24
|
||||
targetSdk = 36
|
||||
|
||||
// Incrémentation automatique du versionCode basé sur le temps
|
||||
versionCode = (System.currentTimeMillis() / 60000).toInt()
|
||||
versionName = "1.0." + (System.currentTimeMillis() / 3600000).toString().takeLast(3)
|
||||
|
||||
@@ -26,7 +25,6 @@ android {
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
// Chargement des propriétés depuis local.properties
|
||||
val keystoreProperties = Properties()
|
||||
val keystorePropertiesFile = rootProject.file("local.properties")
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
@@ -35,9 +33,9 @@ android {
|
||||
|
||||
getByName("debug") {
|
||||
storeFile = file(System.getProperty("user.home") + "/.android/debug.keystore")
|
||||
getByName("debug").storePassword = "android"
|
||||
getByName("debug").keyAlias = "androiddebugkey"
|
||||
getByName("debug").keyPassword = "android"
|
||||
storePassword = "android"
|
||||
keyAlias = "androiddebugkey"
|
||||
keyPassword = "android"
|
||||
}
|
||||
|
||||
create("release") {
|
||||
@@ -53,7 +51,7 @@ android {
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
isMinifyEnabled = true // Activer l'offuscation
|
||||
isMinifyEnabled = true
|
||||
signingConfig = signingConfigs.getByName("release")
|
||||
proguardFiles(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
@@ -111,9 +109,7 @@ dependencies {
|
||||
implementation(libs.androidx.compose.material3)
|
||||
implementation(libs.androidx.compose.material.icons.extended)
|
||||
|
||||
// SDK Firebase App Distribution COMPLET (API + Implémentation)
|
||||
implementation(libs.firebase.appdistribution)
|
||||
|
||||
implementation(libs.google.generativeai)
|
||||
implementation(libs.coil.compose)
|
||||
implementation(libs.androidx.exifinterface)
|
||||
@@ -133,17 +129,13 @@ dependencies {
|
||||
implementation(libs.firebase.firestore)
|
||||
implementation(libs.firebase.appcheck.playintegrity)
|
||||
|
||||
// Barcode Scanning & Camera
|
||||
implementation(libs.mlkit.barcode.scanning)
|
||||
implementation(libs.androidx.camera.core)
|
||||
implementation(libs.androidx.camera.camera2)
|
||||
implementation(libs.androidx.camera.lifecycle)
|
||||
implementation(libs.androidx.camera.view)
|
||||
|
||||
// PDF generation
|
||||
implementation(libs.itext7.core)
|
||||
|
||||
// Security
|
||||
implementation(libs.androidx.security.crypto)
|
||||
|
||||
testImplementation(libs.junit)
|
||||
|
||||
Reference in New Issue
Block a user