AppConsent® cmp, the transparency-based consent management platform.








AppConsent® cmp, the transparency-based consent management platform.
Setup the environment for react-native as explained here.
``sh`
npm install appconsent-reactnative --save
Run pod install.
> :memo: AppConsent SDK supports the new App Tracking Transparency framework (> iOS 14+ available).You must register the NSUserTrackingUsageDescription key in the Info.plist file of your application.
The documentation for the iOS AppConsent framework can be found here.
In project/build.gradle, add this maven url in the allprojects/repositories block.``
allprojects {
repositories {
maven {
url "https://artifactory.datalf.chat/artifactory/app-consent-v2-release"
}
}
}
The Documentation for the Android AppConsent framework can be found here.
javascript
import AppConsent from 'appconsent-reactnative';// Configure at launch (appKey:forceApplyGDPR:forceATT)
AppConsent.configureWith("appKey", true, true);
``Our detailed documentation is accessible at https://docs.sfbx.io.
MIT