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
4 changes: 0 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
path = lib/platform_frameworks_opt_chips
url = https://github.com/GrapheneOS-Archive/platform_frameworks_opt_chips
branch = main
[submodule "lib/platform_frameworks_opt_photoviewer"]
path = lib/platform_frameworks_opt_photoviewer
url = https://github.com/GrapheneOS-Archive/platform_frameworks_opt_photoviewer
branch = main
[submodule "lib/platform_frameworks_opt_vcard"]
path = lib/platform_frameworks_opt_vcard
url = https://github.com/GrapheneOS/platform_frameworks_opt_vcard
Expand Down
6 changes: 3 additions & 3 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@

<!-- Full-screen photo viewer -->
<activity
android:name=".ui.photoviewer.BuglePhotoViewActivity"
android:name=".ui.photoviewer.PhotoViewerActivity"
android:exported="false"
android:label="@string/photo_view_activity_title"
android:configChanges="orientation|screenSize|keyboardHidden"
android:screenOrientation="user"
android:theme="@style/BuglePhotoViewTheme"
android:theme="@style/Theme.Compose.Translucent"
/>

<!-- Settings -->
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ dependencies {
implementation(libs.androidx.photo.picker)

implementation(libs.coil.compose)
implementation(libs.coil.gif)
implementation(libs.coil.network.okhttp)
implementation(libs.glide)

Expand All @@ -197,7 +198,6 @@ dependencies {
implementation(libs.libphonenumber)

implementation(project(":lib:platform_frameworks_opt_chips"))
implementation(project(":lib:platform_frameworks_opt_photoviewer"))
implementation(project(":lib:platform_frameworks_opt_vcard"))

debugImplementation(libs.androidx.compose.ui.test.manifest)
Expand Down
Loading