iOS Question Install ipa from site

Status
Not open for further replies.

Pooya1

Active Member
Licensed User
Hi
With this files you can upload ipa file on your host and install app in mobile safari easily
Now
Please upload zip file content on host
Before upload edit some fields in file app.plist and index.html
 

Attachments

  • Install from url.zip
    761 bytes · Views: 400

MarcoRome

Expert
Licensed User
Longtime User
Can you exaplain better this field in app.plist and index.html with a little example ?

B4X:
 <string>[you app url here]</string>
 <string>com.apple.xcode.dsym.[app package name]
 <string>[app version]</string>
<string>[app title]</string>

example:

<string>[you app url here]</string> = ---> www.site.com
<string>com.apple.xcode.dsym.[app package name] ---> if you app have package name example.com is "com.example.xcode.dsym.example.com"
<string>[app version]</string> ---> is #Version
<string>[app title]</string> ---> is #ApplicationLabel

in index.html

"itms-services://?action=download-manifest&amp;url=[your url]/app.plist"
Example:
you must copy the app.list file under the directory of your site ( example name site: example.com. Type you have a folder on the site called "download", under the folder copy the app.list file the path will be:
"itms-services://?action=download-manifest&amp;url=https://example.com/download/app.plist"

Thank you
 
Upvote 0

Pooya1

Active Member
Licensed User
Please upload ipa file to your host example /public_html/app

Now edit app.plist file :
replace [you app url here] with http://yourdomain.com/app/app.ipa (app.ipa is your file)
replace [app version] with app version that you seted in B4i
replace [app title] with your app title that seted in B4i

And edit index.html
Replace [your url] with app.plist path,example http://yourdomain.com/app/
And upload app.plist and index.html to /public_html/app

Now you can install app in your device
 
Upvote 0

MarcoRome

Expert
Licensed User
Longtime User
Upvote 0

Modern_Digital

Member
Licensed User
Longtime User
Please upload ipa file to your host example /public_html/app

Now edit app.plist file :
replace [you app url here] with http://yourdomain.com/app/app.ipa (app.ipa is your file)
replace [app version] with app version that you seted in B4i
replace [app title] with your app title that seted in B4i

And edit index.html
Replace [your url] with app.plist path,example http://yourdomain.com/app/
And upload app.plist and index.html to /public_html/app

Now you can install app in your device

Thank you very much, This is what i am looking for.
 
Upvote 0
Status
Not open for further replies.
Top