Hi everyone,
I submitted my first iOS app and the publication was rejected as Apple says it crashes on iPad by doing a specific action.
The problem is that the app was not designed for iPad but only for iPhone, in fact I expected it to be tested only on iPhone as in the project attributes I indicated #Target: iPhone (see code below).
So why is Apple also testing it on the iPad?
Thanks in advance for your suggestions.
I submitted my first iOS app and the publication was rejected as Apple says it crashes on iPad by doing a specific action.
The problem is that the app was not designed for iPad but only for iPhone, in fact I expected it to be tested only on iPhone as in the project attributes I indicated #Target: iPhone (see code below).
So why is Apple also testing it on the iPad?
Thanks in advance for your suggestions.
B4X:
#Region Project Attributes
#ApplicationLabel: AppName
#Version: 1.0.6
'Orientation possible values: Portrait, LandscapeLeft, LandscapeRight and PortraitUpsideDown
'#iPhoneOrientations: Portrait, LandscapeLeft, LandscapeRight
#iPhoneOrientations: Portrait
'#iPadOrientations: Portrait, LandscapeLeft, LandscapeRight, PortraitUpsideDown
'#Target: iPhone, iPad
#Target: iPhone
#ATSEnabled: True
#MinVersion: 8
'...
#End Region