Android N Multi-Window Mode
The new multi-window mode in Android N causes our app to crash, so I was hoping to explicitly disable support for it by adding the android:resizeableActivity="false" attribute to the <application> element in our app descriptor (per Google's docs), however I'm running into packaging errors after making the change:
AndroidManifest.xml:15: error: No resource identifier found for attribute 'resizeableActivity' in package 'android'
I've tried adding the attribute to the main <activity> element instead of the <application> element, as well as setting the targetSdkVersion to "24" and even replaced the aapt binary in the AIR SDK with the latest version from the Android SDK but to no avail. I'm thinking it may have something to do with the compileSdkVersion but I'm not sure how to set that for AIR.
We're currently using AIR 22, could it be we just need to update to AIR 24?
Anyone else have any idea how to do this? Any help or suggestions would be greatly appreciated.
Thanks!
Edit: Adding the android:resizeableActivity="false" attribute to the main <activity> element works and behaves as expected with AIR 24.
Message was edited by: Ben Slote
