K kalaleh1 Member May 4, 2025 #1 Hi Why does the app go full screen on API 35? B4X: #Region Activity Attributes #FullScreen: False #IncludeTitle: False #End Region B4X: AddManifestText( <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"/>) SetApplicationAttribute(android:icon, "@drawable/icon") SetApplicationAttribute(android:label, "$LABEL$") CreateResourceFromFile(Macro, Themes.LightTheme)
Hi Why does the app go full screen on API 35? B4X: #Region Activity Attributes #FullScreen: False #IncludeTitle: False #End Region B4X: AddManifestText( <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"/>) SetApplicationAttribute(android:icon, "@drawable/icon") SetApplicationAttribute(android:label, "$LABEL$") CreateResourceFromFile(Macro, Themes.LightTheme)
Erel B4X founder Staff member Licensed User Longtime User May 5, 2025 #2 You should set the targetSdkVersion to 34 for now. Upvote 0 Solution