File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 81
81
<!-- need to use Theme.AppCompat -->
82
82
<activity
83
83
android : name =" com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
84
- android : theme =" @style/Theme.AppCompat " />
84
+ android : theme =" @style/AppCompatAndroidify " />
85
85
86
86
<!-- needs to use Theme.AppCompat -->
87
87
<activity
88
88
android : name =" com.google.android.gms.oss.licenses.OssLicensesActivity"
89
- android : theme =" @style/Theme.AppCompat " />
89
+ android : theme =" @style/AppCompatAndroidify " />
90
90
</application >
91
91
92
92
</manifest >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <!--
3
+ Copyright 2025 The Android Open Source Project
4
+
5
+ Licensed under the Apache License, Version 2.0 (the "License");
6
+ you may not use this file except in compliance with the License.
7
+ You may obtain a copy of the License at
8
+
9
+ https://www.apache.org/licenses/LICENSE-2.0
10
+
11
+ Unless required by applicable law or agreed to in writing, software
12
+ distributed under the License is distributed on an "AS IS" BASIS,
13
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ See the License for the specific language governing permissions and
15
+ limitations under the License.
16
+ -->
17
+ <resources >
18
+
19
+ <style name =" AppCompatAndroidify" parent =" Theme.AppCompat.DayNight" >
20
+ <item name =" android:windowTranslucentStatus" >false</item >
21
+ <item name =" android:windowDrawsSystemBarBackgrounds" >true</item >
22
+ <item name =" android:statusBarColor" >@android:color/white</item >
23
+ <item name =" android:fitsSystemWindows" >true</item >
24
+ <!-- https://github.com/google/play-services-plugins/issues/296 -->
25
+ <item name =" android:windowOptOutEdgeToEdgeEnforcement" >true</item >
26
+ <item name =" android:windowLightStatusBar" >true</item >
27
+ </style >
28
+ </resources >
Original file line number Diff line number Diff line change 17
17
<resources >
18
18
19
19
<style name =" Theme.Androidify" parent =" android:Theme.Material.Light.NoActionBar" />
20
+
21
+ <style name =" AppCompatAndroidify" parent =" Theme.AppCompat.DayNight" >
22
+ <item name =" android:windowTranslucentStatus" >false</item >
23
+ <item name =" android:windowDrawsSystemBarBackgrounds" >true</item >
24
+ <item name =" android:statusBarColor" >@android:color/white</item >
25
+ <item name =" android:fitsSystemWindows" >true</item >
26
+ <item name =" android:windowLightStatusBar" >true</item >
27
+ </style >
20
28
</resources >
You can’t perform that action at this time.
0 commit comments