Foundation work for the Android tablet POS app. Adds the singletons that every screen needs (config persistence, network awareness, auth) without touching the existing screen stubs yet — Phases B–F will build on these. - gradle: bcrypt 0.10.2 pinned (used in Phase C for offline PIN verify) - LoyaltyApi: + GET /api/v1/store/loyalty/categories endpoint - ApiModels: + category_ids on StampRequest / PointsEarnRequest, + CategoryItem / CategoryListResponse - DeviceConfigRepository: DataStore wrapper for the paired-tablet state (api_url, auth_token, store_id/code/name, cached program/pins/categories JSON, per-seller language, resetDevice()) - AuthInterceptor: rewrites every request's host to the paired api_url and adds Bearer auth — Retrofit keeps a placeholder baseUrl since the real URL only exists post-pair - NetworkMonitor: Flow<Boolean> isOnline from ConnectivityManager - StaffPinRepository / CategoryRepository: cache-or-refresh pattern, Moshi-serialized to DataStore - AppModule: wires AuthInterceptor before the logging interceptor - strings.xml: ~50 strings × 4 locales (en authoritative; fr/de/lb translated, mirroring the loyalty backend's i18n approach) Verified by ./gradlew assembleDebug — clean build, only pre-existing warnings (Theme statusBarColor deprecation, Moshi-kapt deprecation). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
112 lines
3.1 KiB
Kotlin
112 lines
3.1 KiB
Kotlin
plugins {
|
|
alias(libs.plugins.android.application)
|
|
alias(libs.plugins.kotlin.android)
|
|
alias(libs.plugins.kotlin.compose)
|
|
alias(libs.plugins.ksp)
|
|
alias(libs.plugins.hilt)
|
|
}
|
|
|
|
android {
|
|
namespace = "lu.rewardflow.terminal"
|
|
compileSdk = 35
|
|
|
|
defaultConfig {
|
|
applicationId = "lu.rewardflow.terminal"
|
|
minSdk = 26 // Android 8.0 — covers 95%+ of tablets
|
|
targetSdk = 35
|
|
versionCode = 1
|
|
versionName = "1.0.0"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
buildConfigField("String", "DEFAULT_API_URL", "\"http://10.0.2.2:8000\"")
|
|
}
|
|
release {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
buildConfigField("String", "DEFAULT_API_URL", "\"https://rewardflow.lu\"")
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
buildConfig = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// AndroidX Core
|
|
implementation(libs.androidx.core.ktx)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.material)
|
|
|
|
// Compose
|
|
implementation(platform(libs.compose.bom))
|
|
implementation(libs.compose.ui)
|
|
implementation(libs.compose.ui.graphics)
|
|
implementation(libs.compose.ui.tooling.preview)
|
|
implementation(libs.compose.material3)
|
|
implementation(libs.compose.material.icons)
|
|
implementation(libs.activity.compose)
|
|
implementation(libs.navigation.compose)
|
|
implementation(libs.lifecycle.runtime.compose)
|
|
implementation(libs.lifecycle.viewmodel.compose)
|
|
debugImplementation(libs.compose.ui.tooling)
|
|
|
|
// Networking (Retrofit + Moshi)
|
|
implementation(libs.retrofit)
|
|
implementation(libs.retrofit.moshi)
|
|
implementation(libs.okhttp)
|
|
implementation(libs.okhttp.logging)
|
|
implementation(libs.moshi)
|
|
ksp(libs.moshi.codegen)
|
|
|
|
// Room (offline database)
|
|
implementation(libs.room.runtime)
|
|
implementation(libs.room.ktx)
|
|
ksp(libs.room.compiler)
|
|
|
|
// WorkManager (background sync)
|
|
implementation(libs.work.runtime.ktx)
|
|
|
|
// Hilt (dependency injection)
|
|
implementation(libs.hilt.android)
|
|
ksp(libs.hilt.compiler)
|
|
implementation(libs.hilt.navigation.compose)
|
|
implementation(libs.hilt.work)
|
|
|
|
// CameraX + ML Kit (QR scanning)
|
|
implementation(libs.camera.core)
|
|
implementation(libs.camera.camera2)
|
|
implementation(libs.camera.lifecycle)
|
|
implementation(libs.camera.view)
|
|
implementation(libs.mlkit.barcode)
|
|
|
|
// DataStore (device config persistence)
|
|
implementation(libs.datastore.preferences)
|
|
|
|
// bcrypt (verify staff PIN hashes locally — pure Java, no native deps)
|
|
implementation(libs.bcrypt)
|
|
|
|
// Testing
|
|
testImplementation(libs.junit)
|
|
androidTestImplementation(libs.junit.android)
|
|
androidTestImplementation(libs.espresso.core)
|
|
}
|