RNGP - Autolinking: Could not find project.android.packageName in react-native config output!

rahulrc1995

Rahul Chandra

Posted on September 17, 2024

RNGP - Autolinking: Could not find project.android.packageName in react-native config output!

Some time adding this will work
on react-native.config.js file

module.exports = {
  project: {
    ios: {},
    android: {
      packageName: 'com.yourproject',
    },
  },
  assets: ['./src/components/assets/fonts/'],
};
Enter fullscreen mode Exit fullscreen mode

Also delete autlinking.json and clean building android also worked for me

💖 💪 🙅 🚩
rahulrc1995
Rahul Chandra

Posted on September 17, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related