Robert Valentino Well-Known Member Licensed User Longtime User Thursday at 8:39 PM #1 Trying to do this in my manifest B4X: AddManifestText( <application> <property android:name="android.window.PROPERTY_COMPAT_ALLOW_RESIZEABLE_ACTIVITY_OVERRIDES" android:value="false"/> </application> ) App compiles perfectly but never starts
Trying to do this in my manifest B4X: AddManifestText( <application> <property android:name="android.window.PROPERTY_COMPAT_ALLOW_RESIZEABLE_ACTIVITY_OVERRIDES" android:value="false"/> </application> ) App compiles perfectly but never starts
Erel B4X founder Staff member Licensed User Longtime User Friday at 5:37 AM #2 This code creates another <application> node, resulting with two nodes. This is wrong. If you want to add text inside the application node: B4X: AddApplicationText(<property android:name="android.window.PROPERTY_COMPAT_ALLOW_RESIZEABLE_ACTIVITY_OVERRIDES" android:value="false"/>) Upvote 0
This code creates another <application> node, resulting with two nodes. This is wrong. If you want to add text inside the application node: B4X: AddApplicationText(<property android:name="android.window.PROPERTY_COMPAT_ALLOW_RESIZEABLE_ACTIVITY_OVERRIDES" android:value="false"/>)