持續(xù)更新中...
1.打開了未使用的功能
Guideline 2.1 - Information Needed
1.We have started the review of your app, but we are not able to continue because we need access to a video that demonstrates the current version of your app using the background audio and location features on a physical iOS device.
Please ensure the video you provide shows a physical iOS device (not a simulator).
解決:項(xiàng)目工程-> targets ->對(duì)應(yīng)工程->Sinning&Capabilities->backgrond modes
根據(jù)內(nèi)容提示刪除對(duì)應(yīng)能力,我這里是audio 和 location

2.未提供測(cè)試賬號(hào)
有些app需要登錄后才能展示所有功能,此時(shí)需要提供一個(gè)測(cè)試賬號(hào)供apple審核測(cè)試
Guideline 2.1 - Information Needed
We were unable to sign in to review your app with the demo account information you provided.
In order for us to continue the review, you will still need to provide a functional demo account that gives us access to all parts of your app so that we may fully review its content, features, and functionality. If your app is restricted to a specific location, you will still need to provide a whitelisted demo account that gives us access to your app. Note that providing a demo video showing your app in use is not enough for us to continue the review.
解決:
1.登錄 App Store Connect
2.點(diǎn)擊我的app
3.選擇對(duì)應(yīng)版本
4.將屏幕滑到 “App Review Information”
5.將“Sign-in required” 勾上
6.填寫用于測(cè)試的 賬號(hào)密碼
3.用戶未安裝微信時(shí),顯示微信登錄圖標(biāo)
Guideline 4.2.3 - Design - Minimum Functionality
We were required to install the WeChat app before we could log in via WeChat. Users should be able to log in with WeChat and access their accounts without having to install any additional apps.
解決:使用微信SDK檢測(cè)設(shè)備是否安裝了微信app,如果那就隱藏微信登錄圖標(biāo)
if ([WXApi isWXAppInstalled]){
//安裝了微信的處理
_wechatLoginBtn.hidden = No;
} else {
//沒(méi)有安裝微信的處理
_wechatLoginBtn.hidden = Yes;
}
4.app不能被正常加載
在審核時(shí),有些頁(yè)面無(wú)法被加載,且沒(méi)有友好提示或者某些功能無(wú)法使用
- 1 Performance: App Completeness
Guideline 2.1 - Performance - App Completeness
We discovered one or more bugs in your app when reviewed on iPad running iOS 13.2 on Wi-Fi.
Specifically, the app was unable to load properly.
解決:一般情況下,App都是經(jīng)過(guò)測(cè)試后才會(huì)上架,但是有些情況會(huì)無(wú)法正常加載:例如
- app使用了定位功能:數(shù)據(jù)根定位返回?cái)?shù)據(jù),apple審核不是在大陸境內(nèi)審核的,此時(shí)app需要對(duì)境外定位進(jìn)行特殊處理
- app使用了防火墻:有些app只提供境內(nèi)訪問(wèn),境外訪問(wèn)會(huì)被墻,apple審核不是在大陸境內(nèi)審核的,需要在和服務(wù)器人員溝通,審核時(shí)關(guān)掉防火墻
- 特殊功能只在某些時(shí)段開放:例如app某些資質(zhì)認(rèn)證功能是接入第三方的,然而只在8:00-18:00開放,其他時(shí)間不開放,中國(guó)大陸的app審核一般apple都是在晚上審核的(應(yīng)該在美國(guó)吧),所以這些功能就不能用,所以你需要隱藏某些特殊功能,或者調(diào)整時(shí)間段
您如果遇到其他的,可以在評(píng)論中補(bǔ)充
5.接入系統(tǒng)級(jí)功能但未使用
Guideline 2.5.1 - Performance - Software Requirements
We noticed that your app uses HealthKit, but your app does not appear to include any primary features that require health or fitness data.
The intended use of HealthKit is generally to share health or fitness data with other apps or devices as a part of the app's core functionality.
Next Steps
To resolve this issue, please remove any HealthKit functionality from your app, as well as any references to this app’s interactivity with HealthKit from the app or its metadata. This includes removing any HealthKit-related keys in your app's Info.plist as well as removing any calls to HealthKit APIs, including those from 3rd party platforms, from your app.
Please see attached screenshots for details.
解決:查找對(duì)應(yīng)的功能,刪除對(duì)應(yīng)的能力、代碼等;我這里是HealthKit
- 關(guān)閉你項(xiàng)目中的capabilities里面的HealthKit
- 代碼檢查下是否使用HealthKit框架
- 去apple developer賬號(hào)里面檢查app id,關(guān)閉HealthKit
- 刪除相關(guān)證書和配置文件,重新制作。
- 如果你的項(xiàng)目中沒(méi)有使用HealthKit,這些權(quán)限提醒就不要加
健康分享權(quán)限:Privacy - Health Share Usage Description
健康更新權(quán)限:Privacy - Health Update Usage Description
運(yùn)動(dòng)使用權(quán)限:Privacy - Motion Usage Description
6.后臺(tái)持續(xù)定位
Guideline 2.5.4 - Performance - Software Requirements
Your app declares support for location in the UIBackgroundModes key in your Info.plist file but does not have any features that require persistent location. Apps that declare support for location in the UIBackgroundModes key in your Info.plist file must have features that require persistent location.
Next Steps
To resolve this issue, please revise your app to include features that require the persistent use of real-time location updates while the app is in the background.
If your app does not require persistent real-time location updates, please remove the "location" setting from the UIBackgroundModes key. You may wish to use the significant-change location service or the region monitoring location service if persistent real-time location updates are not required for your app features.
Resources
For more information, please review the Starting the Significant-Change Location Service and Monitoring Geographical Regions.
上面的字面意思是:程序添加了持續(xù)定位功能,但是蘋果審核時(shí)并沒(méi)有發(fā)現(xiàn)哪里有用到?這個(gè)提示其實(shí)有好多情況:
情況1:
項(xiàng)目確實(shí)沒(méi)有用到持續(xù)定位功能。
解決方案:Capabilities - Background Modes - Location updates 關(guān)閉這個(gè)選項(xiàng)情況2:項(xiàng)目確實(shí)有用到持續(xù)定位功能。但是入口深,蘋果在審核時(shí)一時(shí)沒(méi)有體驗(yàn)到持續(xù)定位功能。
解決方法:如何你持續(xù)定位功能入口深,審核人員發(fā)現(xiàn)不了,那就拍個(gè)視頻演示下,然后進(jìn)行申訴;情況3:使用了第三方的地圖定位組件比如:高德/百度。你會(huì)發(fā)現(xiàn) 這些組件要求Location選項(xiàng)是勾選的,但是審核被拒。取消勾選Location選項(xiàng),程序又會(huì)崩潰,不能使用組件;
原因:項(xiàng)目中使用的地圖定位組件(高德/百度)在使用單次定位時(shí)需要開啟項(xiàng)目的Capabilities - Background Modes - Location updates后臺(tái)定位模式。
解決方法:
- Capabilities - Background Modes - Location updates 關(guān)閉這個(gè)選項(xiàng)
2.添加下面的分類到程序中
#import "CLLocationManager+BackgroundLocationUpdate.h"
#import <objc/runtime.h>
@implementation CLLocationManager (BackgroundLocationUpdate)
+ (void)load {
if ([UIDevice currentDevice].systemVersion.floatValue >= 9.0) {
method_exchangeImplementations(class_getInstanceMethod(self.class, NSSelectorFromString(@"setAllowsBackgroundLocationUpdates:")), class_getInstanceMethod(self.class, @selector(rf_swizzledSetAllowsBackgroundLocationUpdates:)));
}
}
- (void)rf_swizzledSetAllowsBackgroundLocationUpdates:(BOOL)allow {
if (allow) {
NSArray *backgroundModes = [[NSBundle mainBundle].infoDictionary objectForKey:@"UIBackgroundModes"];
if( backgroundModes && [backgroundModes containsObject:@"location"]) {
[self rf_swizzledSetAllowsBackgroundLocationUpdates:allow];
} else {
NSLog(@"APP想設(shè)置后臺(tái)定位,但APP的info.plist里并沒(méi)有申請(qǐng)后臺(tái)定位");
}
} else {
[self rf_swizzledSetAllowsBackgroundLocationUpdates:allow];
}
}
@end
7.包含支付相關(guān)的代碼
Guideline 2.3.1 - Performance
We discovered that your app contains hidden features. Attempting to hide features, functionality or content in your app is considered egregious behavior and can lead to removal from the Apple Developer Program.
Specifically, we found that your app includes AliPay (支付寶) and Taobao H5 Payments, which provides access to external payment mechanisms and enables the purchase of content, services, or functionality by means other than the in-app purchase API.
If you feel that we have misunderstood how your app functions and that your app is compliant with the App Store Review Guidelines, please reply to this message in Resolution Center to explain how this feature works.
The next submission of this app may require a longer review time, and this app will not be eligible for an expedited review until this issue is resolved.
Next Steps
Review the Performance section of the App Store Review Guidelines.
Ensure your app, as well as any third-party code and SDKs implemented in your app, are compliant with all sections of the App Store Review Guidelines and the Terms & Conditions of the Apple Developer Program.
Revise or remove the hidden features from your app. Once your app is fully compliant, resubmit your app for review.
Submitting apps designed to mislead or harm customers or evade the review process may result in the termination of your Apple Developer Program account. Review the Terms & Conditions of the Apple Developer Program to learn more about our policies regarding termination.
===============================
說(shuō)明
我的項(xiàng)目里使用到了支付寶 AliPaySDK,集成了支付和授權(quán)相關(guān)功能。任何支付相關(guān)的內(nèi)容apple都會(huì)強(qiáng)調(diào)使用內(nèi)購(gòu),使用第三方外界支付無(wú)異于在從apple碗里搶肉吃,所以如果不是購(gòu)買實(shí)物類型的支付,那都建議使用內(nèi)購(gòu)。解決方案
- 由于項(xiàng)目并不是十分依賴支付,所以把支付相關(guān)的代碼暫時(shí)注銷了
- 但是項(xiàng)目依賴支付寶授權(quán)(登錄、認(rèn)證),所以我在回復(fù)中添加了說(shuō)
明:
app已經(jīng)將支付相關(guān)的代碼刪除,僅保留了AliPaySDK相關(guān)的授權(quán)功能,不再涉及支付。另外我們并沒(méi)有在app中找到相關(guān)Taobao H5 Payments的功能,如果有煩請(qǐng)?jiān)敿?xì)指出。
- 終極方案:使用內(nèi)購(gòu)
上傳的展示圖不是iOS設(shè)備類型的圖
Guideline 2.3.10 - Performance - Accurate Metadata /********* 展示圖用的不是iOS設(shè)備的截圖 OK/
We noticed that your app or its metadata includes irrelevant third-party platform information.
/*特別是app上傳的展示圖中,其圖片的status bar 并不是iOS設(shè)備的 */
Specifically, your app includes non-iOS status bar images in the marketing screenshots.
Referencing third-party platforms in your app or its metadata is not permitted on the App Store unless there is specific interactive functionality.
Next Steps
To resolve this issue, please remove all instances of this information from your app and its metadata, including the app description, promotional text, What's New info, previews, and screenshots.
========================================
-
說(shuō)明
我上傳的展示圖不是iOS設(shè)備的截屏圖
1587086920110_2D0C5EF6-9812-4186-A5D5-441551C4C475.png 解決
換張是iOS設(shè)備的截圖就可以了
app是個(gè)沒(méi)有意義
Guideline 4.2.2 - Design - Minimum Functionality
We noticed that your app only includes links, images, or content aggregated from the Internet with limited or no native iOS functionality. Although this content may be curated from the web specifically for your users, since it does not sufficiently differ from a mobile web browsing experience, it is not appropriate for the App Store.
Next Steps
We encourage you to review your app concept and work towards creating an app that offers customers an engaging and lasting experience that also meets the App Store’s high expectations for quality and functionality.
Apple Developer includes a variety of design and development resources. Download iOS templates from Apple UI Design Resources, learn more about crafting intuitive, well-designed apps with the Design Video collection, and review the iOS Human Interface Guidelines for best practices to follow when designing apps for the App Store.
=================================
-
說(shuō)明
apple說(shuō)你的app是個(gè)僅僅包含圖片、鏈接、還有重網(wǎng)絡(luò)上扣下來(lái)的數(shù)據(jù),沒(méi)有新意。 -
解決
在回復(fù)中體現(xiàn)你的app的價(jià)值,我是這么回復(fù)的:
本app是一個(gè)政務(wù)相關(guān)功能的app,您所說(shuō)的鏈接、圖片等都是為了引導(dǎo)用戶去使用一個(gè)個(gè)的政務(wù)辦事微應(yīng)用,譬如app內(nèi)部的身份證辦理、在線掛號(hào)等微應(yīng)用能夠提高用戶/政府的辦事效率,并且節(jié)省資源。所以并不是一個(gè)無(wú)意義的app。
涉及新冠肺炎
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We found in our review that your app provides services or requires sensitive user information related to the COVID-19 pandemic. Since the COVID-19 pandemic is a public health crisis, services and information related to it are considered to be part of the healthcare industry. In addition, the seller and company names associated with your app are not from a recognized institution, such as a governmental entity, hospital, insurance company, non-governmental organization, or university.
Per section 5.1.1 (ix) of the App Store Review Guidelines, apps that provide services or collect sensitive user information in highly-regulated fields, such as healthcare, should be submitted by a legal entity that provides these services, and not by an individual developer.
Next Steps
To resolve this issue, your app must be published under a seller and company name of a recognized institution. If you have developed this app on behalf of such an institution, please advise your client to add you to the development team of their Apple Developer account. If your client does not yet have an Apple Developer account, they can enroll for one as an organization through the Apple Developer website.
Resources
For additional details, please refer to the update on the Apple Developer website about Ensuring the Credibility of Health & Safety Information.
===================================
說(shuō)明
由于新冠肺炎疫情影響持續(xù)增大,apple將新冠肺炎疫情消息的發(fā)布做了限制,如果你的app內(nèi)部包含新冠肺炎疫情內(nèi)容,但app又不是由政府、醫(yī)院、非盈利性的健康組織等發(fā)布的,那么app將被拒絕。我的項(xiàng)目里包含了新冠肺炎的新聞,所以也被拒絕了。解決
要么開發(fā)者賬號(hào)是由政府、醫(yī)院、非盈利性的健康組織等創(chuàng)建的,要么就是將由政府、醫(yī)院、非盈利性的健康組織添加到你的開發(fā)者賬號(hào)下面。個(gè)人賬號(hào)不可以發(fā)布包含COVID-19內(nèi)容的app
刪除app中所有涉及COVID-19的內(nèi)容。如果COVID-19相關(guān)的內(nèi)容是可配置的,那么可以下架,等審核通過(guò)后在上架(請(qǐng)測(cè)有效!)
獲取權(quán)限要說(shuō)明目的
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage/******權(quán)限描述語(yǔ) ok/
We noticed that your app requests the user’s consent to access their camera and location but does not clarify the use of the camera and location in the applicable purpose string.
Next Steps
Please revise the relevant purpose string in your app’s Info.plist file to specify why the app is requesting access to the user's camera and location. You can modify your app's Info.plist file using the property list editor in Xcode.
To help users understand why your app is requesting access to their personal data, all permission request alerts in your app should specify how your app will use the requested feature.
Resources
For additional information and instructions on requesting permission, please review the Requesting Permission section of the iOS Human Interface Guidelines and the Information Property List Key Reference. You may also want to review the Technical Q&A QA1937: Resolving the Privacy-Sensitive Data App Rejection page for details on how to provide a usage description for permission request alerts.
=====================================
- 說(shuō)明
以前在獲取定位、相機(jī)等使用權(quán)限時(shí)需要在info.plist文件中添加描述語(yǔ),這個(gè)描述可以很簡(jiǎn)單:eg:
相機(jī):需要獲取拍照功能
但是現(xiàn)在不行了,你需要描述具體使用權(quán)限的原因
- 解決
相機(jī):需要獲取拍照功能,用于上傳頭像
app不能反映是政府開發(fā)
Guideline 5.2.1 - Legal - Intellectual Property
The seller and company names associated with your app do not reflect the name governmental organization in the app or its metadata, as required by Guideline 5.2.1 of the App Store Review Guidelines.
Next Steps
Your app must be published under a seller name and company name that reflects the governmental organization name. If you have developed this app on behalf of a client, please advise your client to add you to the development team of their Apple Developer account. If your client does not yet have an Apple Developer account, they can enroll in the Apple Developer Program through the Apple Developer website.
Alternatively, if you are authorized to provide this service in your app, please provide evidence of your relationship with the institutions included in your app.
=========================================
說(shuō)明
我所負(fù)責(zé)的app是給政府類型的機(jī)構(gòu)做的,apple覺(jué)得的app不像是政府做的解決
- 在appstoreconne支援URL填上 政府網(wǎng)址
- 在回復(fù)中附加檔案?jìng)骰?strong>政府資質(zhì)證明文件圖片
第三方登錄為支持apple登錄
Guideline 4.8 - Design - Sign in with Apple
We noticed that your app uses a third-party login service but does not offer Sign in with Apple.
Next Steps
To resolve this issue, please revise your app to offer Sign in with Apple as an equivalent login option.
Resources
To learn more, see the Sign in with Apple Overview.
Please see attached screenshots for details.
================================
說(shuō)明
以后如果你的app支持第三方登錄,那就必須也得支持蘋果登錄解決
要么都不支持任何第三方登錄,要么同時(shí)支持蘋果登錄
蘋果登錄但是要求綁定手機(jī)號(hào)
- 1.1 Legal: Privacy - Data Collection and Storage
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that your app requires users to register with personal information that is not directly relevant to your app’s core functionality. Specifically, the following fields are required but do not appear to be directly relevant to your app’s core functionality:
Phone number is required after Sign in with Apple
Next Steps
To resolve this issue, please either remove all required fields that are not relevant to the app or make those fields optional. Information requested during registration must be relevant to the features the app provides.
=====================================
第一使用蘋果登錄,返回后要求綁定關(guān)手機(jī)號(hào)。蘋果認(rèn)為這步多余。
解決:回復(fù)為什么要綁定手機(jī)號(hào),并附上操作視頻。下面是我負(fù)責(zé)的app所提供的回復(fù)。總之你要說(shuō)明為什么要綁定手機(jī)號(hào)。
蘋果客服,
您好!XXXAPP上架審核被拒,原因是應(yīng)用程序要求用戶注冊(cè)與應(yīng)用程序核心功能不直接相關(guān)的個(gè)人信息,現(xiàn)進(jìn)行申訴,具體說(shuō)明如下,并提供相關(guān)視頻證明:
XXX主要為用戶提供一站式服務(wù),即用戶可以不出門查看或者辦理相關(guān)服務(wù),便捷、高效、安全。部分應(yīng)用是和用戶個(gè)人信息密切相關(guān)的,即只有該用戶才可以查看。目前主要為用戶提供三類服務(wù):
1、匿名用戶(不需要用戶注冊(cè)):可以查看首頁(yè)Banner區(qū)垃圾分類宣傳內(nèi)容,同時(shí)也可以查看資訊信息,主要包括國(guó)內(nèi)新聞和本地新聞。若用戶要使用一些疫苗接種、市民卡申領(lǐng)等相關(guān)服務(wù),需要用戶進(jìn)行注冊(cè)。因這些服務(wù)或事項(xiàng)和用戶是密切相關(guān)的。
2、注冊(cè)用戶并完成實(shí)名認(rèn)證(需要填寫手機(jī)號(hào)):可以使用食品許可申辦、辦事預(yù)約等相關(guān)服務(wù),因此服務(wù)需要獲取到用戶信息,比如手機(jī)號(hào)、姓名等,才可以進(jìn)行預(yù)約或者申辦處理,處于對(duì)用戶信息的保密,我們做了脫敏和暗文處理。
3、注冊(cè)用戶并完成實(shí)人認(rèn)證的用戶:可以在APP查看我的數(shù)據(jù),其中主要包括不動(dòng)產(chǎn)信息等一些私密數(shù)據(jù),為了確保數(shù)據(jù)安全性,處于對(duì)用戶數(shù)據(jù)的保護(hù),需要用戶進(jìn)行掃臉來(lái)確認(rèn)身份,即需要完成高級(jí)實(shí)名認(rèn)證。
綜上所述:用戶使用XXXApp時(shí),部分應(yīng)用是支持用戶匿名使用,即不需要用戶進(jìn)行注冊(cè),若用戶需要使用一些辦事服務(wù)或政務(wù)類其他應(yīng)用,從數(shù)據(jù)安全、服務(wù)規(guī)范上考慮,需要拿到該用戶設(shè)備信息,即需要用戶進(jìn)行注冊(cè),注冊(cè)時(shí)只需要填寫手機(jī)號(hào)。具體身份信息是否提供,用戶是可選擇的,具體操作在個(gè)人認(rèn)證頁(yè)面。
舉例說(shuō)明:
具體操作:首頁(yè)>個(gè)人訂閱展臺(tái)>我的數(shù)據(jù)>只有實(shí)人認(rèn)證用戶才可以訪問(wèn)。
上述業(yè)務(wù)和用戶信息密切相關(guān),需要用戶進(jìn)行高級(jí)認(rèn)證,首先需要用戶注冊(cè),即提供手機(jī)號(hào),用戶自主選擇是否進(jìn)行身份認(rèn)證,提供具體身份信息。
詳情使用可查看附件提供的視頻,若還有不清楚的,請(qǐng)隨時(shí)致電137xxxxxxxxx,將為您詳細(xì)講解,謝謝!
這條太長(zhǎng)了我也不知道怎么描述
Guideline 2.1 - Information Needed
We have started the review of your app, but we are not able to continue because we need additional information about the functionality and services in your app related to the COVID-19 pandemic.
Next Steps
To help us proceed with the review of your app, please provide detailed responses to the following questions. The more information you can provide at this time, the sooner we can complete your review.
What permissions does the app ask for (location, bluetooth, contacts, HealthKit, Clinical Health Records etc.) and what are the permissions strings for each? If necessary, please provide English translations of the permission string.
Are these permissions required or optional?
Are there other uses of these permissions besides those listed in the permission string?
What personal information does the app require? List each separately with reasons why it’s required.
What personal information is optional? List each separately with reasons why the app is requesting it.
Who in your organization has access to the information you collect?
Is any of this data shared with any other parties? If so, provide details.
Beyond the permissions already described, what other disclosures and user consent steps does the app contain?
What jurisdiction(s) (i.e. region, state, country, etc.) is this app intended for?
Has this app been authorized for use by the government of that jurisdiction?
Is this the sole app authorized to provide COVID-19 related services in this jurisdiction?
Is the jurisdiction this app is intended for use in expected to change or expand?
Is the use of any features of this app mandatory in these jurisdictions?
If so, what are the consequences and other options available to individuals in the jurisdiction that cannot or do not install the app?
Will you be applying for and transitioning this app to use the Exposure Notification APIs?
Do you plan to remove any app with quarantine management or contact tracing functionality from the App Store once the need for those apps has passed (i.e. once the COVID-19 pandemic is over)?
If your app is contributing to or conducting research related to the COVID-19 pandemic, please provide detailed answers to these additional questions:
Provide proof of approval from an independent ethics review board.
Provide steps to locate the disclosure and consent mechanisms required under 5.1.3(iii). If done outside of the app before the user receives login credentials, provide the associated consent forms.
Once you reply to this message in Resolution Center with the requested information, we can proceed with your review.
Since your App Store Connect status is Metadata Rejected, we do NOT require a new binary. To revise the metadata, visit App Store Connect to select your app and revise the desired metadata values. Once you’ve completed all changes, reply to this message in Resolution Center and we will continue the review.
====================================
根據(jù)內(nèi)容一個(gè)一個(gè)回復(fù)。注意,下面的回復(fù)會(huì)超過(guò)回復(fù)字?jǐn)?shù)限制。我這邊的做法是,做成pdf,以附件的形式fa
尊敬的蘋果審核人員,您好!
在您對(duì)我公司提交審核的app提出疑問(wèn)后,我公司高度關(guān)注并積極的進(jìn)行了相關(guān)問(wèn)題的整理。
- What permissions does the app ask for (location, bluetooth, contacts, HealthKit, Clinical Health Records etc.) and what are the permissions strings for each? If necessary, please provide English translations of the permission string.
A: 應(yīng)用要求以下權(quán)限:
1\. Privacy - Contacts Usage Description
Chinese:“XXX”想訪問(wèn)您的通訊錄,部分微服務(wù)需要訪問(wèn)您的通訊錄數(shù)據(jù)。
Enghlish:“XXX” wants to access contacts,cuz some micro services need to access your contacts.
2\. Privacy - Reminders Usage Description
Chinese:“XXX”需要您的同意,才能訪問(wèn)提醒事項(xiàng)。
Enghlish:“XXX” wants to access Reminders,It is used to remind the progress of some affairs
3\. Privacy - Location Always and When In Use Usage Description
Chinese:“XXX”需要您授權(quán)定位功能,通過(guò)定位功能動(dòng)態(tài)關(guān)聯(lián)到您所在城市
Enghlish:XXX” wants to access function about location, it is Dynamically link to your city through location function
4\. Privacy - Location When In Use Usage Description
Chinese:“XXX”需要您授權(quán)定位功能,通過(guò)定位功能動(dòng)態(tài)關(guān)聯(lián)到您所在城市
Enghlish:XXX” wants to access function about location, it is Dynamically link to your city through location function
5\. Privacy - Camera Usage Description
Chinese:“XXX”需要您授權(quán)相機(jī)功能,通過(guò)相機(jī)功能實(shí)現(xiàn)掃描二維碼、拍攝圖片等功能。
Enghlish:XXX” wants to access Camera,through the camera function to scan two-dimensional code, take pictures and other functions.
6\. Privacy - Location Always Usage Description
Chinese:“XXX”需要您授權(quán)定位功能,通過(guò)定位功能動(dòng)態(tài)關(guān)聯(lián)到您所在城市
Enghlish:XXX” wants to access function about location, it is Dynamically link to your city through location function
7\. Privacy - Bluetooth Peripheral Usage Description
Chinese:“XXX”需要您授權(quán)藍(lán)牙功能,通過(guò)藍(lán)牙功能實(shí)現(xiàn)人臉掃描等功能。
Enghlish:XXX” wants to access Bluetooth Peripheral,through Bluetooth function to achieve face scanning and other functions.
8\. Privacy - Photo Library Additions Usage Description
Chinese:“XXX”需要您授權(quán)相冊(cè)功能,為您提供圖片上傳功能。
Enghlish:XXX” wants to access Photo Library Additions,To provide you with image upload function.
9\. Privacy - Microphone Usage Description
Chinese:“XXX”需要您授權(quán)麥克風(fēng)功能,通過(guò)麥克風(fēng)實(shí)現(xiàn)語(yǔ)音搜索等功能。
Enghlish:“XXX” wants to access Microphone,voice search is realized by microphone.
10 .Privacy - Location Usage Description
Chinese:“XXX”需要您授權(quán)定位功能,通過(guò)定位功能動(dòng)態(tài)關(guān)聯(lián)到您所在城市
Enghlish:“XXX” wants to access function about location, it is Dynamically link to your city through location function
11 .Privacy - Calendars Usage Description
Chinese:“XXX”需要您的同意,才能訪問(wèn)日歷
Enghlish:“XXX” wants to access Calendars,It is used to remind the progress of some affairs
12 .Privacy - Face ID Usage Description
Chinese:“XXX”需要您授權(quán)FaceID功能,實(shí)現(xiàn)人臉登錄功能。
Enghlish:“XXX” wants to access Face ID, Realize face login function.
- Are these permissions required or optional?
A:都是必需的
- Are there other uses of these permissions besides those listed in the permission string?
A:沒(méi)有了
- What personal information does the app require? List each separately with reasons why it’s required.
A:
1.手機(jī)號(hào):用于賬號(hào)注冊(cè)
2.身份證:用于身份認(rèn)證,而身份認(rèn)證是為了用戶擁有權(quán)限去處理某些政務(wù)事務(wù)
- What personal information is optional? List each separately with reasons why the app is requesting it.
A:上面列的2個(gè)個(gè)人信息都是必須
- Who in your organization has access to the information you collect?
A:xxxx大數(shù)據(jù)發(fā)展管理xxxx擁有權(quán)限,而個(gè)人沒(méi)有權(quán)限
- Is any of this data shared with any other parties? If so, provide details.
A:不共享
- Beyond the permissions already described, what other disclosures and user consent steps does the app contain?
A:沒(méi)有了
- What jurisdiction(s) (i.e. region, state, country, etc.) is this app intended for?
A:中國(guó)熱河省三里屯市
- Has this app been authorized for use by the government of that jurisdiction?
A: 是的
- Is this the sole app authorized to provide COVID-19 related services in this jurisdiction?
A:不是唯一的
- Is the jurisdiction this app is intended for use in expected to change or expand?
A:暫時(shí)沒(méi)有打算
- Is the use of any features of this app mandatory in these jurisdictions?
A:非強(qiáng)制
- If so, what are the consequences and other options available to individuals in the jurisdiction that cannot or do not install the app?
A: 沒(méi)有安裝的用戶,可以使用web網(wǎng)頁(yè)辦理相關(guān)事務(wù),或者直接前往相關(guān)機(jī)構(gòu)辦理。
- Will you be applying for and transitioning this app to use the [Exposure Notification APIs](https://developer.apple.com/documentation/exposurenotification/building_an_app_to_notify_users_of_covid-19_exposure)?
A:暫時(shí)不會(huì)
- Do you plan to remove any app with quarantine management or contact tracing functionality from the App Store once the need for those apps has passed (i.e. once the COVID-19 pandemic is over)?
A: app不對(duì)COVID-19 pandemic進(jìn)行研究,僅僅做一些跟蹤報(bào)道。因?yàn)閍pp是熱河省三里屯市政府授權(quán)開發(fā)的,其需要報(bào)道COVID-19相關(guān)內(nèi)容給用戶。在附件中,已附上政府機(jī)關(guān)資質(zhì)證明文件。
以上就是我公司針對(duì)您提出的疑問(wèn)作出的解釋,如還有其他問(wèn)題,煩請(qǐng)給出詳細(xì)錯(cuò)誤數(shù)據(jù),謝謝!
如果這篇文章對(duì)您有用,煩請(qǐng)點(diǎn)個(gè)贊,謝謝
