IOS審核被拒

1.蘋(píng)果登錄

Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that after users authenticate their account with Sign in with Apple, they are required to take additional steps before they can access content and features in your app. Specifically:

  • Your app requires two-factor authentication after users use Sign in with Apple.
    Sign in with Apple is designed to be a self-contained, all-in-one login system. With security features like built-in two-factor authentication, you can remove additional sign-up steps so users can focus on your app's content and features.

Guideline 4.0 - Design
Your app offers Sign in with Apple as a login option but does not use the appropriate Sign in with Apple button design, placement, and/or user interface elements. Specifically:

  • Sign in with Apple is not displayed in the app as an equivalent option for logging in. Sign in with Apple buttons should have a similar design as the buttons for other log in options, and the button should not be placed on separate pages or otherwise hidden.
  • The ? Sign in with Apple says 蘋(píng)果登錄 but should use the following localized version: 通過(guò)Apple繼續(xù) or 通過(guò)Apple登錄.

被拒跟是否使用ASAuthorizationAppleIDButton創(chuàng)建登錄按鈕無(wú)關(guān) 也可自定義(按鈕設(shè)計(jì)須符合登錄按鈕蘋(píng)果設(shè)計(jì)規(guī)范)东帅,多個(gè)三方登錄優(yōu)先同級(jí)展示若過(guò)多也可在更多里展示

if (@available(iOS 13.0, *)) {
        self.authorizationButton = [[ASAuthorizationAppleIDButton alloc]init];
        [self.authorizationButton addTarget:self action:@selector(click) forControlEvents:(UIControlEventTouchUpInside)];
        self.authorizationButton.center = self.view.center;
        [self.view addSubview:self.authorizationButton];
    } else {
        // Fallback on earlier versions
    }

修改建議如下:
1.蘋(píng)果授權(quán)登錄后綁定手機(jī)號(hào)頁(yè)面添加說(shuō)明為什么要使用手機(jī)號(hào)及跳過(guò)功能
2.蘋(píng)果登錄作為一個(gè)單獨(dú)的登錄體系使用裸违,登錄成功后進(jìn)行賬號(hào)合并

2.本地網(wǎng)絡(luò)權(quán)限

Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that your app requests the user’s consent to access the local network information, but doesn’t sufficiently explain the use of the local network information in the purpose string.

Specifically, it would be necessary to elaborate why this app need to connect to devices.
To help users make informed decisions about how their data is used, all permission request alerts need to specify how your app will use the requested information.
Next Steps
Please revise the relevant purpose string in your app’s Info.plist file to specify why your app needs access to the user’s local network information.
You can modify your app’s Info.plist file using the property list editor in Xcode.

修改建議如下:
***1.檢查本地是否申請(qǐng)獲取本地網(wǎng)絡(luò)權(quán)限
***2.排查三方SDK是否申請(qǐng)權(quán)限(終端命令如下)

在終端執(zhí)行命令 (要先CD到項(xiàng)目根目錄下)
grep -r SimplePing .

iOS14 當(dāng) App 要使用 Bonjour 服務(wù)時(shí)或者訪問(wèn)本地局域網(wǎng),使用 mDNS 服務(wù)等,都需要授權(quán)彬伦,如果應(yīng)用中需要使用 LocalNetwork, 開(kāi)發(fā)者需要在 Info.plist 中配置 Privacy - Local Network Usage Description詳細(xì)描述使用的為哪種服務(wù)以及用途

Privacy - Local Network Usage Description : "xxApp"不會(huì)連接到您所用網(wǎng)絡(luò)上的設(shè)備斋日,只會(huì)檢測(cè)與您本地網(wǎng)關(guān)的連通性.用戶也可以在 設(shè)置-->隱私-->本地網(wǎng)絡(luò)界面修改 app 的權(quán)限設(shè)置劝术。

3.測(cè)試賬號(hào)問(wèn)題

Guideline 2.1 - Information Needed
We’re looking forward to reviewing your app, but we were unable to sign in with the following demo account credentials you provided in App Store Connect:
User name: 13100000000
Password: 111111

修改建議如下:
這是因?yàn)榻o蘋(píng)果提供的測(cè)試賬號(hào)有問(wèn)題甘穿,重新提供即可

4.您的應(yīng)用包含競(jìng)賽或抽獎(jiǎng)活動(dòng),但不包含

Guideline 5.3.2 - Legal - Gaming, Gambling, and Lotteries
Your app includes a contest or sweepstakes but it does not:

  • Indicate that Apple is not involved in any way with the contest or sweepstakes.

修改建議如下:
1.在抽獎(jiǎng)頁(yè)面抽獎(jiǎng)規(guī)則說(shuō)明里增加一條"在此活動(dòng)中Apple不是贊助者拆又,也沒(méi)有以任何形式參與活動(dòng)"儒旬,如果僅此一條不合規(guī)直接回復(fù)審核員并截圖告知
2.應(yīng)用評(píng)級(jí)在17+

5.iOS15-AppTrackingTransparency上架被拒

Guideline 2.1 - Information Needed
We're looking forward to completing our review, but we need more information to continue. Your app uses the AppTrackingTransparency framework, but we are unable to locate the App Tracking Transparency permission request when reviewed on iOS 15.1.

修改建議 如下:
1、 Info.plist 增加NSUserTrackingUsageDescription字段和自己的文案描述
2帖族、追蹤框權(quán)限放在了didbecameActive里面栈源、避免彈窗權(quán)限申請(qǐng)被覆蓋

- (void)applicationDidBecomeActive:(UIApplication *)application
{
  if (@available(iOS 14, *)) {
      ATTrackingManagerAuthorizationStatus status = ATTrackingManager.trackingAuthorizationStatus;
      ...
  } else {
     
  }
}

6.Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage

We noticed that after users authenticate their account with Sign in with Apple, they are required to take additional steps before they can access content and features in your app. Specifically:

  • Your app requires two-factor authentication after users use Sign in with Apple.
    Sign in with Apple is designed to be a self-contained, all-in-one login system. With security features like built-in two-factor authentication, you can remove additional sign-up steps so users can focus on your app's content and features.

修改建議如下:
在被拒的原因下直接回復(fù)申訴郵件(僅供參考)親測(cè)審核已過(guò):
My app account system is based on the user's mobile phone number. If the account is not bound to the mobile phone number, the data of the user application cannot be recorded and inquired. If users do not want to bind their mobile phone number, they can click the "touristsButton" button to enter tourist browsing mode.
In addition, based on the latest Internet laws in China, all apps need to have a mobile phone number registered, in order to prevent users from Posting illegal content

我的應(yīng)用程序帳戶系統(tǒng)基于用戶的手機(jī)號(hào)碼。如果帳戶未綁定到手機(jī)號(hào)碼竖般,則無(wú)法記錄和查詢用戶應(yīng)用程序的數(shù)據(jù)甚垦。如果用戶不想綁定手機(jī)號(hào)碼,可以點(diǎn)擊“跳過(guò)綁定”進(jìn)入游客瀏覽模式涣雕。
此外艰亮,根據(jù)中國(guó)最新的互聯(lián)網(wǎng)法律,所有應(yīng)用程序都需要注冊(cè)手機(jī)號(hào)碼胞谭,以防止用戶發(fā)布非法內(nèi)容
本條參考:http://www.reibang.com/p/3942ce15483b

7.Guideline 1.4.1 - Safety - Physical Harm

Your app provides health or medical recommendations, calculations, references, wellness reports, or diagnoses without including the sources of the medical information.
Specifically, we found the health information in the 精選推薦垃杖,科普視頻 and 健康話題 without clickable reference source links. Please note the reference source has to include clickable official health sources(e.g, WHO, CDC or local equivalent).
All apps with medical and health information should include links to sources for the information. This helps ensure that App Store users are being provided accurate information.

修改建議如下:
這個(gè)需要在每個(gè)健康話題結(jié)尾加上來(lái)源鏈接或來(lái)源某機(jī)構(gòu),xx醫(yī)生丈屹、xx醫(yī)療機(jī)構(gòu)等

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子旺垒,更是在濱河造成了極大的恐慌彩库,老刑警劉巖,帶你破解...
    沈念sama閱讀 219,427評(píng)論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件先蒋,死亡現(xiàn)場(chǎng)離奇詭異骇钦,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)竞漾,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,551評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門(mén)眯搭,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人业岁,你說(shuō)我怎么就攤上這事鳞仙。” “怎么了笔时?”我有些...
    開(kāi)封第一講書(shū)人閱讀 165,747評(píng)論 0 356
  • 文/不壞的土叔 我叫張陵棍好,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我允耿,道長(zhǎng)借笙,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,939評(píng)論 1 295
  • 正文 為了忘掉前任较锡,我火速辦了婚禮业稼,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蚂蕴。我一直安慰自己低散,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,955評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布掂墓。 她就那樣靜靜地躺著谦纱,像睡著了一般。 火紅的嫁衣襯著肌膚如雪君编。 梳的紋絲不亂的頭發(fā)上跨嘉,一...
    開(kāi)封第一講書(shū)人閱讀 51,737評(píng)論 1 305
  • 那天,我揣著相機(jī)與錄音吃嘿,去河邊找鬼祠乃。 笑死,一個(gè)胖子當(dāng)著我的面吹牛兑燥,可吹牛的內(nèi)容都是我干的亮瓷。 我是一名探鬼主播,決...
    沈念sama閱讀 40,448評(píng)論 3 420
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼降瞳,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼嘱支!你這毒婦竟也來(lái)了蚓胸?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 39,352評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤除师,失蹤者是張志新(化名)和其女友劉穎沛膳,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體汛聚,經(jīng)...
    沈念sama閱讀 45,834評(píng)論 1 317
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡锹安,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,992評(píng)論 3 338
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了倚舀。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片叹哭。...
    茶點(diǎn)故事閱讀 40,133評(píng)論 1 351
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖痕貌,靈堂內(nèi)的尸體忽然破棺而出风罩,到底是詐尸還是另有隱情,我是刑警寧澤芯侥,帶...
    沈念sama閱讀 35,815評(píng)論 5 346
  • 正文 年R本政府宣布泊交,位于F島的核電站,受9級(jí)特大地震影響柱查,放射性物質(zhì)發(fā)生泄漏廓俭。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,477評(píng)論 3 331
  • 文/蒙蒙 一唉工、第九天 我趴在偏房一處隱蔽的房頂上張望研乒。 院中可真熱鬧,春花似錦淋硝、人聲如沸雹熬。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 32,022評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)竿报。三九已至,卻和暖如春继谚,著一層夾襖步出監(jiān)牢的瞬間烈菌,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,147評(píng)論 1 272
  • 我被黑心中介騙來(lái)泰國(guó)打工花履, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留芽世,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,398評(píng)論 3 373
  • 正文 我出身青樓诡壁,卻偏偏與公主長(zhǎng)得像济瓢,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子妹卿,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,077評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容