This is documentation for the next SDK version. For up-to-date documentation, see the latest version (SDK 55).
Expo 跟踪透明度
一个用于跟踪应用用户并管理跟踪权限的库。
For the complete documentation index, see llms.txt. Use this Use this file to discover all available pages.
一个用于跟踪应用用户并管理跟踪权限的库。提供对广告标识符的访问,并管理跟踪所需的权限。用于跟踪的数据示例包括电子邮件地址、设备 ID、广告 ID 等。如果设备级设置“允许 App 请求跟踪”处于关闭状态,则此权限将被拒绝。请务必将 NSUserTrackingUsageDescription 添加到你的 Info.plist 中,以说明将如何跟踪用户。否则,你的应用将被 Apple 拒绝。
有关 Apple 的 App Tracking Transparency 框架的更多信息,请参阅其 文档。
安装
- npx expo install expo-tracking-transparencyIf you are installing this in an existing React Native app, make sure to install expo in your project.
在 app 配置中进行配置
如果你在项目中使用 config plugins(Continuous Native Generation (CNG)),则可以使用 expo-tracking-transparency 内置的 config plugin 进行配置。该插件允许你配置各种无法在运行时设置、且需要构建新的应用二进制文件后才会生效的属性。如果你的应用不使用 CNG,那么你需要手动配置该库。
Example app.json with config plugin
{ "expo": { "plugins": [ [ "expo-tracking-transparency", { "userTrackingPermission": "此标识符将用于向你投放个性化广告。" } ] ] } }
Configurable properties
| Name | Default | Description |
|---|---|---|
userTrackingPermission | "允许此应用收集与应用相关的数据,这些数据可用于跟踪你或你的设备。"‘ | Only for: iOS 在 Info.plist 中设置 iOS 的 |
Are you using this library in an existing React Native app?
如果你没有使用 Continuous Native Generation(CNG)(而是手动使用原生 android 和 ios 项目),那么你需要在原生项目中配置以下权限:
-
对于 Android,将
com.google.android.gms.permission.AD_ID权限添加到你项目的 android/app/src/main/AndroidManifest.xml 中。<uses-permission android:name="com.google.android.gms.permission.AD_ID"/> -
对于 iOS,将
NSUserTrackingUsageDescription键添加到你项目的 ios/[app]/Info.plist 中:<key>NSUserTrackingUsageDescription</key> <string>在此处填写你的自定义用途说明字符串。</string>
用法
import { useEffect } from 'react'; import { Text, StyleSheet, View } from 'react-native'; import { requestTrackingPermissionsAsync } from 'expo-tracking-transparency'; export default function App() { useEffect(() => { (async () => { const { status } = await requestTrackingPermissionsAsync(); if (status === 'granted') { console.log('太好了!我拥有跟踪数据的用户权限'); } })(); }, []); return ( <View style={styles.container}> <Text>跟踪透明度模块示例</Text> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, });
API
import * as ExpoTrackingTransparency from 'expo-tracking-transparency';
Hooks
| Parameter | Type |
|---|---|
| options(optional) | PermissionHookOptions<object> |
Check or request the user to authorize or deny access to app-related data that can be used for tracking the user or the device. Examples of data used for tracking include email address, device ID, advertising ID, and so on. On iOS, if the user denies this permission, any attempt to collect the IDFA will return a string of 0s.
The system remembers the user’s choice and doesn’t prompt again unless a user uninstalls and then reinstalls the app on the device.
On Android and web, this method always returns that the permission was granted.
[PermissionResponse | null, RequestPermissionMethod<PermissionResponse>, GetPermissionMethod<PermissionResponse>]Example
const [status, requestPermission] = useTrackingPermissions();
Methods
Gets the advertising ID, a UUID string intended only for advertising. Use this string for frequency capping, attribution, conversion events, estimating the number of unique users, advertising fraud detection, and debugging.
As a best practice, don't store the advertising ID. Instead, call this function each time your
app needs to use the advertising ID. Users can change whether they allow app tracking and can
reset their advertising ID at any time in their system settings. Check your app's authorization
using getTrackingPermissionsAsync() to determine the user's
intent.
On Android, this function returns the "Android Advertising ID" (AAID). On Android devices that support multiple users, including guest users, it's possible for your app to obtain different advertising IDs on the same device. These different IDs correspond to different users who could be signed in on that device. See Google's documentation for more information: Get a user-resettable advertising ID.
On iOS, this function returns the "Identifier for Advertisers"
(IDFA),
a string that's unique to each device. Your app must request tracking authorization using
requestTrackingPermissionsAsync() before it can get the
advertising identifier.
string | nullReturns either a UUID string or null. It returns null in the following cases:
- On Android, when
isLimitAdTrackingEnabled()istrue - In the iOS simulator, regardless of any settings
- On iOS if you haven't received permission using
requestTrackingPermissionsAsync() - On iOS, if you've requested permission and the user declines
- On iOS, when a profile or configuration restricts access to the advertising identifier, such as when the user has turned off the system-wide "Allow Apps to Request to Track" setting
Example
TrackingTransparency.getAdvertisingId(); // "E9228286-4C4E-4789-9D95-15827DCB291B"
Checks whether or not the user has authorized the app to access app-related data that can be used
for tracking the user or the device. See requestTrackingPermissionsAsync for more details.
On Android and web, this method always returns that the permission was granted.
Promise<PermissionResponse>Example
const { granted } = await getTrackingPermissionsAsync(); if (granted) { // Your app is authorized to track the user or their device }
Returns whether the TrackingTransparency API is available on the current device.
booleanOn devices where the Tracking Transparency API is unavailable,
the get and request permissions methods will always resolve to granted.
Requests the user to authorize or deny access to app-related data that can be used for tracking the user or the device. Examples of data used for tracking include email address, device ID, advertising ID, and so on. On iOS, if the user denies this permission, any attempt to collect the IDFA will return a string of 0s.
The system remembers the user’s choice and doesn’t prompt again unless a user uninstalls and then reinstalls the app on the device.
On Android and web, this method always returns that the permission was granted.
Promise<PermissionResponse>Example
const { granted } = await requestTrackingPermissionsAsync(); if (granted) { // Your app is authorized to track the user or their device }
Types
Literal Type: union
Permission expiration time. Currently, all permissions are granted permanently.
Acceptable values are: 'never' | number
Literal Type: union
Acceptable values are: PermissionHookBehavior | Options
An object obtained by permissions get and request functions.
| Property | Type | Description |
|---|---|---|
| canAskAgain | boolean | Indicates if user can be asked again for specific permission. If not, one should be directed to the Settings app in order to enable/disable the permission. |
| expires | PermissionExpiration | Determines time when the permission expires. |
| granted | boolean | A convenience boolean that indicates if the permission is granted. |
| status | PermissionStatus | Determines the status of the permission. |
Enums
权限
Android
以下权限会通过该库的 AndroidManifest.xml 自动添加。
| Android 权限 | 描述 |
|---|---|
com.google.android.gms.permission.AD_ID | 允许访问用于跟踪和分析的 Advertising ID。对于目标 Android 13(API level 33)或更高且使用 Google Play services 的 Advertising ID 的应用,这是必需的。 |
iOS
以下使用说明键由该库使用: