-
Notifications
You must be signed in to change notification settings - Fork 15
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
Bookmarking Stories to Read Later #74
Conversation
2 builds increased size
Hacker News 1.0 (1)
|
Item | Install Size Change | Download Size Change |
---|---|---|
📝 androidx.room.RoomOpenHelper | ⬆️ 4.3 kB | ⬆️ 1.9 kB |
androidx.tracing.Trace | ⬇️ -3.8 kB | ⬇️ -1.7 kB |
📝 kotlin.collections.builders.MapBuilder | ⬆️ 3.6 kB | ⬆️ 1.7 kB |
kotlin.text.CharsKt | ⬆️ 3.4 kB | ⬆️ 1.5 kB |
📝 androidx.compose.material3.NavigationBarKt | ⬆️ 3.4 kB | ⬆️ 1.5 kB |
Hacker News 1.0 (1)
com.emergetools.hackernews.debug
⚖️ Compare build
⏱️ Analyze build performance
Total install size change: ⬆️ 504.4 kB (1.84%)
Total download size change: ⬆️ 191.3 kB (2.04%)
Largest size changes
Item | Install Size Change | Download Size Change |
---|---|---|
📝 androidx.room.InvalidationTracker | ⬆️ 5.8 kB | ⬆️ 2.0 kB |
📝 androidx.room.RoomDatabase | ⬆️ 5.2 kB | ⬆️ 1.8 kB |
📝 androidx.room.util.TableInfoKt | ⬆️ 4.8 kB | ⬆️ 1.7 kB |
📝 androidx.room.RoomDatabase$Builder | ⬆️ 4.3 kB | ⬆️ 1.5 kB |
📝 androidx.room.QueryInterceptorDatabase | ⬆️ 4.1 kB | ⬆️ 1.4 kB |
🛸 Powered by Emerge Tools
Comment trigger: Size diff threshold of 100.00kB exceeded
📸 Snapshot Test3 modified, 2 added, 8 unchanged
🛸 Powered by Emerge Tools |
⏱ Performance AnalysisHacker News
🛸 Powered by Emerge Tools |
android/app/build.gradle.kts
Outdated
@@ -27,6 +28,11 @@ android { | |||
debug { | |||
isDebuggable = true | |||
applicationIdSuffix = ".debug" | |||
} | |||
create("fast") { |
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.
Nit on the indent
With this diff, I'm taking a pass at bookmarking functionality. This required adding some infrastructure, namely Room as our local database.
The action is wired up to a long press for now, which will allow you to bookmark / unbookmark a story. There is also a separate screen and bottom nav item for bookmarks so we can easily navigate there.