日別アーカイブ: 2014年10月21日

却下

Nov 5, 2014 01:10 PM

Reasons

3.12: Apps should have all included URLs fully functional when you submit it for review, such as support and privacy policy URLs
—– 3.12 —–

We found that your app includes URLs which do not properly navigate to the intended destination, which is not in compliance with the App Store Review Guidelines.

-Support URL is not functioning.

It would be appropriate to ensure all URLs properly resolve to the appropriate destinations before resubmitting your binary.

If your iTunes Connect Application State is Rejected, a new binary will be required. Make the desired metadata changes when you upload the new binary.

If your iTunes Connect Application State is Metadata Rejected, we do NOT require a new binary.

To revise the metadata:

– Log in to iTunes Connect
– Click on “My Apps”
– Select your app
– Revise the desired metadata values
– Click “Save”
– Once you’ve completed all changes, click the “Submit for Review” button at the top of the App Details page

NOTE: Please be sure to make any metadata changes to all App Localizations by selecting each specific localization and making appropriate changes.
————————————————
Submission Feedback. 平成26年10月21日 9:09

webview関係を取り除き、再提出。

Waiting For Review. 平成26年10月21日 10:14
In Review. 平成26年10月23日 4:19

本バージョンは App レビュー審査で却下されました。問題解決センター を参照してください。
mail

has been reviewed, but we are unable to post this version. For details, or to directly contact the App Review team, visit the Resolution Center in iTunes Connect. Do not reply to this email.
Regards,
App Review


Reasons

3.12: Apps should have all included URLs fully functional when you submit it for review, such as support and privacy policy URLs
—– 3.12 —–

We found that your app includes URLs which do not properly navigate to the intended destination, which is not in compliance with the App Store Review Guidelines.

-Support URL does not work.

It would be appropriate to ensure all URLs properly resolve to the appropriate destinations before resubmitting your binary.

If your iTunes Connect Application State is Rejected, a new binary will be required. Make the desired metadata changes when you upload the new binary.

If your iTunes Connect Application State is Metadata Rejected, we do NOT require a new binary.

To revise the metadata:

– Log in to iTunes Connect
– Click on “My Apps”
– Select your app
– Revise the desired metadata values
– Click “Save”
– Once you’ve completed all changes, click the “Submit for Review” button at the top of the App Details page

NOTE: Please be sure to make any metadata changes to all App Localizations by selecting each specific localization and making appropriate changes.

URLスキーム

Apple URL Scheme Reference
Google Maps URL Scheme
NAVIelite
URLスキームを用いて、NAVIeliteに目的地をセット(一般道路版)
[objc]
//動作確認 ok!! NAVIelite
//NSString *url_str = [NSString stringWithFormat:@"navielite://open?latitude=%@&longitude=%@&title=%@",@"34.923273",@"137.21810",@"dest"];

// ①オープン open 版
//NSString *url_str = [NSString stringWithFormat:@"navielite://open?latitude=%@&longitude=%@&title=%@",lat_srt,lon_str,dest_name];

// ②ルートセット routeset 版
// 動作確認 テスト版 ok!!
//NSString *url_str = [NSString stringWithFormat:@"navielite://routeset?poi1=%@,%@&poi1kind=%@&poi1title=%@&poi1rflg=%@&poi1sflg=%@",@"34.923273",@"137.21810",@"dest",@"dest",@"dest",@"0"];
// 動作確認 テスト版 ok!!
NSString *url_str = [NSString stringWithFormat:@"navielite://routeset?poi1=%@,%@&poi1kind=%@&poi1title=%@&poi1rflg=%@&poi1sflg=%@",lat_srt,lon_str,@"dest",dest_name,@"dest",@"2"];

NSURL *directionsURL = [NSURL URLWithString:[url_str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];

[[UIApplication sharedApplication] openURL:directionsURL];
[/objc]

URLスキーム

Apple Map URL Schemeでアプリ起動

stack over flow (iOS Apple Map native links – URL Scheme examples)

URL Scheme でアプリ起動 – [開発] – Google Maps SDK for iOS

Apple Map URL Schemeでアプリ起動 – [開発] – iOS SDK Map Links

GoogleMapsがインストールされている場合