Fixing ‘cannot be tested at this time because the build does not have’ error when uploading build to Apple App Store (iOS) with React Native and Expo

Tiempo de lectura: < 1 minuto

Reading time: < 1 minute

If you encounter the following error when adding your app to the Apple App Store:

Version 1.0.0 (1.0.0) cannot be tested at this time because the build does not have associated export compliance documentation.

Once approved, you can come back and select export compliance documentation for this build.

Submit New Documentation

You need to do the following:

Go to the app.json file.

"ios": { 
   "config": { 
      "usesNonExemptEncryption": false 
   } 
}

Then, regenerate the .ipa file from Expo.

Leave a Comment