Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
react-native-advertising-id
Advanced tools
React Native bridge for fetching advertising info on iOS and Android
Consistent access to Advertising Id (AAID/GAID and IDFA) for Android and iOS on React Native.
$ npm install react-native-advertising-id --save
$ react-native link react-native-advertising-id
Libraries
➜ Add Files to [your project's name]
node_modules
➜ react-native-advertising-id
and add RNAdvertisingId.xcodeproj
libRNAdvertisingId.a
to your project's Build Phases
➜ Link Binary With Libraries
Cmd+R
)<android/app/src/main/java/[...]/MainActivity.java
import com.reactlibrary.RNAdvertisingIdPackage;
to the imports at the top of the filenew RNAdvertisingIdPackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':react-native-advertising-id'
project(':react-native-advertising-id').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-advertising-id/android')
android/app/build.gradle
:
compile project(':react-native-advertising-id')
mainfest.xml
and declare that your app is an Ad Manager app, as instructed on Google's Ad Manager guide:<manifest>
<application>
<meta-data
android:name="com.google.android.gms.ads.AD_MANAGER_APP"
android:value="true"/>
</application>
</manifest>
react-native-advertising-id
module provides a method getAdvertisingId()
that returns a Promise.
This resolves in an object containing advertisingId
as a string representing the GAID/AAID or IDFA depending on the platform, and isLimitAdTrackingEnabled
indicating wether the user opted to restrict the usage of his AdvertisingId or not. (Note: If enabled on iOS, advertisingId will result in an empty string).
import RNAdvertisingId from 'react-native-advertising-id';
RNAdvertisingId.getAdvertisingId()
.then(response => {
this.setState({
advertisingId: response.advertisingId,
isLimitAdTrackingEnabled: response.isLimitAdTrackingEnabled,
});
})
.catch(error => console.error(error));
FAQs
React Native bridge for fetching advertising info on iOS and Android
The npm package react-native-advertising-id receives a total of 290 weekly downloads. As such, react-native-advertising-id popularity was classified as not popular.
We found that react-native-advertising-id demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.