ExpoKit Complete Documentation with example

Hi, i have created a react native project using XDE, everything is working fine on the expo client, but when i try to do exp detach, there are so many problems come up. actually i am detaching because i have to implement payment feature later in my application. other wise i like expo features. now this is my package.json

{
“main”: “node_modules/expo/AppEntry.js”,
“private”: true,
“dependencies”: {
“axios”: “^0.18.0”,
“ex-react-native-i18n”: “^0.0.4”,
“expo”: “^29.0.0”,
“react”: “16.3.1”,
“react-native”: “https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz”,
“react-native-elements”: “^0.19.1”,
“react-native-router-flux”: “^4.0.0-beta.31”,
“react-redux”: “^5.0.7”,
“redux”: “^4.0.0”,
“redux-persist”: “4.9.1”,
“redux-thunk”: “^2.3.0”
},
“devDependencies”: {}
}

app.json file

{
“expo”: {
“name”: “AwesomeApp”,
“description”: “Soome description”,
“slug”: “AwesomeApp”,
“privacy”: “public”,
“sdkVersion”: “29.0.0”,
“platforms”: [
“ios”,
“android”
],
“version”: “1.0.0”,
“orientation”: “default”,
“icon”: “./src/images/logo.png”,
“splash”: {
“image”: “./src/images/splash.png”,
“resizeMode”: “contain”,
“backgroundColor”: “#00b1a0
},
“updates”: {
“fallbackToCacheTimeout”: 0
},
“assetBundlePatterns”: [
“**/*”
],
“ios”: {
“bundleIdentifier”: “com.AwesomeApp.xyz”,
“supportsTablet”: true
},
“android”: {
“package”: “com.AwesomeApp.xyz”
},
“scheme”: “exp”
}
}

i am getting errors on andorid side. now i have android studio 3.3 , Android SDK Platform 28, gradle 4.4. what else i need.

i am able to build but when i open the app after splash screen white screen apears. and i also want to know how does expo set the url scheme, i am running on the virtual host and the XDE url is exp://localhost:19000. but still no luck please help needed , i am very new to expokit.

getting this error
Metro Bundler failed to start. (code: EPERM)

BR
Muha

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.