Skip to content

Commit

Permalink
Fix LoginActivity theming
Browse files Browse the repository at this point in the history
Due to recent updates on upstream side, LoginActivity
was crashing.

Using the default application theme fixes the issue.
  • Loading branch information
jonathanklee committed Oct 13, 2022
1 parent 2278246 commit 8144e9f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
3 changes: 1 addition & 2 deletions play-services-core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,7 @@
android:name="org.microg.gms.auth.login.LoginActivity"
android:configChanges="keyboardHidden|keyboard|orientation|screenSize"
android:exported="true"
android:process=":ui"
android:theme="@style/Theme.LoginBlue">
android:process=":ui">
<intent-filter>
<action android:name="com.google.android.gms.auth.login.LOGIN" />

Expand Down
5 changes: 0 additions & 5 deletions play-services-core/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@
<item name="android:divider">@color/divider_color</item>
</style>

<style name="Theme.LoginBlue" parent="AppTheme">
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
</style>

<style name="customToolbarTheme" parent="@style/ThemeOverlay.AppCompat.ActionBar">
<item name="colorControlNormal">@color/settings_theme_accent</item>
<item name="android:textColorPrimary">@color/primary_text_color</item>
Expand Down

0 comments on commit 8144e9f

Please sign in to comment.