79292416

Date: 2024-12-18 20:41:02
Score: 3
Natty:
Report link

The only answer that is working is one from @karim above. Sadly, i don't yet have enough reputations to upvote it.

Here is my complete build configuration.

Foir those who want to know why the regexpp with *.aab : Expo generate two files. An apk and an aab. The APK contains debug information and is the one which is chosen while submitting. I suspect some alphabetical order that explain why the aab is not selected by default. Thus the regexp


"build": {
"development": {
  "developmentClient": true,
  "distribution": "internal",
  "channel": "development"
},
"release": {
  "developmentClient": false,
  "distribution": "internal",
  "channel": "development"
},
"preview": {
  "distribution": "internal",
  "channel": "preview"
},
"production": {
  "ios": {
    "image": "macos-monterey-12.6-xcode-14.1"
  },
  "channel": "production",
  "android": {
    "buildType": "app-bundle",
    "applicationArchivePath": "android/app/build/outputs/**/*.aab"
  }
}

}

Reasons:
  • Blacklisted phrase (0.5): upvote
  • RegEx Blacklisted phrase (1.5): enough reputation
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @karim
  • Low reputation (1):
Posted by: Giovanny Koudjou Temgoua