Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ secrets/APNAuthKey.p8
secrets/match_ci_key
secrets/match_ci_key.pub
fastlane/metadata/
fastlane/fastlane/metadata/
Comment thread
niyajali marked this conversation as resolved.
fastlane/screenshots/
fastlane/age_rating.json
# Ruby stuff we don't care about
Expand Down
1 change: 1 addition & 0 deletions cmp-android/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
-dontwarn org.conscrypt.**
-dontwarn org.bouncycastle.**
-dontwarn org.openjsse.**
-keep class * extends androidx.room.RoomDatabase { <init>(); }
4 changes: 3 additions & 1 deletion cmp-desktop/compose-desktop.pro
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,6 @@
# see https://github.com/Kotlin/kotlinx.serialization/issues/2719
-keepclassmembers public class **$$serializer {
private ** descriptor;
}
}

-keep class * extends androidx.room.RoomDatabase { <init>(); }
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ class AppDatabaseFactory(
* - Add appropriate type converters for complex data types
* - Configure database callbacks for initialization or validation logic
*/
fun <T : RoomDatabase> createDatabase(databaseClass: Class<T>, databaseName: String): RoomDatabase.Builder<T> {
fun <T : RoomDatabase> createDatabase(
databaseClass: Class<T>,
databaseName: String,
): RoomDatabase.Builder<T> {
return Room.databaseBuilder(
context.applicationContext,
databaseClass,
Expand Down
Loading
Loading