Skip to content

Commit 86c0dee

Browse files
authored
Merge pull request #22 from OutSystems/feat/RDMR-331/statusbar-android15
RDMR-331 :: MABS 11 :: Cordova shell :: Status bar on Android 15
2 parents 2a749b4 + c746ce3 commit 86c0dee

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

framework/cdv-gradle-config-defaults.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"MIN_SDK_VERSION": 28,
3-
"SDK_VERSION": 34,
3+
"SDK_VERSION": 35,
44
"COMPILE_SDK_VERSION": null,
55
"GRADLE_VERSION": "8.7",
6-
"MIN_BUILD_TOOLS_VERSION": "34.0.0",
6+
"MIN_BUILD_TOOLS_VERSION": "35.0.0",
77
"AGP_VERSION": "8.3.0",
88
"KOTLIN_VERSION": "1.9.24",
99
"ANDROIDX_APP_COMPAT_VERSION": "1.6.1",

templates/project/res/values/themes.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
specific language governing permissions and limitations
1818
under the License.
1919
-->
20-
<resources>
20+
<resources xmlns:tools="http://schemas.android.com/tools">
2121
<style name="Theme.App.SplashScreen" parent="Theme.SplashScreen.IconBackground">
2222
<!-- Optional: Set the splash screen background. (Default: #FFFFFF) -->
2323
<item name="windowSplashScreenBackground">@color/cdv_splashscreen_background</item>
@@ -30,5 +30,8 @@
3030

3131
<!-- Required: Set the theme of the Activity that directly follows your splash screen. -->
3232
<item name="postSplashScreenTheme">@style/Theme.AppCompat.NoActionBar</item>
33+
34+
<!-- Disables the edge-to-edge enforcement. This is required to keep the status bar plugin working as expected when the status bar does not overlays webview. -->
35+
<item name="android:windowOptOutEdgeToEdgeEnforcement" tools:ignore="NewApi">true</item>
3336
</style>
3437
</resources>

0 commit comments

Comments
 (0)