As I'm not using the affilate stuff, I implemented the Smart App Banner on my website like this:
<meta name="apple-itunes-app" content="app-id=...">
On my iPad Mini (iOS 7.0.2) it's showing up without any problem, on my iPhone 5 (same version) it's not showing up.
Both got the app installed already (the banner should show "Open").
Do you know what could be wrong?
Thank you!
Just a heads up, these banners only show on safari, no other ios browsers .
Related
I know that for Android it's possible to use Chrome://inspect to view the phone screen on your desktop. Clicking there is equal to tapping on the phone.
It's fine for browsers and after 4.4 - for apps that have some special lines of code inserted.
Whether it's possible for iPhone / iPad?
i.e. I have a REAL device with latest OS installed, which screen I'd like to be shown on MAC + clicking on the items on the screen will be equal to tappping on the phone.
XCode iOS Simulator - I am somewhat surprised you missed this part of the IDE.
It seems that this is not possible.
I have an application made with ios phonegap in itunnes connect. When making a new version of the application I had to adjust it to iphone5. For this, I updated the version of phonegap to 2.8.0 and I have introduced the splash required for the application was validated to iphone5. Once in the itunnes connect the version 2 of the application I noticed that it looks bad on iphone 5 devices .The app is cut off at the bottom as shown in the image (white rectangle). In iphone 4 works perfectly as shown in the picture.
Does anyone know how to fix this issue? thanks!!
I finally found the solution to this problem. The HTML5 framework I was using (DHTMLX), has a problem that the new iphone5.
In this forum it is solved: http://forum.dhtmlx.com/viewtopic.php?f=22&t=27550
I has recently submitted my iPhone app to App Store , which is compatible with iPhone 3GS and above and is optimised for iPhone 5. While submitting, I had added 1 screen shot for 4 inch screen and 5 screenshots for 3.5 inch screen. You can refer the picture below to get a better idea about the the list of images that i had added:
The issue is,
while accessing appstore through any mobile device , I can see all the screenshots for my app, but when i access appstore from Computer, only the 4 inch retina display screen shots are visible!
has anyone faced the same issue before?
Thanks
Actually it's because on below reason:
in iTunes of Computer/Mac, it will show iPhone5 & iPad devices (not iPhone4). Because iPhone5 is latest.
Now, when you will open your app in physical device, let's say iPhone4, then it will show iPhone4 screens.
Same, if you will open your app in iPad then it will show iPad screens.
Hope you got the point.
Cheers.
iTunes shows the latest device's screenshots.
Yes it's correct.
By default Apple show screenshot of devices which are latest on Market.
So, as iPhone 5 is latest on Market, it shows screenshot of iPhone 5 only on iTunes of computer.
If you see same from your device, screenshots of your device will be shows respectively.
Hope this info helps you..
By default Apple show screenshot of devices which are latest on Market.
If your don't want to show 4 inch retina display screen shots then just remove this from itunesconnect , only submit 3.5-Inch Retina Display Screenshots
i just submitted an update of my App iJobber. I have no iPhone 5 so i only tried it out with the simulator and everything seemed to look good on new iPhones.
But after submitting the App and downloading it on a friends iPhone 5, it only shows the 3,5'' UI and not the special one for the bigger screen.
Whats happening? What can be wrong?
Thanks
In order to trigger the slightly taller "iPhone 5" mode on device, you need to include a Default-568h#2x.png file.
I just released an iPhone app today. I have also implemented Apple's Smart Banners on my website.
If the app is ONLY an iPhone app (although it will run at 2x on an iPad, but is NOT a Universal app), should the Smart Banner be showing when the webpage is viewed on an iPad?
According to the docs (link above) the Smart Banner will determine if it should be displayed on the device.
Question: Should the banner be displaying for an iPhone app only when viewing the webpage on an iPad?
If you want to show the smart banner detecting iPhone vs iPad, insert the following code just before the tag:
<script>
if (navigator.userAgent.match(/iPad/i)) {
$('head').append("<meta name='apple-itunes-app' content='app-id=XXYYZZ, app-argument=ios-promo'>");
} else if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) {
$('head').append("<meta name='apple-itunes-app' content='app-id=PPQQRR, app-argument=ios-promo'>");
}
</script>
Since the script is executed before closing the tag, it will be executed as part of the page load and iOS 6 will recognize it.
I don't exactly get your question. If you mean 'will the Banner show up on an iPad?', then the answer is yes, the Banner for an iPhone-only (not Universal) app shows up on an iPad (if you meant 'should Apple change this behaviour?', then this is a subjective question).