Not using the Expo fork of react-native

If you create a react native app with the command from the getting started page: $create-react-native-app AwesomeProject then the package.json file has the following dependencies: “dependencies”: { “expo”: “^20.0.0”, “react”: “16.0.0-alpha.12”, “react-native”: “^0.47.0” } If you create an app directly in the Expo XDE, you will see in the package.json, they use a fork of … Read more

App Store – Help answering “Missing Compliance” (using Expo + Firebase)

Question 1: Reply YES as you use HTTPS encryption for connections Question 2: For what you said about your app the reply is NO. In brief you don’t use any function inside your app that use a custom cryptography or it’s strictly medical app. The encryption that you use it’s only for data passing from … Read more

Uninstalling Expo CLI

To completely uninstall expo cli On Windows The first step npm -g uninstall expo-cli –save (also yarn global remove expo-cli if you use yarn). Second cd %USERPROFILE% && rmdir /Q /S .expo On Mac OS Catalina The first step npm -g uninstall expo-cli –save (also yarn global remove expo-cli if you use yarn). Second cd … Read more

How to define entry point for react native app

if you are using Expo, you have to specify the entrypoint in your app.json file like this: { “expo”: { “entryPoint”: “./src/app/index.js” } } then, inside that file you need to register the app with Expo.registerRootComponent(YOUR_MAIN_APP_COMPONENT) import Expo from ‘expo’ … class App extends Component { … } export default Expo.registerRootComponent(App); this way you can … Read more

How to reduce Android APK size in react-native?

You can try following steps Open up android/app/build.gradle Set def enableProguardInReleaseBuilds = true this would enable Progaurd to compress the Java Bytecode. This reduces the app size by a tad bit Set def enableSeparateBuildPerCPUArchitecture = true . Android devices support two major device artitectures armebi and x86. By default RN builds the native librariers for … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)