We include Samsung Multi Window in another application
The new Samsung smartphones have a very interesting feature - Multi Windows. It allows you to simultaneously run two applications in one window. Unfortunately, apart from Samsung, this feature is not yet supported by anyone. But in fact, it is not so difficult to add to an existing application. It will look like this
We pack everything back into the apk file apktool.bat b ./com.safaribooksonline
The apk file will be created in the folder. \ com.safaribooksonline \ dist \ com.safaribooksonline.apk
Generate the key for signing the apk file (since the application will be signed with a non-original key, it will not be updated from google play) I took the name of Storaj and Alice from the SDK. But if you want you can change to something more original. keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
Sign the application with the generated key jarsigner -verbose -sigalg MD5withRSA -digestalg SHA1 -keystore my-release-key.keystore com.safaribooksonline.apk alias_name
Now the application can be installed on the device.
With the same ease, Multi windows support can be added to your new application. Plus a bunch of goodies with dragging and dropping content from one application to another.