Make Any App Work With Multi-View!!! No Root Needed

superlawyer15

Well-known member
Feb 14, 2011
576
50
0
Visit site
So, development for this phone is off to a bang only a few days in and we got root
but since its still an unstable process, someone on XDA has posted instructions for how to make any app work with multiview

no root needed!!!

[Tutorial] Add additional apps to Multi Window without needing root [Verizon] - xda-developers

Slightly more detailed guide:

1. download APK manager
Downloads | APK Multi-Tool

2. make a folder called apk manager on your desktop extract everything in the zip into that folder

3. download this
http://www.cvsquad.com/files/multiview/1.apk

4. Replace the file at the following path with the one you just downloaded:
C:\Users\(w/e your username is)\apktool\

5.open the apkmanager folder that you previously extracted to your desktop

6.drop the apk you want to modify into the folder called "place-apk-here-for-modding"

7.double click on the script file

8.Select option 9
wait for it to finish

9. go back to the apk manager folder and open the projects folder
inside, open the folder for the apk you are modifying
open the AndroidManifest file with notepad

10. find the first set of code that looks like this

<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>


and modify it so that it looks like this...


<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>


11. go all the way down to the bottom of the file and find this:
</application>

12. Add all this stuff before it so that it looks like this:

<uses-library required="false" name="com.sec.android.app.multiwindow" />
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W" android:value="632.0dip" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:value="598.0dip" />

</application>


13. Save the file in notepad

14. go back to the script and select option 11

15. When it asks if it is a system app press [N]

16. After it is all done, select option 12

17. When that is done select option 24 to quit

18.Go back to the APK Manager folder;
inside the "place-apk-here-for-modding" folder you will see a new apk that begins with the word "signed"

19.Take that apk out and put it on your phone and install
 
Last edited:

Tari

Well-known member
Sep 15, 2010
113
0
0
Visit site
Hah, neat. I'd thought about that sort of thing before, but I never thought it would be quite so easy to decompile Android apps. Nice!
 

superlawyer15

Well-known member
Feb 14, 2011
576
50
0
Visit site
i havent tried to make my own yet

i've just download some of the ones at the bottom of the first post that have already been made

i'm assuming u would have to download that program referenced in the first post and make the changes that way
 

sillyrabbitt123

Well-known member
Nov 3, 2012
228
0
0
Visit site
i havent tried to make my own yet

i've just download some of the ones at the bottom of the first post that have already been made

i'm assuming u would have to download that program referenced in the first post and make the changes that way

oh i see the links now thanks! are these files safe? thanks!
 

kslghost

Member
Oct 9, 2012
10
0
0
Visit site
This does seem to indicate that Verizon didn't remove multi-view from those apps, it simply never added those lines of code to the apps that aren't supported. I believe Chrome doesn't even come with the VZW Note 2 so that's something that could be added by Google?
 

jsadler09

Well-known member
Apr 26, 2010
62
0
0
Visit site
I saw this over there and have installed Chrome, Twitter, Netflix, and Skype. All 4 show up in multi-view. I've only tried Chrome and Twitter so far, but they work well. With Chrome and the stock browser I can watch a vide on YouTube.com while surfing. This is awesome!
 

gafly

Well-known member
Jul 9, 2010
487
15
0
Visit site
I'm thinking there needs to be a sticky thread made with all of the modified apps and their download links. I imagine this list will start getting much longer fairly quickly since it's so simple to do!
 

DroidXcon

Well-known member
Oct 21, 2010
11,102
3,392
0
Visit site
I'm thinking there needs to be a sticky thread made with all of the modified apps and their download links. I imagine this list will start getting much longer fairly quickly since it's so simple to do!

As soon as a note 2 adviser is appointed that will happen

From my Galaxy Note 2 via Tapatalk
 

sudbury78

Well-known member
Jul 21, 2011
393
0
0
Visit site
Reading the instructions gives me a headache. I'm so confused with terminology. I will have to find someone who knows android to help me.
 

superlawyer15

Well-known member
Feb 14, 2011
576
50
0
Visit site
its a very simple process
I made a slingplayer apk that now works in multi view

if you guys want me to make a noob step by step guide let me know