I am writing an app using Expo. I will create forms that will take various strings as data and take photos saving them to the app and then send it using AWS Amplify.
There will be multiple forms stored on the device, with those uploaded marked as "complete".
I have access to AsyncStorage from Expo and I was thinking of storing the forms on the device and then using AWS Amplify to send the data.
I am wondering if this is good practice to use AyncStorage as the documentation states it should only be used as a simple storage solution as it is global, although I do believe my needs are simple.
Are there any other options you could recommend that involve sending data to amazon web services?