Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
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 info.applike.advertisingid.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 167 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.