Build Apk Exception

Hello my friends!

I’m learning react-native and I’m have a problem with build apk from expo.

I’m received a exception:


and i dont know what to do anymore.

I tried alter this file but didn’t have result.

Can you help me?

My build url: https://expo.io/builds/64d2a540-9af6-4ba9-8f80-0e9778bcef5a

My app.json:

{
“expo”: {
“name”: " Mudarja app",
“slug”: “mudarja-app”,
“privacy”: “public”,
“sdkVersion”: “34.0.0”,
“platforms”: [
“ios”,
“android”,
“web”
],
“version”: “1.0.0”,
“orientation”: “portrait”,
“icon”: “./assets/icon.png”,
“splash”: {
“image”: “./assets/splash.png”,
“resizeMode”: “cover”,
“backgroundColor”: “#FFFFF
},
“updates”: {
“fallbackToCacheTimeout”: 0
},
“assetBundlePatterns”: [
“**/*”
],
“ios”: {
“supportsTablet”: true
},
“android”: {
“package”: “br.com.mudarjaco.mudarja”,
“permissions”: [
“LOCATION”,
“GRANTED”
]
}
}
}

Thank you.

You are missing an “F”. There should be 6 of them.

1 Like

Omg, i’m very thankful because that was it!

thank you my friend.

2 Likes

The error message mentioned an “invalid color”. Certain colours are specified in app.json so I focused on the backgroundColor in your app.json. :slight_smile:

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