Closed sfranusic closed 5 years ago
Description: The awsconfguration.json file that is generated has a key for App Sync that is named AuthType, but the App Sync client (AWSAppSyncClient.swift) pod is looking for a key called AuthMode. I believe this is also the case on Android.
awsconfguration.json
The App Sync pod tries to set this property with:
self.authType = defaultAppSyncConfig["AuthMode"] as! String
which causes a runtime error unless the awsconfiguration.json file is modified to have its key be AuthMode.
awsconfiguration.json
AuthMode
Created a PR instead.
Description: The
awsconfguration.json
file that is generated has a key for App Sync that is named AuthType, but the App Sync client (AWSAppSyncClient.swift) pod is looking for a key called AuthMode. I believe this is also the case on Android.The App Sync pod tries to set this property with:
which causes a runtime error unless the
awsconfiguration.json
file is modified to have its key beAuthMode
.