Files
sensTools/android/app/proguard-rules.pro
T
hm 15c5fb4dbd feat: Add Android project structure and documentation
- Add Software Design Specification (Word)
- Add Software Test Plan (Word)
- Create Android project with Kotlin + Clean Architecture
- Implement MVVM pattern with ViewModels
- Create Dashboard, Data, Map, Settings fragments
- Add custom ArtificialHorizonView for flight display
- Configure navigation and bottom navigation
- Add GPS and sensor data collection service
2026-05-24 10:24:34 +08:00

10 lines
318 B
Prolog

# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /sdk/tools/proguard/proguard-android.txt
# Keep data classes
-keepclassmembers class com.senstools.domain.model.** { *; }
# Keep ViewModels
-keep class * extends androidx.lifecycle.ViewModel { *; }