T Turbo3 Active Member Licensed User Longtime User Sep 22, 2016 #1 For Android 7 I need to add the following line to the Manifest to say if my app supports the new split screen mode. android:resizeableActivity="true" I have tried adding the following line but get the following error message. Added: SetApplicationAttribute(android:resizeableActivity, "true") Get Error: AndroidManifest.xml:37: error: No resource identifier found for attribute 'resizeableActivity' in package 'android'
For Android 7 I need to add the following line to the Manifest to say if my app supports the new split screen mode. android:resizeableActivity="true" I have tried adding the following line but get the following error message. Added: SetApplicationAttribute(android:resizeableActivity, "true") Get Error: AndroidManifest.xml:37: error: No resource identifier found for attribute 'resizeableActivity' in package 'android'
Erel B4X founder Staff member Licensed User Longtime User Sep 23, 2016 #2 Try this: 1. B4X: SetActivityAttribute(Main, android:resizeableActivity, "true") 2. Use android.jar from platform-24 under Tools - Configure Paths. Upvote 0
Try this: 1. B4X: SetActivityAttribute(Main, android:resizeableActivity, "true") 2. Use android.jar from platform-24 under Tools - Configure Paths.
T Turbo3 Active Member Licensed User Longtime User Sep 23, 2016 #3 Thanks Erel, that does it. Upvote 0