I am trying to upload my aab file for production and i get this error:
Your APK or Android App Bundle needs to have the package name com.uninote.Uninote.
I am using eas to build the aab. This is my app.json
{
"expo": {
"name": "UniNote",
"slug": "uninote",
"package": "com.uninote.Uninote",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/app-icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"assets/**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.uninote.Uninote",
"versionCode": 2
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-font"
],
"extra": {
"eas": {
"projectId": ...
}
},
"owner": ...
}
}
I have defined my package name correctly but i still get an error.