You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following error in the create report function
~\covidwatch-android-minimal\app\src\main\java\org\covidwatch\android\CovidWatchTcnManager.kt: (102, 62): No value passed for parameter 'memoType'
fun generateAndUploadReport() { // Create a new Signed Report with uploadStateset to.notUploaded and store it in the local persistent store. // This will kick off an observer that watches for signed reports which were not uploaded and will upload it. val signedReport = SignedReport(tcnKeys.createReport()) signedReport.isProcessed = true signedReport.uploadState = SignedReport.UploadState.NOTUPLOADED CovidWatchDatabase.databaseWriteExecutor.execute { val dao = CovidWatchDatabase.getInstance(context).signedReportDAO() dao.insert(signedReport) } }
The text was updated successfully, but these errors were encountered:
mohdsubhi
changed the title
Connection reset
Error in function parameters generateAndUploadReport()
May 4, 2020
I have the following error in the create report function
~\covidwatch-android-minimal\app\src\main\java\org\covidwatch\android\CovidWatchTcnManager.kt: (102, 62): No value passed for parameter 'memoType'
fun generateAndUploadReport() { // Create a new Signed Report with
uploadStateset to
.notUploadedand store it in the local persistent store. // This will kick off an observer that watches for signed reports which were not uploaded and will upload it. val signedReport = SignedReport(tcnKeys.createReport()) signedReport.isProcessed = true signedReport.uploadState = SignedReport.UploadState.NOTUPLOADED CovidWatchDatabase.databaseWriteExecutor.execute { val dao = CovidWatchDatabase.getInstance(context).signedReportDAO() dao.insert(signedReport) } }
The text was updated successfully, but these errors were encountered: