You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Before building a release APK of your app, if you have enabled minification, make sure to annotate your table data classes with @Keep. This will prevent the class from being removed at runtime.
73
+
```kotlin
74
+
@Keep
75
+
data classUser(
76
+
valname:String,
77
+
valemail:Int,
78
+
valcity:String
79
+
)
80
+
```
81
+
69
82
# Want a new shiny feature 🪩✨
70
83
- If you want to request a new feature please first read this [short guide](https://github.com/Breens-Mbaka/BeeTablesCompose/blob/master/.github/ISSUE_TEMPLATE/feature_request.md)
0 commit comments