
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
aia-react-native-idfa
Advanced tools
Android and iOS module for react-native to read IDFA (advertising identifier)
Retrieve the advertising identifier across ios and android on react-native with this small library. Support RN > 0.56 with or without and cocoapods
You need to add this codes in info.plist
<key>NSUserTrackingUsageDescription</key>
<string>We need to use your ad tracking permission to track ads</string>
npm install aia-react-native-idfa
react-native link
Since this library is using the advertising identifier, you must remember to add AdSupport in your IOS project.
If you're using Cocoapods, there is no need to this as when you're adding aia-react-native-idfa to your Podfile it will get added by default
pod 'aia-react-native-idfa', path: '../node_modules/aia-react-native-idfa'
Add AdSupport.framework under "Link Binary With Libraries".
import { IDFA } from 'aia-react-native-idfa';
class Basic extends Component {
state = {
IDFA: '',
};
componentDidMount() {
IDFA.getIDFA().then((idfa) => {
this.setState({ IDFA: idfa, });
})
.catch((e) => {
console.error(e);
});
}
render() {
return (
<View style={{ flex: 1 }}>
<Text>Your IDFA is : {this.state.IDFA}</Text>
</View>
);
}
}
In your build.gradle make sure to force the version to whatever version makes sense through our your dependencies
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.getRequested().getGroup() == 'com.google.android.gms') {
// If different projects require different versions of
// Google Play Services it causes a crash on run.
// Fix by overriding version for all projects.
details.useVersion('17.0.0')
}
}
}
Since this is a react-native repository we will ship the code untranspiled and with flow types along it.
Google has introduced some breaking changes on 17.0.0. The SDK will throw an error if your manifest.xml is not configured properly
******************************************************************************
* The Google Mobile Ads SDK was initialized incorrectly. AdMob publishers *
* should follow the instructions here: https://goo.gl/fQ2neu to add a valid *
* App ID inside the AndroidManifest. Google Ad Manager publishers should *
* follow instructions here: https://goo.gl/h17b6x. *
******************************************************************************
update your manifest.xml
Google's Ad Manager guide
<manifest>
<application>
<meta-data
android:name="com.google.android.gms.ads.AD_MANAGER_APP"
android:value="true"/>
</application>
</manifest>
FAQs
Android and iOS module for react-native to read IDFA (advertising identifier)
We found that aia-react-native-idfa 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.