VRVignesh Reddy Julakantiinmrboom.hashnode.dev·Mar 16, 2023 · 1 min readUploading and updating react expo apkBuilding for update 1)Increment version and version code eas build --platform android eas submit -p android --latest For direct update expo publish00
VRVignesh Reddy Julakantiinmrboom.hashnode.dev·Jan 31, 2023 · 1 min readAdding AdMob ads to react nativeInstalling admob and expo dev client for creating custom builds expo install expo-dev-client expo install react-native-google-mobile-ads Add the below at app.json at last before one "}" and change the ids "react-native-google-mobile-ads": { "andro...00
VRVignesh Reddy Julakantiinmrboom.hashnode.dev·Jan 30, 2023 · 2 min readCreating a Custom Build for react native - facebook adsexpo install react-native-fbsdk-next react-native-fbads npm install -g eas-cli npx expo install expo-dev-client In app.json add this "plugins": [ [ "react-native-fbsdk-next", { "appID": "48127127xxxxxxxx", ...00
VRVignesh Reddy Julakantiinmrboom.hashnode.dev·Jan 13, 2023 · 1 min readConverting an expo app to apk filenpm install -g eas-cli Create an expo account and then eas login eas build:configure For Getting apk file eas build -p android --profile preview For aab extension file for playstore update eas build Now check in https://expo.dev/ for the builds ...01E
VRVignesh Reddy Julakantiinmrboom.hashnode.dev·Jan 13, 2023 · 1 min readConfiguring FontAwesome IconsInstall these npx expo install react-native-svg npm i --save @fortawesome/fontawesome-svg-core , --save @fortawesome/free-solid-svg-icons , --save @fortawesome/react-native-fontawesome Every where you want to use an icon first import import { FontA...00