Reputation: 774
i Get this error when i select the build to add into group testflight. Please tell if any
But in my builds activity its showing on upload date... i am literally confuse about it please tell if any wrong in this...
Upvotes: 13
Views: 19520
Reputation: 1570
Complementary answer for those using React native with expo. To avoid this issue, put in your App.json:
{
"expo": {
...
"ios": {
...
"config": {
"usesNonExemptEncryption": false
}
}
}
}
Upvotes: 10
Reputation: 4379
There's another way no need to submit a new build or modify Info.plist if you start Internal Testing ASAP without Uploading new build.
Note : If You will modify Info.plist, you'll never need to deal with this popup again.
You can simply go to the iOS
tab at the top left of TestFlight
and click the yellow triangle next to the warning to provide this information within iTunes Connect:
Below is the screen shot for the same :
Then click the "Provide Export Compliance Information" link in the popup & Select No And Start Internal Testing :
Upvotes: 12
Reputation: 382
Select the iOS tab on the left toolbar >>> click on the missing compliance >>> update it >>> select "Start Internal test". This will change the status to "Ready for Internal Testing" and "Ready to Submit" for external testing.
Upvotes: 1