Skip to content
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

[feature] Implement License Screen #883

Merged
merged 15 commits into from
Aug 26, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Switching theme based on device night module config
fumiya-kume committed Aug 24, 2023

Verified

This commit was signed with the committer’s verified signature. The key has expired.
fumiya-kume kuu(Fumiya Kume)
commit f318919669e6ce68c7d2e0949dc21efc60859d17
4 changes: 2 additions & 2 deletions app-android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -30,11 +30,11 @@

<activity
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Specify the AppCompat theme for the OSS license plugin's screen

android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" />
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar" />

<activity
android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" />
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar" />

</application>