-
Notifications
You must be signed in to change notification settings - Fork 0
feat: support offline fist sync #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,9 @@ | ||
| [versions] | ||
| firebaseBomVersion = "34.9.0" | ||
| supabaseBomVersion = "3.4.0" | ||
| constraintlayoutVersion = "2.2.1" | ||
| contourVersion = "1.1.0" | ||
| filamentAndroidVersion = "1.69.2" | ||
| filamentAndroidVersion = "1.69.4" | ||
| jcodecVersion = "0.2.5" | ||
| jsoupVersion = "1.22.1" | ||
| kotlinxCoroutinesCoreVersion = "1.10.2" | ||
|
|
@@ -28,8 +30,10 @@ activityComposeVersion = "1.12.4" | |
| composeBomVersion = "2026.02.00" | ||
| navigationComposeVersion = "2.9.7" | ||
| ktlint = "14.0.1" | ||
| runtimeVersion = "1.10.3" | ||
| runtimeVersion = "1.10.4" | ||
| composeCompilerVersion = "1.5.14" | ||
| crashlyticsVersion = "3.0.6" | ||
| googleServicesVersion = "4.4.4" | ||
|
|
||
| [libraries] | ||
| androidx-constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayoutVersion" } | ||
|
|
@@ -39,12 +43,14 @@ androidx-lifecycle-viewmodel-ktx = { module = "androidx.lifecycle:lifecycle-view | |
| contour = { module = "app.cash.contour:contour", version.ref = "contourVersion" } | ||
| filament-android = { module = "com.google.android.filament:filament-android", version.ref = "filamentAndroidVersion" } | ||
| filament-utils-android = { module = "com.google.android.filament:filament-utils-android", version.ref = "filamentAndroidVersion" } | ||
| firebase-crashlytics = { module = "com.google.firebase:firebase-crashlytics" } | ||
| gltfio-android = { module = "com.google.android.filament:gltfio-android", version.ref = "filamentAndroidVersion" } | ||
| google-android-material = { group = "com.google.android.material", name = "material", version.ref = "material_version" } | ||
|
|
||
| androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycle_runtime_ktx" } | ||
| androidx-work-runtime-ktx = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "work_version" } | ||
|
|
||
| google-firebase-analytics = { module = "com.google.firebase:firebase-analytics" } | ||
| jcodec = { module = "org.jcodec:jcodec", version.ref = "jcodecVersion" } | ||
| jcodec-android = { module = "org.jcodec:jcodec-android", version.ref = "jcodecVersion" } | ||
| jsoup = { module = "org.jsoup:jsoup", version.ref = "jsoupVersion" } | ||
|
|
@@ -81,13 +87,25 @@ androidx-navigation-compose = { group = "androidx.navigation", name = "navigatio | |
| androidx-compose-runtime = { group = "androidx.compose.runtime", name = "runtime", version.ref = "runtimeVersion" } | ||
| compose-material-icons-extended = { module = "androidx.compose.material:material-icons-extended" } | ||
|
|
||
| supabase-bom = { module = "io.github.jan-tennert.supabase:bom", version.ref = "supabaseBomVersion" } | ||
| supabase-auth-kt = { module = "io.github.jan-tennert.supabase:auth-kt" } | ||
| supabase-postgrest-kt = { module = "io.github.jan-tennert.supabase:postgrest-kt" } | ||
| supabase-realtime-kt = { module = "io.github.jan-tennert.supabase:realtime-kt" } | ||
|
|
||
| firebase-bom = { module = "com.google.firebase:firebase-bom", version.ref = "firebaseBomVersion" } | ||
| firebase-analytics = { module = "com.google.firebase:firebase-analytics" } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WARNING: Duplicate Firebase Analytics library definition
|
||
| firebase-auth = { module = "com.google.firebase:firebase-auth" } | ||
| firebase-firestore = { module = "com.google.firebase:firebase-firestore" } | ||
|
|
||
| [plugins] | ||
| android-application = { id = "com.android.application", version.ref = "agpVersion" } | ||
| android-library = { id = "com.android.library", version.ref = "agpVersion" } | ||
| kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlinVersion" } | ||
| kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlinVersion" } | ||
| kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlinVersion" } | ||
| ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint" } | ||
| google-services = { id = "com.google.gms.google-services", version.ref = "googleServicesVersion" } | ||
| crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "crashlyticsVersion" } | ||
|
|
||
| [bundles] | ||
| androidx = [ | ||
|
|
@@ -141,4 +159,16 @@ compose = [ | |
| "androidx-ui-tooling-preview", | ||
| "androidx-material3", | ||
| "androidx-compose-runtime" | ||
| ] | ||
| supabase = [ | ||
| "supabase-auth-kt", | ||
| "supabase-postgrest-kt", | ||
| "supabase-realtime-kt", | ||
| "ktor-client-cio", | ||
| ] | ||
| firebase = [ | ||
| "firebase-auth", | ||
| "firebase-firestore", | ||
| "firebase-crashlytics", | ||
| "google-firebase-analytics" | ||
| ] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,9 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
|
||
| <application> | ||
| <provider | ||
| android:name=".infra.DeviceInfoInitializer" | ||
| android:authorities="${applicationId}.device-info-init" | ||
| android:exported="false" /> | ||
| </application> | ||
| </manifest> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WARNING: Duplicate
firebase-analyticslibrary aliasfirebase-analytics(line 96) andgoogle-firebase-analytics(line 53) both resolve to the same artifactcom.google.firebase:firebase-analytics. Thefirebasebundle referencesgoogle-firebase-analytics, sofirebase-analyticsis unused and will cause confusion. Remove the duplicate:Delete line 96 (
firebase-analytics = { module = "com.google.firebase:firebase-analytics" }) to avoid the redundant alias.