Ok. So for those guyz who want to know how to install more than 2 of the same apps on the iPhone, continue reading. Otherwise you're in the wrong thread.
1) First of all, open iTunes and click on "Applications". I'm going to use the app called "Bloons" in this example. Right-click on it and chose "Show in Windows Explorer".
2) A folder should open where iTunes saves all of your iPA files. Make a copy of the iPA you want to modify and rename the extiontion to ".zip". E.g. if it is called "Bloons.ipa" rename it to "Bloons.zip".
3) Extract the archive in a new folder.
4) Go inside that folder, then "Payload" and then the "Bloons.app" folder (will vary depending on which iPA you are editing). You will see a bunch of files. Open the "Info.plist" file. I use something called "plist Editor for Windows" to edit such files. It can downloaded for free from HERE.
The main three things we are interested in are highlighted below.
5) Now we need to edit these three strings. The first one:
Quote:
<key>CFBundleDisplayName</key>
<string>Bloons</string>
|
This will determin the display name of the icon on the Springboard, as well as on iTunes' Application library. So call it what ever you want. Here is what I changed it to:
Quote:
<key>CFBundleDisplayName</key>
<string>Bloons2</string>
|
---------------
The second one:
Quote:
<key>CFBundleExecutable</key>
<string>Bloons</string>
|
This tells the iDevice what the executable file is called. In this case it's called "Bloons". Note that the executable files have NO EXTENTIONS! What ever you modify this into, you also have to rename the executable file (obviously).
Here is what I did:
Quote:
<key>CFBundleExecutable</key>
<string>Bloons2</string>
|
---------------
The third one:
Quote:
<key>CFBundleIdentifier</key>
<string>com.yourcompany.Bloons</string>
|
I guess this is a unique identifier the iDevice has for every app, but I wasn't sure. So I edited this anyway. This is what I edited it to:
Quote:
<key>CFBundleIdentifier</key>
<string>com.yourcompany.Bloons2</string>
|
6) Save and exit. Go one folder back i.e. where it should say "Bloons.app". Rename this to something like "Bloons2.app". Go further back where you only see the folder called "Payload" and a file called "iTunesArtwork". Highlight both items and right click on them. I assume you already have WinRAR installed, select "Add to archive".
Use the settings below:
Make sure it's a .zip file, NOT .rar!
7) Rename the new archive from "Bloons2.zip" to something like "Bloons2.ipa". Once that's done, just double click on the file and it should automatically add it to the Applications library in iTunes.
8) Sync and voila, if you have done everything correctly, you should have the same app installed twice! Please note that this ALSO means that if you play the normal app, in this case Bloons, and save where ever you are, let's say level 10, you will NOT have the same savegame on the new app, Bloons2! They both have their seperate folders/savegame locations!!!
If this has helped you, please hit the thanks button.
