- Backend: ShallowEtagHeaderFilter for /api/v1/*, API-VERSIONING.md, README (tenant, CORS, Flyway, ETag) - k8s: backend-deployment.yaml (Deployment, Service, Secret/ConfigMap) - Web: scaffold with directory pull, 304 handling, touch-friendly UI - Android 16: ANDROID-16-TARGET.md; BuildConfig STUN/signaling, SMOAApplication configures InfrastructureManager - Domain: CertificateManager revocation stub, ReportService signReports, ZeroTrust/ThreatDetection minimal docs - TODO.md and IMPLEMENTATION_STATUS.md updated; communications README for endpoint config Co-authored-by: Cursor <cursoragent@cursor.com>
737 B
737 B
Android 16 target (compileSdk / targetSdk 36)
- Android 16 uses API level 36. The app currently uses compileSdk 34 and targetSdk 34 and runs on Android 16 via compatibility behavior.
- To fully target Android 16 (opt into new behavior and APIs):
- Upgrade Android Gradle Plugin to 8.5 or 8.6+ (supports compileSdk 35/36). Update root
build.gradle.kts: e.g.id("com.android.application") version "8.6.0". - In buildSrc/.../AppConfig.kt, set
compileSdk = 36andtargetSdk = 36. - Sync and fix any deprecations or API changes.
- Test on a device or emulator with Android 16 (API 36).
- Upgrade Android Gradle Plugin to 8.5 or 8.6+ (supports compileSdk 35/36). Update root
Until then, minSdk 24 and targetSdk 34 remain; the app is forward compatible on Android 16.