Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Enterprise distribution prompt message says (null) would like to install {app name}

Tags:

ios

iphone

ipad

enter image description here

This is popup that come after hitting on server url.

I uploaded a Enterprise distribution iOS build on a server.Now when we try to download build then following pop up came.I want to replace null field to "[my domain name]".

I got a link on stack overflow for similar problem-

Ad-Hoc distribution prompt message says (null) would like to install {app name}

But in my case problem is arise in both cases either go through (Download) email or directly browse to a webpage which includes the link(server url where build had been uploaded).

Please suggest me solution. Thank you

like image 985
Dipak Avatar asked Jan 10 '13 08:01

Dipak


1 Answers

I resolved this issue.

Issue arise because we use single slace after http:/ in web page where give .plist path.

i.e.

<a href="itms-services://?action=download-manifest&url=http:/pathToYourServer/folder/applicationName.plist"> here </a>

Now changed, it become-:

<a href="itms-services://?action=download-manifest&url=http://pathToYourServer/folder/applicationName.plist"> here </a>

In instalation prompt domain name take first parameter between :// and /. So carefull when write url.

like image 56
Dipak Avatar answered Sep 26 '22 20:09

Dipak