Kamalpreet Mundi
Kamalpreet Mundi
**So currently I am running into the following issue for android whenever I try to fetch health data(Steps, HeartRate, Sleep_Session, Sleep_Awake)** ``` E/AndroidRuntime(13306): android.os.RemoteException: Request rejected. Rate limited request quota...
For the following data, I call the following function: ``` inBedData = await health.getHealthDataFromTypes(leftBound, rightBound, [HealthDataType.SLEEP_IN_BED]); leftBound = 2023-12-17 00:00:00 rightBound = 2023-12-18 00:00:00 ``` **And get the following data:...
Not sure if anyone is having this issue but whenever I try to run 8.1.0 on Android, I get an infinite loop when fetching health data, using healthconnect. Currently tested...
### Steps to reproduce So the problem is that if we deviate from the normal structure: ***1 [Email textfield] [Password textfield] To something like this: ***2 [Email textfield] [Password textfield]...
### Description When I run the following function: ``` Future getUserQuestionnaireHistoryByName( String userID, String questionnaireName) { final questionnaireList = Amplify.DataStore.query( Questionnaire.classType, where: Questionnaire.USERID .eq(userID) .and(Questionnaire.QUESTIONNAIRENAME.eq(questionnaireName)), sortBy: [Questionnaire.RESPONSEDATE.descending()], ); return questionnaireList;...