我在我的React Native App中有这样的政策:
违反Android广告ID政策和开发商分发协议第4.8节
表单Google Play
我使用这个依赖项
"dependencies": {
"lodash": "^4.17.10",
"react": "16.3.1",
"react-native": "0.55.3",
"react-native-device-info": "^0.21.5",
"react-native-elements": "^0.19.1",
"react-native-google-analytics-bridge": "^5.8.0",
"react-native-google-places-autocomplete": "^1.3.6",
"react-native-map-clustering": "^1.3.0",
"react-native-maps": "*",
"react-native-masked-text": "^1.7.2",
"react-native-onesignal": "^3.2.5",
"react-native-svg": "^7.0.3",
"react-native-ui-kitten": "^3.0.1",
"react-native-vector-icons": "^4.6.0",
"react-navigation": "^2.0.2",
"victory-native": "^30.4.0"
},发布于 2019-03-20 11:53:17
禁用广告id收集
根据[消]火源文档,可以通过设置以下方法禁用广告id集合:
将此meta-data添加到AndroidManifest.xml中的<Application>标记下
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />并在您的configurations中添加build.gradle
buildscript {
configurations {
all*.exclude group: 'com.google.firebase', module: 'firebase-core'
all*.exclude group: 'com.google.firebase', module: 'firebase-iid'
}
repositories {
...
}
dependencies {
...
}
}发布于 2018-09-28 17:57:43
我认为您使用这些依赖项:react本机-设备-info,react本机- google -分析-桥梁,它们会导致您的问题,您必须在您的应用程序上为google提供url策略。
发布于 2019-04-06 13:17:53
首先,您需要创建一个有效的隐私策略文档。
您可以在这里使用这工具轻松地生成它。
然后
console -> Store presence -> Store listing。转到最后一个名为“隐私策略”的字段,并在那里更新链接。你的应用程序将在2小时内重新上线!
https://stackoverflow.com/questions/52463755
复制相似问题