├── .gitattributes
├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ ├── custom.md
│ └── feature_request.md
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── deployfunctions.yml
│ └── infrastructure.yml
├── .gitignore
├── CONTRIBUTING.md
├── CONTRIBUTORS.md
├── COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md
├── CleanBuild.bat
├── Covid19Radar.Functions.runsettings
├── Covid19Radar.Functions.sln
├── Covid19Radar.sln
├── Covid19Radar
├── Covid19Radar.Android
│ ├── Assets
│ │ ├── AboutAssets.txt
│ │ └── Roboto-Regular.ttf
│ ├── BackgroundService
│ │ ├── BackgroundService.cs
│ │ └── BootReceiver.cs
│ ├── Covid19Radar.Android.csproj
│ ├── MainActivity.cs
│ ├── MainApplication.cs
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── AboutResources.txt
│ │ ├── Resource.designer.cs
│ │ ├── drawable-hdpi
│ │ │ ├── HOMEPage10.png
│ │ │ ├── HOMEPage11.png
│ │ │ ├── HeaderLogo.png
│ │ │ ├── HelpPage20.png
│ │ │ ├── HelpPage21.png
│ │ │ ├── HelpPage22.png
│ │ │ ├── HelpPage30.png
│ │ │ ├── HelpPage31.png
│ │ │ ├── HelpPage32.png
│ │ │ ├── HelpPage40.png
│ │ │ ├── HelpPage41.png
│ │ │ ├── HelpPage42.png
│ │ │ ├── HelpPage44.png
│ │ │ ├── HelpPage45.png
│ │ │ ├── HelpPage50.png
│ │ │ ├── InfoMark.png
│ │ │ ├── Logo.png
│ │ │ ├── Nocontact10.png
│ │ │ ├── SplashImg.png
│ │ │ ├── SplashPage10.png
│ │ │ ├── SplashPage11.png
│ │ │ ├── TutorialPage10.png
│ │ │ ├── TutorialPage11.png
│ │ │ ├── TutorialPage12.png
│ │ │ ├── TutorialPage20.png
│ │ │ ├── TutorialPage40.png
│ │ │ ├── TutorialPage50.png
│ │ │ ├── TutorialPage60.png
│ │ │ └── ic_hamburger.png
│ │ ├── drawable-ldpi
│ │ │ ├── HOMEPage10.png
│ │ │ ├── HOMEPage11.png
│ │ │ ├── HeaderLogo.png
│ │ │ ├── HelpPage20.png
│ │ │ ├── HelpPage21.png
│ │ │ ├── HelpPage22.png
│ │ │ ├── HelpPage30.png
│ │ │ ├── HelpPage31.png
│ │ │ ├── HelpPage32.png
│ │ │ ├── HelpPage40.png
│ │ │ ├── HelpPage41.png
│ │ │ ├── HelpPage42.png
│ │ │ ├── HelpPage44.png
│ │ │ ├── HelpPage45.png
│ │ │ ├── HelpPage50.png
│ │ │ ├── InfoMark.png
│ │ │ ├── Logo.png
│ │ │ ├── Nocontact10.png
│ │ │ ├── SplashImg.png
│ │ │ ├── SplashPage10.png
│ │ │ ├── SplashPage11.png
│ │ │ ├── TutorialPage10.png
│ │ │ ├── TutorialPage11.png
│ │ │ ├── TutorialPage12.png
│ │ │ ├── TutorialPage20.png
│ │ │ ├── TutorialPage40.png
│ │ │ ├── TutorialPage50.png
│ │ │ ├── TutorialPage60.png
│ │ │ └── ic_hamburger.png
│ │ ├── drawable-mdpi
│ │ │ ├── HOMEPage10.png
│ │ │ ├── HOMEPage11.png
│ │ │ ├── HeaderLogo.png
│ │ │ ├── HelpPage20.png
│ │ │ ├── HelpPage21.png
│ │ │ ├── HelpPage22.png
│ │ │ ├── HelpPage30.png
│ │ │ ├── HelpPage31.png
│ │ │ ├── HelpPage32.png
│ │ │ ├── HelpPage40.png
│ │ │ ├── HelpPage41.png
│ │ │ ├── HelpPage42.png
│ │ │ ├── HelpPage44.png
│ │ │ ├── HelpPage45.png
│ │ │ ├── HelpPage50.png
│ │ │ ├── InfoMark.png
│ │ │ ├── Logo.png
│ │ │ ├── Nocontact10.png
│ │ │ ├── SplashImg.png
│ │ │ ├── SplashPage10.png
│ │ │ ├── SplashPage11.png
│ │ │ ├── TutorialPage10.png
│ │ │ ├── TutorialPage11.png
│ │ │ ├── TutorialPage12.png
│ │ │ ├── TutorialPage20.png
│ │ │ ├── TutorialPage40.png
│ │ │ ├── TutorialPage50.png
│ │ │ ├── TutorialPage60.png
│ │ │ └── ic_hamburger.png
│ │ ├── drawable-xhdpi
│ │ │ ├── HOMEPage10.png
│ │ │ ├── HOMEPage11.png
│ │ │ ├── HeaderLogo.png
│ │ │ ├── HelpPage20.png
│ │ │ ├── HelpPage21.png
│ │ │ ├── HelpPage22.png
│ │ │ ├── HelpPage30.png
│ │ │ ├── HelpPage31.png
│ │ │ ├── HelpPage32.png
│ │ │ ├── HelpPage40.png
│ │ │ ├── HelpPage41.png
│ │ │ ├── HelpPage42.png
│ │ │ ├── HelpPage44.png
│ │ │ ├── HelpPage45.png
│ │ │ ├── HelpPage50.png
│ │ │ ├── InfoMark.png
│ │ │ ├── Logo.png
│ │ │ ├── Nocontact10.png
│ │ │ ├── SplashImg.png
│ │ │ ├── SplashPage10.png
│ │ │ ├── SplashPage11.png
│ │ │ ├── TutorialPage10.png
│ │ │ ├── TutorialPage11.png
│ │ │ ├── TutorialPage12.png
│ │ │ ├── TutorialPage20.png
│ │ │ ├── TutorialPage40.png
│ │ │ ├── TutorialPage50.png
│ │ │ ├── TutorialPage60.png
│ │ │ └── ic_hamburger.png
│ │ ├── drawable-xxhdpi
│ │ │ ├── HOMEPage10.png
│ │ │ ├── HOMEPage11.png
│ │ │ ├── HeaderLogo.png
│ │ │ ├── HelpPage20.png
│ │ │ ├── HelpPage21.png
│ │ │ ├── HelpPage22.png
│ │ │ ├── HelpPage30.png
│ │ │ ├── HelpPage31.png
│ │ │ ├── HelpPage32.png
│ │ │ ├── HelpPage40.png
│ │ │ ├── HelpPage41.png
│ │ │ ├── HelpPage42.png
│ │ │ ├── HelpPage44.png
│ │ │ ├── HelpPage45.png
│ │ │ ├── HelpPage50.png
│ │ │ ├── InfoMark.png
│ │ │ ├── Logo.png
│ │ │ ├── Nocontact10.png
│ │ │ ├── SplashImg.png
│ │ │ ├── SplashPage10.png
│ │ │ ├── SplashPage11.png
│ │ │ ├── TutorialPage10.png
│ │ │ ├── TutorialPage11.png
│ │ │ ├── TutorialPage12.png
│ │ │ ├── TutorialPage20.png
│ │ │ ├── TutorialPage40.png
│ │ │ ├── TutorialPage50.png
│ │ │ ├── TutorialPage60.png
│ │ │ └── ic_hamburger.png
│ │ ├── drawable-xxxhdpi
│ │ │ ├── HOMEPage10.png
│ │ │ ├── HOMEPage11.png
│ │ │ ├── HeaderLogo.png
│ │ │ ├── HelpPage20.png
│ │ │ ├── HelpPage21.png
│ │ │ ├── HelpPage22.png
│ │ │ ├── HelpPage30.png
│ │ │ ├── HelpPage31.png
│ │ │ ├── HelpPage32.png
│ │ │ ├── HelpPage40.png
│ │ │ ├── HelpPage41.png
│ │ │ ├── HelpPage42.png
│ │ │ ├── HelpPage44.png
│ │ │ ├── HelpPage45.png
│ │ │ ├── HelpPage50.png
│ │ │ ├── InfoMark.png
│ │ │ ├── Logo.png
│ │ │ ├── Nocontact10.png
│ │ │ ├── SplashImg.png
│ │ │ ├── SplashPage10.png
│ │ │ ├── SplashPage11.png
│ │ │ ├── TutorialPage10.png
│ │ │ ├── TutorialPage11.png
│ │ │ ├── TutorialPage12.png
│ │ │ ├── TutorialPage20.png
│ │ │ ├── TutorialPage40.png
│ │ │ ├── TutorialPage50.png
│ │ │ ├── TutorialPage60.png
│ │ │ └── ic_hamburger.png
│ │ ├── drawable
│ │ │ └── splash_screen.xml
│ │ ├── layout
│ │ │ ├── Main.axml
│ │ │ ├── Tabbar.axml
│ │ │ └── Toolbar.axml
│ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ └── values
│ │ │ ├── Strings.xml
│ │ │ ├── colors.xml
│ │ │ └── styles.xml
│ ├── Services
│ │ ├── CloseApplication.cs
│ │ ├── DeviceCheckService.cs
│ │ ├── SkipBackup.cs
│ │ └── UnUsed
│ │ │ ├── BeaconService.cs
│ │ │ ├── BeaconSimulator.cs
│ │ │ ├── MonitorEventArgs.cs
│ │ │ ├── MonitorNotifier.cs
│ │ │ ├── RangeEventArgs.cs
│ │ │ ├── RangeNotifier.cs
│ │ │ └── SQLiteConnectionProvider.cs
│ └── appcenter-pre-build.sh
├── Covid19Radar.iOS
│ ├── AppDelegate.cs
│ ├── Assets.xcassets
│ │ ├── AppIcons.appiconset
│ │ │ ├── 100.png
│ │ │ ├── 1024.png
│ │ │ ├── 114.png
│ │ │ ├── 120.png
│ │ │ ├── 1201.png
│ │ │ ├── 121.png
│ │ │ ├── 128.png
│ │ │ ├── 144.png
│ │ │ ├── 152.png
│ │ │ ├── 167.png
│ │ │ ├── 172.png
│ │ │ ├── 180.png
│ │ │ ├── 196.png
│ │ │ ├── 20.png
│ │ │ ├── 216.png
│ │ │ ├── 256.png
│ │ │ ├── 29.png
│ │ │ ├── 32.png
│ │ │ ├── 40.png
│ │ │ ├── 401.png
│ │ │ ├── 402.png
│ │ │ ├── 48.png
│ │ │ ├── 50.png
│ │ │ ├── 512.png
│ │ │ ├── 55.png
│ │ │ ├── 57.png
│ │ │ ├── 58.png
│ │ │ ├── 581.png
│ │ │ ├── 60.png
│ │ │ ├── 64.png
│ │ │ ├── 72.png
│ │ │ ├── 76.png
│ │ │ ├── 80.png
│ │ │ ├── 801.png
│ │ │ ├── 87.png
│ │ │ ├── 88.png
│ │ │ └── Contents.json
│ │ └── Contents.json
│ ├── Controls
│ │ └── UIBackwardsTextField.cs
│ ├── Covid19Radar.iOS.csproj
│ ├── Entitlements.plist
│ ├── Entitlements.simulator.plist
│ ├── Extensions
│ │ ├── AlignmentExtensions.cs
│ │ ├── Extensions.cs
│ │ ├── FontExtensions.cs
│ │ └── FormattedStringExtensions.cs
│ ├── Info.plist
│ ├── Main.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── HOMEPage10.png
│ │ ├── HOMEPage10@2x.png
│ │ ├── HOMEPage10@3x.png
│ │ ├── HOMEPage11.png
│ │ ├── HOMEPage11@2x.png
│ │ ├── HOMEPage11@3x.png
│ │ ├── HeaderLogo.png
│ │ ├── HeaderLogo@2x.png
│ │ ├── HeaderLogo@3x.png
│ │ ├── HelpPage20.png
│ │ ├── HelpPage20@2x.png
│ │ ├── HelpPage20@3x.png
│ │ ├── HelpPage21.png
│ │ ├── HelpPage21@2x.png
│ │ ├── HelpPage21@3x.png
│ │ ├── HelpPage22.png
│ │ ├── HelpPage22@2x.png
│ │ ├── HelpPage22@3x.png
│ │ ├── HelpPage30.png
│ │ ├── HelpPage30@2x.png
│ │ ├── HelpPage30@3x.png
│ │ ├── HelpPage31.png
│ │ ├── HelpPage31@2x.png
│ │ ├── HelpPage31@3x.png
│ │ ├── HelpPage32.png
│ │ ├── HelpPage32@2x.png
│ │ ├── HelpPage32@3x.png
│ │ ├── HelpPage40.png
│ │ ├── HelpPage40@2x.png
│ │ ├── HelpPage40@3x.png
│ │ ├── HelpPage41.png
│ │ ├── HelpPage41@2x.png
│ │ ├── HelpPage41@3x.png
│ │ ├── HelpPage42.png
│ │ ├── HelpPage42@2x.png
│ │ ├── HelpPage42@3x.png
│ │ ├── HelpPage44.png
│ │ ├── HelpPage44@2x.png
│ │ ├── HelpPage44@3x.png
│ │ ├── HelpPage45.png
│ │ ├── HelpPage45@2x.png
│ │ ├── HelpPage45@3x.png
│ │ ├── HelpPage50.png
│ │ ├── HelpPage50@2x.png
│ │ ├── HelpPage50@3x.png
│ │ ├── IconHamburger.png
│ │ ├── IconHamburger@2x.png
│ │ ├── IconHamburger@3x.png
│ │ ├── InfoMark.png
│ │ ├── InfoMark@2x.png
│ │ ├── InfoMark@3x.png
│ │ ├── LaunchScreen.storyboard
│ │ ├── Logo.png
│ │ ├── Logo@1x.png
│ │ ├── Logo@2x.png
│ │ ├── Logo@3x.png
│ │ ├── Nocontact10.png
│ │ ├── Nocontact10@2x.png
│ │ ├── Nocontact10@3x.png
│ │ ├── SplashImg.png
│ │ ├── SplashImg@2x.png
│ │ ├── SplashImg@3x.png
│ │ ├── SplashPage10.png
│ │ ├── SplashPage10@2x.png
│ │ ├── SplashPage10@3x.png
│ │ ├── SplashPage11.png
│ │ ├── SplashPage11@2x.png
│ │ ├── SplashPage11@3x.png
│ │ ├── TutorialPage10.png
│ │ ├── TutorialPage10@2x.png
│ │ ├── TutorialPage10@3x.png
│ │ ├── TutorialPage11.png
│ │ ├── TutorialPage11@2x.png
│ │ ├── TutorialPage11@3x.png
│ │ ├── TutorialPage12.png
│ │ ├── TutorialPage12@2x.png
│ │ ├── TutorialPage12@3x.png
│ │ ├── TutorialPage20.png
│ │ ├── TutorialPage20@2x.png
│ │ ├── TutorialPage20@3x.png
│ │ ├── TutorialPage40.png
│ │ ├── TutorialPage40@2x.png
│ │ ├── TutorialPage40@3x.png
│ │ ├── TutorialPage50.png
│ │ ├── TutorialPage50@2x.png
│ │ ├── TutorialPage50@3x.png
│ │ ├── TutorialPage60.png
│ │ ├── TutorialPage60@2x.png
│ │ ├── TutorialPage60@3x.png
│ │ ├── ic_hamburger@1x.png
│ │ ├── ic_hamburger@2x.png
│ │ └── ic_hamburger@3x.png
│ ├── Services
│ │ ├── CloseApplication.cs
│ │ ├── DeviceCheckService.cs
│ │ ├── SkipBackup.cs
│ │ └── UnUsed
│ │ │ ├── BeaconService.cs
│ │ │ └── SQLiteConnectionProvider.cs
│ └── appcenter-pre-build.sh
├── Covid19Radar
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AppSettings.cs
│ ├── AssemblyInfo.cs
│ ├── Behaviors
│ │ ├── NumberOnlyBehavior.cs
│ │ ├── SwitchBehavior.cs
│ │ └── UnUsed
│ │ │ └── MaskedBehavior.cs
│ ├── Common
│ │ ├── AppConstants.cs
│ │ ├── AppUtils.cs
│ │ ├── HoursTimer.cs
│ │ ├── JumpHash.cs
│ │ ├── SecondsTimer.cs
│ │ └── Utils.cs
│ ├── Converters
│ │ └── UnUsed
│ │ │ └── IntEnumConverter.cs
│ ├── Covid19Radar.csproj
│ ├── Image
│ │ └── ic_hamburger.png
│ ├── Memo.md
│ ├── Model
│ │ ├── AndroidExtensions.cs
│ │ ├── DiagnosisSubmissionParameter.cs
│ │ ├── MainMenuModel.cs
│ │ ├── PositiveDiagnosisState.cs
│ │ ├── RegisterResultModel.cs
│ │ ├── TemporaryExposureKeyExportFileModel.cs
│ │ ├── TemporaryExposureKeysResult.cs
│ │ ├── UnUsed
│ │ │ ├── ContributorModel.cs
│ │ │ ├── HomeMenuModel.cs
│ │ │ ├── ISQLiteConnectionProvider.cs
│ │ │ ├── Language.cs
│ │ │ ├── LanguageModel.cs
│ │ │ ├── NotificationMessageModel.cs
│ │ │ ├── NotificationPullResult.cs
│ │ │ ├── StepModel.cs
│ │ │ └── TermsOfServiceModel.cs
│ │ ├── UserDataModel.cs
│ │ ├── UserExposureInfo.cs
│ │ └── UserExposureSummary.cs
│ ├── MultilingualResources
│ │ ├── Covid19Radar.af.xlf
│ │ ├── Covid19Radar.ar.xlf
│ │ ├── Covid19Radar.bg.xlf
│ │ ├── Covid19Radar.bn.xlf
│ │ ├── Covid19Radar.bs-Cyrl.xlf
│ │ ├── Covid19Radar.ca.xlf
│ │ ├── Covid19Radar.ceb.xlf
│ │ ├── Covid19Radar.cs.xlf
│ │ ├── Covid19Radar.cy.xlf
│ │ ├── Covid19Radar.da.xlf
│ │ ├── Covid19Radar.de.xlf
│ │ ├── Covid19Radar.el.xlf
│ │ ├── Covid19Radar.en.xlf
│ │ ├── Covid19Radar.es.xlf
│ │ ├── Covid19Radar.et.xlf
│ │ ├── Covid19Radar.fa.xlf
│ │ ├── Covid19Radar.fi.xlf
│ │ ├── Covid19Radar.fil.xlf
│ │ ├── Covid19Radar.fr.xlf
│ │ ├── Covid19Radar.ga.xlf
│ │ ├── Covid19Radar.gu.xlf
│ │ ├── Covid19Radar.ha-Latn.xlf
│ │ ├── Covid19Radar.he.xlf
│ │ ├── Covid19Radar.hi.xlf
│ │ ├── Covid19Radar.hmn.xlf
│ │ ├── Covid19Radar.hr.xlf
│ │ ├── Covid19Radar.ht.xlf
│ │ ├── Covid19Radar.hu.xlf
│ │ ├── Covid19Radar.id.xlf
│ │ ├── Covid19Radar.is.xlf
│ │ ├── Covid19Radar.it.xlf
│ │ ├── Covid19Radar.ja.xlf
│ │ ├── Covid19Radar.jv-Latn.xlf
│ │ ├── Covid19Radar.kk.xlf
│ │ ├── Covid19Radar.kn.xlf
│ │ ├── Covid19Radar.ko.xlf
│ │ ├── Covid19Radar.ku-Arab.xlf
│ │ ├── Covid19Radar.lt.xlf
│ │ ├── Covid19Radar.lv.xlf
│ │ ├── Covid19Radar.mi.xlf
│ │ ├── Covid19Radar.ml.xlf
│ │ ├── Covid19Radar.mn-Cyrl.xlf
│ │ ├── Covid19Radar.mr.xlf
│ │ ├── Covid19Radar.ms.xlf
│ │ ├── Covid19Radar.mt.xlf
│ │ ├── Covid19Radar.nb.xlf
│ │ ├── Covid19Radar.ne.xlf
│ │ ├── Covid19Radar.nl.xlf
│ │ ├── Covid19Radar.ny.xlf
│ │ ├── Covid19Radar.or.xlf
│ │ ├── Covid19Radar.pa-Guru.xlf
│ │ ├── Covid19Radar.pl.xlf
│ │ ├── Covid19Radar.prs.xlf
│ │ ├── Covid19Radar.ps.xlf
│ │ ├── Covid19Radar.pt.xlf
│ │ ├── Covid19Radar.ro.xlf
│ │ ├── Covid19Radar.ru.xlf
│ │ ├── Covid19Radar.sd-Deva.xlf
│ │ ├── Covid19Radar.sk.xlf
│ │ ├── Covid19Radar.sl.xlf
│ │ ├── Covid19Radar.sm.xlf
│ │ ├── Covid19Radar.sn-Latn.xlf
│ │ ├── Covid19Radar.sr-Cyrl.xlf
│ │ ├── Covid19Radar.sr-Latn.xlf
│ │ ├── Covid19Radar.sr.xlf
│ │ ├── Covid19Radar.su.xlf
│ │ ├── Covid19Radar.sv.xlf
│ │ ├── Covid19Radar.sw.xlf
│ │ ├── Covid19Radar.ta.xlf
│ │ ├── Covid19Radar.te.xlf
│ │ ├── Covid19Radar.th.xlf
│ │ ├── Covid19Radar.tl.xlf
│ │ ├── Covid19Radar.tr.xlf
│ │ ├── Covid19Radar.uk.xlf
│ │ ├── Covid19Radar.ur.xlf
│ │ ├── Covid19Radar.uz-Cyrl.xlf
│ │ ├── Covid19Radar.vi.xlf
│ │ ├── Covid19Radar.zh-Hans.xlf
│ │ └── Covid19Radar.zh-Hant.xlf
│ ├── Renderers
│ │ ├── BorderlessEntry.cs
│ │ └── CustomEntry.cs
│ ├── Resources
│ │ ├── AppResources.Designer.cs
│ │ ├── AppResources.af.resx
│ │ ├── AppResources.am.resx
│ │ ├── AppResources.ar.resx
│ │ ├── AppResources.az-Cyrl.resx
│ │ ├── AppResources.be.resx
│ │ ├── AppResources.bez.resx
│ │ ├── AppResources.bg.resx
│ │ ├── AppResources.bn.resx
│ │ ├── AppResources.bs-Cyrl.resx
│ │ ├── AppResources.ca.resx
│ │ ├── AppResources.co.resx
│ │ ├── AppResources.cs.resx
│ │ ├── AppResources.cy.resx
│ │ ├── AppResources.da.resx
│ │ ├── AppResources.de.resx
│ │ ├── AppResources.el.resx
│ │ ├── AppResources.en.resx
│ │ ├── AppResources.eo.resx
│ │ ├── AppResources.es.resx
│ │ ├── AppResources.et.resx
│ │ ├── AppResources.eu.resx
│ │ ├── AppResources.fa.resx
│ │ ├── AppResources.fi.resx
│ │ ├── AppResources.fil.resx
│ │ ├── AppResources.fr.resx
│ │ ├── AppResources.fy.resx
│ │ ├── AppResources.ga.resx
│ │ ├── AppResources.gd.resx
│ │ ├── AppResources.gl.resx
│ │ ├── AppResources.gu.resx
│ │ ├── AppResources.ha-Latn.resx
│ │ ├── AppResources.haw.resx
│ │ ├── AppResources.he.resx
│ │ ├── AppResources.hi.resx
│ │ ├── AppResources.hr.resx
│ │ ├── AppResources.hu.resx
│ │ ├── AppResources.hy.resx
│ │ ├── AppResources.id.resx
│ │ ├── AppResources.ig.resx
│ │ ├── AppResources.is.resx
│ │ ├── AppResources.it.resx
│ │ ├── AppResources.ja.resx
│ │ ├── AppResources.jv-Latn.resx
│ │ ├── AppResources.ka.resx
│ │ ├── AppResources.kk.resx
│ │ ├── AppResources.km.resx
│ │ ├── AppResources.kn.resx
│ │ ├── AppResources.ko.resx
│ │ ├── AppResources.ku-Arab.resx
│ │ ├── AppResources.ky.resx
│ │ ├── AppResources.la.resx
│ │ ├── AppResources.lb.resx
│ │ ├── AppResources.lo.resx
│ │ ├── AppResources.lt.resx
│ │ ├── AppResources.lv.resx
│ │ ├── AppResources.mi.resx
│ │ ├── AppResources.mk.resx
│ │ ├── AppResources.ml.resx
│ │ ├── AppResources.mn-Cyrl.resx
│ │ ├── AppResources.mr.resx
│ │ ├── AppResources.ms.resx
│ │ ├── AppResources.mt.resx
│ │ ├── AppResources.my.resx
│ │ ├── AppResources.nb.resx
│ │ ├── AppResources.nl.resx
│ │ ├── AppResources.or.resx
│ │ ├── AppResources.pa-Guru.resx
│ │ ├── AppResources.pl.resx
│ │ ├── AppResources.prs.resx
│ │ ├── AppResources.ps.resx
│ │ ├── AppResources.pt.resx
│ │ ├── AppResources.resx
│ │ ├── AppResources.ro.resx
│ │ ├── AppResources.ru.resx
│ │ ├── AppResources.rw.resx
│ │ ├── AppResources.sd-Deva.resx
│ │ ├── AppResources.si.resx
│ │ ├── AppResources.sk.resx
│ │ ├── AppResources.sl.resx
│ │ ├── AppResources.sn-Latn.resx
│ │ ├── AppResources.so.resx
│ │ ├── AppResources.sq.resx
│ │ ├── AppResources.sr-Cyrl.resx
│ │ ├── AppResources.sr-Latn.resx
│ │ ├── AppResources.st.resx
│ │ ├── AppResources.sv.resx
│ │ ├── AppResources.sw.resx
│ │ ├── AppResources.ta.resx
│ │ ├── AppResources.te.resx
│ │ ├── AppResources.tg-Cyrl.resx
│ │ ├── AppResources.th.resx
│ │ ├── AppResources.tk.resx
│ │ ├── AppResources.tr.resx
│ │ ├── AppResources.tt.resx
│ │ ├── AppResources.ug.resx
│ │ ├── AppResources.uk.resx
│ │ ├── AppResources.ur.resx
│ │ ├── AppResources.uz-Cyrl.resx
│ │ ├── AppResources.vi.resx
│ │ ├── AppResources.xh.resx
│ │ ├── AppResources.yi.resx
│ │ ├── AppResources.yo.resx
│ │ ├── AppResources.zh-Hans.resx
│ │ ├── AppResources.zh-Hant.resx
│ │ ├── AppResources.zu.resx
│ │ ├── Fonts
│ │ │ ├── NotoSansCJKjp-Medium.otf
│ │ │ ├── NotoSansCJKjp-Regular.otf
│ │ │ ├── Roboto-Regular.ttf
│ │ │ ├── fa-brands-400.otf
│ │ │ ├── fa-regular-400.otf
│ │ │ ├── fa-solid-900.otf
│ │ │ └── materialdesignicons-webfont.ttf
│ │ └── html
│ │ │ ├── en
│ │ │ ├── chatbot2.html
│ │ │ ├── chatbot3.html
│ │ │ ├── chatbot4.html
│ │ │ ├── chatbot5.html
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── img
│ │ │ │ ├── Back Arrow.png
│ │ │ │ └── Back Arrow@2x.png
│ │ │ ├── index.html
│ │ │ ├── privacypolicy.html
│ │ │ ├── privacypolicy.md
│ │ │ ├── termofuse.html
│ │ │ └── termofuse.md
│ │ │ ├── index.html
│ │ │ ├── ja
│ │ │ ├── chatbot2.html
│ │ │ ├── chatbot3.html
│ │ │ ├── chatbot4.html
│ │ │ ├── chatbot5.html
│ │ │ ├── css
│ │ │ │ └── style.css
│ │ │ ├── img
│ │ │ │ ├── Back Arrow.png
│ │ │ │ └── Back Arrow@2x.png
│ │ │ ├── index.html
│ │ │ ├── privacypolicy.html
│ │ │ ├── privacypolicy.md
│ │ │ ├── termofuse.html
│ │ │ └── termofuse.md
│ │ │ ├── license.html
│ │ │ ├── license.md
│ │ │ └── zh-hans
│ │ │ ├── chatbot2.html
│ │ │ ├── chatbot3.html
│ │ │ ├── chatbot4.html
│ │ │ ├── chatbot5.html
│ │ │ ├── css
│ │ │ └── style.css
│ │ │ ├── img
│ │ │ ├── Back Arrow.png
│ │ │ └── Back Arrow@2x.png
│ │ │ ├── index.html
│ │ │ ├── privacypolicy.html
│ │ │ ├── privacypolicy.md
│ │ │ ├── termofuse.html
│ │ │ └── termofuse.md
│ ├── Services
│ │ ├── DebugLogger.cs
│ │ ├── ExposureNotificationHandler.cs
│ │ ├── ExposureNotificationService.cs
│ │ ├── FFImageLoadingLogger.cs
│ │ ├── HttpDataService.cs
│ │ ├── HttpDataServiceMock.cs
│ │ ├── ICloseApplication.cs
│ │ ├── IDeviceVerifier.cs
│ │ ├── IHttpDataService.cs
│ │ ├── ISkipBackup.cs
│ │ ├── NotificationEventArgs.cs
│ │ ├── TestNativeImplementation.cs
│ │ ├── UserDataMigrationService.cs
│ │ └── UserDataService.cs
│ ├── Templates
│ │ ├── HelpMenuTemplate.xaml
│ │ ├── HelpMenuTemplate.xaml.cs
│ │ └── UnUsed
│ │ │ ├── BeaconItemTemplate .xaml
│ │ │ ├── BeaconItemTemplate .xaml.cs
│ │ │ ├── ContributorItemTemplate.xaml
│ │ │ ├── ContributorItemTemplate.xaml.cs
│ │ │ ├── StepItemTemplate.xaml
│ │ │ └── StepItemTemplate.xaml.cs
│ ├── ViewModels
│ │ ├── ExceptionPageViewModel.cs
│ │ ├── HelpPage
│ │ │ ├── HelpMenuPageViewModel.cs
│ │ │ ├── HelpPage1ViewModel.cs
│ │ │ ├── HelpPage2ViewModel.cs
│ │ │ ├── HelpPage3ViewModel.cs
│ │ │ ├── HelpPage4ViewModel.cs
│ │ │ └── InqueryPageViewModel.cs
│ │ ├── HomePage
│ │ │ ├── ChatbotPageViewModel.cs
│ │ │ ├── ContactedNotifyPageViewModel.cs
│ │ │ ├── ExposuresPageViewModel.cs
│ │ │ ├── HomePageViewModel.cs
│ │ │ ├── NotContactPageViewModel.cs
│ │ │ ├── NotifyOtherPageViewModel.cs
│ │ │ ├── PrivacyPolicyPage2ViewModel.cs
│ │ │ ├── SubmitConsentViewModel.cs
│ │ │ ├── TermsofservicePageViewModel.cs
│ │ │ ├── ThankYouNotifyOtherPageViewModel.cs
│ │ │ └── UnUsed
│ │ │ │ ├── ContributorsPageViewModel.cs
│ │ │ │ └── UpdateInformationPageViewModel.cs
│ │ ├── MenuPageViewModel.cs
│ │ ├── Settings
│ │ │ ├── DebugPageViewModel.cs
│ │ │ ├── LicenseAgreementPageViewModel.cs
│ │ │ └── SettingsPageViewModel.cs
│ │ ├── Tutorial
│ │ │ ├── PrivacyPolicyPageViewModel.cs
│ │ │ ├── TutorialPage1ViewModel.cs
│ │ │ ├── TutorialPage2ViewModel.cs
│ │ │ ├── TutorialPage3ViewModel.cs
│ │ │ ├── TutorialPage4ViewModel.cs
│ │ │ ├── TutorialPage5ViewModel.cs
│ │ │ ├── TutorialPage6ViewModel.cs
│ │ │ └── UnUsed
│ │ │ │ ├── DescriptionPage1ViewModel.cs
│ │ │ │ ├── DescriptionPage2ViewModel.cs
│ │ │ │ ├── DescriptionPage3ViewModel.cs
│ │ │ │ ├── DescriptionPage4ViewModel.cs
│ │ │ │ ├── InitSettingPageViewModel.cs
│ │ │ │ ├── SetupCompletedPageViewModel.cs
│ │ │ │ └── StartTutorialPageViewModel.cs
│ │ ├── UnUsed
│ │ │ ├── DescriptionPageViewModel.cs
│ │ │ ├── DetectedBeaconPageViewmodel.cs
│ │ │ ├── HeadsupPageViewModel.cs
│ │ │ ├── InputSmsOTPPageViewModel.cs
│ │ │ ├── MainPageViewModel.cs
│ │ │ ├── SharePositiveDiagnosisPageViewModel.cs
│ │ │ ├── SmsVerificationPageViewModel.cs
│ │ │ ├── StatusUpdateCompletePageViewModel.cs
│ │ │ └── UserSettingPageViewModel.cs
│ │ └── ViewModelBase.cs
│ ├── Views
│ │ ├── ExceptionPage.xaml
│ │ ├── ExceptionPage.xaml.cs
│ │ ├── HelpPage
│ │ │ ├── HelpMenuPage.xaml
│ │ │ ├── HelpMenuPage.xaml.cs
│ │ │ ├── HelpPage1.xaml
│ │ │ ├── HelpPage1.xaml.cs
│ │ │ ├── HelpPage2.xaml
│ │ │ ├── HelpPage2.xaml.cs
│ │ │ ├── HelpPage3.xaml
│ │ │ ├── HelpPage3.xaml.cs
│ │ │ ├── HelpPage4.xaml
│ │ │ ├── HelpPage4.xaml.cs
│ │ │ ├── InqueryPage.xaml
│ │ │ └── InqueryPage.xaml.cs
│ │ ├── HomePage
│ │ │ ├── ChatbotPage.xaml
│ │ │ ├── ChatbotPage.xaml.cs
│ │ │ ├── ContactedNotifyPage.xaml
│ │ │ ├── ContactedNotifyPage.xaml.cs
│ │ │ ├── ExposuresPage.xaml
│ │ │ ├── ExposuresPage.xaml.cs
│ │ │ ├── HomePage.xaml
│ │ │ ├── HomePage.xaml.cs
│ │ │ ├── NotContactPage.xaml
│ │ │ ├── NotContactPage.xaml.cs
│ │ │ ├── NotifyOtherPage.xaml
│ │ │ ├── NotifyOtherPage.xaml.cs
│ │ │ ├── PrivacyPolicyPage2.xaml
│ │ │ ├── PrivacyPolicyPage2.xaml.cs
│ │ │ ├── SubmitConsentPage.xaml
│ │ │ ├── SubmitConsentPage.xaml.cs
│ │ │ ├── TermsofservicePage.xaml
│ │ │ ├── TermsofservicePage.xaml.cs
│ │ │ ├── ThankYouNotifyOtherPage.xaml
│ │ │ ├── ThankYouNotifyOtherPage.xaml.cs
│ │ │ └── UnUsed
│ │ │ │ ├── ContributorsPage.xaml
│ │ │ │ ├── ContributorsPage.xaml.cs
│ │ │ │ ├── UpdateInformationPage.xaml
│ │ │ │ └── UpdateInformationPage.xaml.cs
│ │ ├── MenuPage.xaml
│ │ ├── MenuPage.xaml.cs
│ │ ├── NavigatePopoverWebView.cs
│ │ ├── Settings
│ │ │ ├── DebugPage.xaml
│ │ │ ├── DebugPage.xaml.cs
│ │ │ ├── LicenseAgreementPage.xaml
│ │ │ ├── LicenseAgreementPage.xaml.cs
│ │ │ ├── SettingsPage.xaml
│ │ │ └── SettingsPage.xaml.cs
│ │ ├── Tutorial
│ │ │ ├── PrivacyPolicyPage.xaml
│ │ │ ├── PrivacyPolicyPage.xaml.cs
│ │ │ ├── TutorialPage1.xaml
│ │ │ ├── TutorialPage1.xaml.cs
│ │ │ ├── TutorialPage2.xaml
│ │ │ ├── TutorialPage2.xaml.cs
│ │ │ ├── TutorialPage3.xaml
│ │ │ ├── TutorialPage3.xaml.cs
│ │ │ ├── TutorialPage4.xaml
│ │ │ ├── TutorialPage4.xaml.cs
│ │ │ ├── TutorialPage5.xaml
│ │ │ ├── TutorialPage5.xaml.cs
│ │ │ ├── TutorialPage6.xaml
│ │ │ ├── TutorialPage6.xaml.cs
│ │ │ └── UnUsed
│ │ │ │ ├── DescriptionPage1.xaml
│ │ │ │ ├── DescriptionPage1.xaml.cs
│ │ │ │ ├── DescriptionPage2.xaml
│ │ │ │ ├── DescriptionPage2.xaml.cs
│ │ │ │ ├── DescriptionPage3.xaml
│ │ │ │ ├── DescriptionPage3.xaml.cs
│ │ │ │ ├── DescriptionPage4.xaml
│ │ │ │ ├── DescriptionPage4.xaml.cs
│ │ │ │ ├── InitSettingPage.xaml
│ │ │ │ ├── InitSettingPage.xaml.cs
│ │ │ │ ├── SetupCompletedPage.xaml
│ │ │ │ ├── SetupCompletedPage.xaml.cs
│ │ │ │ ├── StartTutorialPage.xaml
│ │ │ │ └── StartTutorialPage.xaml.cs
│ │ └── UnUsed
│ │ │ ├── DescriptionPage.xaml
│ │ │ ├── DescriptionPage.xaml.cs
│ │ │ ├── DetectedBeaconPage.xaml
│ │ │ ├── DetectedBeaconPage.xaml.cs
│ │ │ ├── HeadsupPage.xaml
│ │ │ ├── HeadsupPage.xaml.cs
│ │ │ ├── InputSmsOTPPage.xaml
│ │ │ ├── InputSmsOTPPage.xaml.cs
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cs
│ │ │ ├── SharePositiveDiagnosisPage.xaml
│ │ │ ├── SharePositiveDiagnosisPage.xaml.cs
│ │ │ ├── SmsVerificationPage.xaml
│ │ │ ├── SmsVerificationPage.xaml.cs
│ │ │ ├── StatusUpdateCompletePage.xaml
│ │ │ ├── StatusUpdateCompletePage.xaml.cs
│ │ │ ├── UserSettingPage.xaml
│ │ │ └── UserSettingPage.xaml.cs
│ └── settings.json
├── Tests
│ └── Covid19Radar.UITest
│ │ ├── App.config
│ │ ├── Covid19Radar.UITest.csproj
│ │ ├── Features
│ │ ├── HomePage
│ │ │ ├── ContributorsList.feature
│ │ │ ├── ContributorsList.feature.cs
│ │ │ ├── ContributorsListFeature.cs
│ │ │ ├── Home.feature
│ │ │ ├── Home.feature.cs
│ │ │ ├── HomeFeature.cs
│ │ │ ├── LicenseAgreement.feature
│ │ │ ├── LicenseAgreement.feature.cs
│ │ │ ├── LicenseAgreementFeature.cs
│ │ │ ├── UpdateInformation.feature
│ │ │ ├── UpdateInformation.feature.cs
│ │ │ └── UpdateInformationFeature.cs
│ │ └── Tutorial
│ │ │ ├── Tutorial.feature
│ │ │ ├── Tutorial.feature.cs
│ │ │ └── TutorialFeature.cs
│ │ ├── NUnitAssemblyHooks.cs
│ │ ├── ReadMe.txt
│ │ ├── SharedSteps
│ │ └── ExampleSharedSteps.cs
│ │ └── TestConfig.json
└── Xamarin.ExposureNotification
│ ├── CallbackService.android.cs
│ ├── ExposureInfo.shared.cs
│ ├── ExposureNotification.android.cs
│ ├── ExposureNotification.ios.cs
│ ├── ExposureNotification.netstandard.cs
│ ├── ExposureNotification.shared.cs
│ ├── IExposureNotificationHandler.shared.cs
│ ├── TemporaryExposureKey.shared.cs
│ └── Xamarin.ExposureNotification.csproj
├── HOW_TO_TRANSLATE_CONTRIBUTE.md
├── LICENSE.md
├── LICENSE.txt
├── README.ja.md
├── README.md
├── Tools
├── ConvertBase64
│ ├── ConvertBase64.sln
│ └── ConvertBase64
│ │ ├── ConvertBase64.csproj
│ │ └── Program.cs
├── GenerateKeys
│ ├── GenerateKeys.sln
│ └── GenerateKeys
│ │ ├── GenerateKeys.csproj
│ │ └── Program.cs
├── UpdateUserStatusTool
│ ├── UpdateUserStatusTool.sln
│ └── UpdateUserStatusTool
│ │ ├── App.config.example
│ │ ├── Program.cs
│ │ ├── Properties
│ │ └── launchSettings.json
│ │ └── UpdateUserStatusTool.csproj
└── compileProtoc.bat
├── azure-pipelines.yml
├── design
├── COVID19Radar_Design.xd
├── icon-image
│ ├── Android
│ │ ├── GooglePlayStore.png
│ │ ├── hdpi.png
│ │ ├── ldpi.png
│ │ ├── mdpi.png
│ │ ├── xhdpi.png
│ │ ├── xxhdpi.png
│ │ └── xxxhdpi.png
│ └── iOS
│ │ ├── Watch
│ │ ├── AppIcon24x24@2x.png
│ │ ├── AppIcon27.5x27.5@2x.png
│ │ ├── AppIcon40x40@2x.png
│ │ ├── AppIcon44x44@2x.png
│ │ ├── AppIcon86x86@2x.png
│ │ └── AppIcon98x98@2x.png
│ │ ├── iPad
│ │ ├── Icon-72.png
│ │ ├── Icon-72@2x.png
│ │ ├── Icon-76.png
│ │ ├── Icon-76@2x.png
│ │ ├── Icon-83.5@2x.png
│ │ ├── Icon-Notification.png
│ │ ├── Icon-Small-50.png
│ │ └── Icon-Small-50@2x.png
│ │ └── iPhone
│ │ ├── Icon-60@2x.png
│ │ ├── Icon-60@3x.png
│ │ ├── Icon-Notification@3x.png
│ │ ├── Icon-Small-40.png
│ │ ├── Icon-Small-40@2x.png
│ │ ├── Icon-Small.png
│ │ ├── Icon-Small@2x.png
│ │ ├── Icon-Small@3x.png
│ │ ├── Icon.png
│ │ ├── Icon@2x.png
│ │ ├── iTunesArtwork.png
│ │ └── iTunesArtwork@2x.png
└── icon.psd
├── doc
├── .attachments
│ ├── 001-b599dd92-5ae8-4cfe-afcd-39dab6961620.jpg
│ ├── 001-ef93a6ea-2412-419f-b39e-d1988a8238f2.jpg
│ ├── 002-c0bd6cac-6123-45bc-9889-ce088d42d301.jpg
│ ├── 002-f02541d3-c430-4857-9d9f-95e8ee960f3f.jpg
│ ├── 003-77b8ea07-d4db-46b6-8b04-e95a4c4afe46.jpg
│ ├── 003-d8b42038-2227-460f-9261-4378857ed7e0.jpg
│ ├── 004-420d3962-cbbf-49c3-9292-12f7bd9e5416.jpg
│ ├── 004-44d2d2e4-f9a1-48b3-9410-fefe42b315b4.jpg
│ ├── 005-a7e4d71b-da91-452b-9280-65393677e755.jpg
│ ├── 006-1acdcd85-ddc3-42c5-b45e-0d3b36ed573a.jpg
│ ├── 007-a2a39a61-b25b-4a95-843e-2319df02b5e3.jpg
│ ├── Android_001_DeviceSecurity01.png
│ ├── Android_002_DeviceSecurity.png
│ ├── Android_003_DeviceSecurity.png
│ ├── Android_004_appcenter.png
│ ├── Android_005_appcenter_signin.png
│ ├── Android_006_appcenter_selectapps.png
│ ├── Android_007_appcenter_installpage-qr.png
│ ├── Android_008_appcenter_intallpage.png
│ ├── Android_009_appcenter_downloading_apk.png
│ ├── Android_009_appcenter_downloading_apk012_installing_apk.png
│ ├── Android_010_appcenter_downloading_apk.png
│ ├── Android_011_installing_apk.png
│ ├── Android_012_installing_apk.png
│ ├── Android_013_installing_apk.png
│ ├── Android_014_installed_apk.png
│ ├── Android_015_Update-Notify-Mail.png
│ ├── Android_015_installed_apk.png
│ ├── Android_016_Update-Notify-Mail.png
│ ├── Android_017_Update-Install.png
│ ├── Android_018_Update-Install.png
│ ├── Screenshot 2020-04-14 10.02.10-fb28e6a0-2d6a-45b5-9e9a-07abd3fa4ecd.png
│ ├── Screenshot 2020-04-14 10.33.05-85bb4b76-7377-403a-8835-1093bf5e2561.png
│ ├── Screenshot 2020-04-14 10.33.14-9bd851a7-2824-4ea1-8ad3-506ec13aea00.png
│ ├── appcenter-qrcode.png
│ ├── image-35068853-c6ed-4fbc-96d6-b4e30c906fa0.png
│ ├── image-775c62fd-b63c-4a12-a027-6b5e40401152.png
│ ├── image-b9670ee1-20cc-4588-9671-901fbaa433cb.png
│ ├── image-cf0f1174-104e-4ee5-a602-47af850c520a.png
│ ├── image-fa94e249-2692-499a-9386-6ec08dec8e5e.png
│ ├── test001-43c7d8ae-84e5-481b-88fa-ac6682bbbdd2.png
│ ├── test002-17da080d-4803-4059-acbc-ce716690d389.png
│ ├── test003-abd0f8ab-030c-4a54-b87c-757d2225791f.png
│ ├── test005-b5be66b5-b50a-49ad-a96e-917e39f99e2b.png
│ ├── test006-757808c3-a9cc-4f73-8cd5-adfdb1efebf5.png
│ └── test007-2130f953-49f4-4399-8e32-20ebe4cf8606.png
├── .order
├── Developer-Note.md
├── FAQ-on-Mobile-App-build-failed.md
├── HOT_TO_CREATE_DEV_ENV.md
├── HOW_TO_BUILD_SERVER_SIDE.md
├── HOW_TO_USE_YOUR_COUNTRY.md
├── How-to-use
│ ├── .attachments
│ │ ├── iPhone-AboutApp-SS.png
│ │ ├── iPhone-App-Installed-SS.png
│ │ ├── iPhone-Bluetooth-Information-SS.png
│ │ ├── iPhone-Enable-GPS-SS.png
│ │ ├── iPhone-Enable-Notify-SS.png
│ │ ├── iPhone-Enalbe-Bluetooth-SS.png
│ │ ├── iPhone-Menu-SS.png
│ │ ├── iPhone-Opening-SS.png
│ │ ├── iPhone-Privacy-Policy-SS.png
│ │ ├── iPhone-Reg-001-SS.png
│ │ ├── iPhone-Reg-002-SS.png
│ │ ├── iPhone-Reg-003-SS.png
│ │ ├── iPhone-Reg-004-SS.png
│ │ ├── iPhone-Reg-005-SS.png
│ │ └── iPhone-Registory-done-SS.png.png
│ ├── iPhone-how-to-use.ja.md
│ └── iPhone-how-to-use.md
├── SERVER_SIDE_ARCHITECTURE.md
├── Tester.md
├── Tester
│ ├── .order
│ ├── Android-tester-instructions.md
│ ├── Tester-Instructions.md
│ └── iPhone-tester-instructions.md
├── WebApi
│ ├── Diagnosis.md
│ ├── OptOut.md
│ ├── README.md
│ └── Register.md
├── WorkFlow.pptx
└── images
│ ├── AppResources.png
│ ├── AppResources.resx.png
│ ├── AzurePortal.png
│ ├── BuildSolution.png
│ ├── CIPipeline.png
│ ├── ChangeStartup.png
│ ├── CloudExplorer.png
│ ├── Configration.png
│ ├── Configration2.png
│ ├── Configration3.png
│ ├── DebugEmulator.png
│ ├── Deployment.png
│ ├── DevArchitecture.png
│ ├── GenerateKeys.png
│ ├── ImageSource.png
│ ├── MinimumArchitectureForDevelopment.png
│ ├── ProdArchitecture.png
│ ├── PublishApi0.png
│ ├── PublishApi1.png
│ ├── PublishApi2.png
│ ├── PublishApi3.png
│ ├── PublishApi4.png
│ ├── PublishBatch0.png
│ ├── PublishBatch1.png
│ ├── PublishBatch2.png
│ ├── PublishBatch3.png
│ ├── PublishBatch4.png
│ ├── ResourceForXaml.png
│ ├── androidImageResources.png
│ ├── app.xaml.cs.png
│ ├── debugmock.png
│ ├── deployment_cli.png
│ ├── folder.png
│ ├── iOSImageResources.png
│ ├── menupageviewmodel.png
│ ├── menupageviewmodel2.png
│ ├── mockupmode.png
│ ├── muiresources.png
│ └── opencloudshell.png
├── forVScode.code-workspace
├── img
├── AppDescription-en.jpg
├── AppDescription.jpg
├── design00-en.jpg
├── design00.jpg
├── design00.png
├── design01.jpg
├── design02-en.png
├── design02.png
├── explanation.png
└── explanation_en.png
├── infrastructure
├── 01_init
│ ├── Readme.md
│ ├── main.tf
│ ├── provider.tf
│ └── variables.tf
├── 02_runtime
│ ├── Readme.md
│ ├── main.tf
│ ├── provider.tf
│ └── variables.tf
└── Readme.md
└── src
├── Covid19Radar.Api.Common
├── Common
│ ├── Constants.cs
│ ├── ErrorStrings.cs
│ ├── KeyLock.cs
│ ├── PartitionKeyRotation.cs
│ ├── QueryCache.cs
│ └── RiskLevel.cs
├── Covid19Radar.Api.Common.csproj
├── DataAccess
│ ├── CosmosDiagnosisRepository.cs
│ ├── CosmosSequenceRepository.cs
│ ├── CosmosTemporaryExposureKeyExportRepository.cs
│ ├── CosmosTemporaryExposureKeyRepository.cs
│ ├── IDiagnosisRepository.cs
│ ├── ISequenceRepository.cs
│ ├── ITemporaryExposureKeyExportRepository.cs
│ └── ITemporaryExposureKeyRepository.cs
├── DataStore
│ ├── Cosmos.cs
│ └── ICosmos.cs
├── Extensions
│ ├── HttpRequestExtensions.cs
│ ├── IConfigurationExtension.cs
│ └── IServiceCollectionExtension.cs
├── Models
│ ├── CustomVerificationStatusModel.cs
│ ├── DiagnosisModel.cs
│ ├── IPayload.cs
│ ├── IUser.cs
│ ├── SequenceModel.cs
│ ├── TemporaryExposureKeyExportModel.cs
│ ├── TemporaryExposureKeyModel.cs
│ └── UserModel.cs
└── Services
│ ├── CryptionService.cs
│ ├── ICryptionService.cs
│ ├── IValidationServerService.cs
│ ├── IValidationUserService.cs
│ ├── ValidationServerService.cs
│ └── ValidationUserService.cs
├── Covid19Radar.Api.External
├── Covid19Radar.Api.External.csproj
├── DiagnosisApi.cs
├── Startup.cs
├── host.json
└── local.settings.json.example
├── Covid19Radar.Api.Tests
├── Background
│ ├── BackgroundStartupTest.cs
│ └── Services
│ │ ├── TemporaryExposureKeyBlobServiceTest.cs
│ │ └── TemporaryExposureKeySignServiceTest.cs
├── Common
│ ├── DataAccess
│ │ └── CosmosDiagnosisRepositoryTest.cs
│ ├── DataStore
│ │ └── CosmosTest.cs
│ ├── Extensions
│ │ └── HttpRequestExtensionsTest.cs
│ ├── KeyLockTest.cs
│ ├── Models
│ │ ├── DiagnosisModelTest.cs
│ │ ├── SequenceModelTest.cs
│ │ ├── TemporaryExposureKeyExportModelTest.cs
│ │ ├── TemporaryExposureKeyModelTest.cs
│ │ └── UserModelTest.cs
│ ├── QueryCacheTest.cs
│ └── Services
│ │ ├── CryptionServiceTest.cs
│ │ ├── ValidationServerServiceTest.cs
│ │ └── ValidationUserServiceTest.cs
├── Covid19Radar.Api.Tests.csproj
├── DiagnosisApiTest.cs
├── External
│ ├── ExternalDiagnosisApiTest.cs
│ └── ExternalStartupTest.cs
├── Helper
│ └── ModelTestHelper.cs
├── Mock
│ ├── LoggerMock.cs
│ └── MoqMockHelper.cs
├── Models
│ ├── DiagnosisSubmissionParameterTest.cs
│ ├── RegisterResultModelTest.cs
│ ├── TemporaryExposureKeysResultTest.cs
│ └── UserParameterTest.cs
├── OptOutApiTest.cs
├── Protobuf
│ ├── SignatureInfoTest.cs
│ ├── TEKSignatureListTest.cs
│ ├── TEKSignatureTest.cs
│ ├── TemporaryExposureKeyExportTest.cs
│ └── TemporaryExposureKeyTest.cs
├── RegisterApiTest.cs
├── StartupTest.cs
└── TemporaryExposureKeysApiTest.cs
├── Covid19Radar.Api
├── Covid19Radar.Api.csproj
├── DataAccess
│ ├── ConfigAuthorizedAppRepository.cs
│ ├── CosmosUserRepository.cs
│ ├── CustomVerificationStatusRepository.cs
│ ├── IAuthorizedAppRepository.cs
│ ├── ICustomVerificationStatusRepository.cs
│ └── IUserRepository.cs
├── DiagnosisApi.cs
├── Extensions
│ ├── AndroidExtensions.cs
│ └── IConfigurationExtension.cs
├── Models
│ ├── AuthorizedAppInformation.cs
│ ├── DiagnosisSubmissionParameter.cs
│ ├── RegisterResultModel.cs
│ ├── TemporaryExposureKeysResult.cs
│ └── UserParameter.cs
├── OptOutApi.cs
├── RegisterApi.cs
├── Services
│ ├── CustomVerificationService.cs
│ ├── DeviceValidationAndroidService.cs
│ ├── DeviceValidationAppleService.cs
│ ├── DeviceValidationService.cs
│ ├── IAccessDenyService.cs
│ ├── IDeviceValidationService.cs
│ └── IVerificationService.cs
├── Startup.cs
├── TemporaryExposureKeysApi.cs
├── host.json
└── local.settings.json.example
└── Covid19Radar.Background
├── Covid19Radar.Background.csproj
├── Extentions
├── IConfigurationExtension.cs
└── TemporaryExposureKeyExtension.cs
├── Models
└── TemporaryExposureKeyExportFileModel.cs
├── Protobuf
├── TemporaryExposureKeyExportFileFormat.g.cs
└── TemporaryExposureKeyExportFileFormat.proto
├── Services
├── AzureCdnManagementService.cs
├── ICdnManagementService.cs
├── ITemporaryExposureKeyBlobService.cs
├── ITemporaryExposureKeyDeleteBatchService.cs
├── ITemporaryExposureKeyExportBatchService.cs
├── ITemporaryExposureKeySignService.cs
├── ITemporaryExposureKeySignatureInfoService.cs
├── TemporaryExposureKeyBlobService.cs
├── TemporaryExposureKeyDeleteBatchService.cs
├── TemporaryExposureKeyExportBatchService.cs
├── TemporaryExposureKeySignService.cs
└── TemporaryExposureKeySignatureInfoService.cs
├── Startup.cs
├── TemporaryExposureKeyDeleteBatch.cs
├── TemporaryExposureKeyExportBatch.cs
├── host.json
└── local.settings.json.example
/.github/ISSUE_TEMPLATE/custom.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Custom issue template
3 | about: Describe this issue template's purpose here.
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 |
11 |
--------------------------------------------------------------------------------
/COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/COPYRIGHT_THIRD_PARTY_SOFTWARE_NOTICES.md
--------------------------------------------------------------------------------
/CleanBuild.bat:
--------------------------------------------------------------------------------
1 | git clean -xdf --exclude=packages
2 |
3 | for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"
4 | pause
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Assets/Roboto-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Assets/Roboto-Regular.ttf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-hdpi/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-ldpi/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-mdpi/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xhdpi/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxhdpi/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/drawable-xxxhdpi/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/drawable/splash_screen.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 | -
7 |
11 |
12 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/layout/Main.axml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.Android/Resources/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Covid19Radar
4 |
5 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Resources/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #1976D2
4 | #019AE8
5 | #019AE8
6 | #019AE8
7 | #019AE8
8 | #019AE8
9 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Services/SkipBackup.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Droid.Services;
2 | using Covid19Radar.Services;
3 | using Xamarin.Forms;
4 |
5 | [assembly: Dependency(typeof(SkipBackup))]
6 | namespace Covid19Radar.Droid.Services
7 | {
8 | public class SkipBackup : ISkipBackup
9 | {
10 | public void skipBackup(string fileName)
11 | {
12 | // only iOS , for android see Android.manifest
13 | }
14 | }
15 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Services/UnUsed/MonitorEventArgs.cs:
--------------------------------------------------------------------------------
1 | using AltBeaconOrg.BoundBeacon;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 |
7 | namespace Covid19Radar.Droid.Services
8 | {
9 | public class MonitorEventArgs : EventArgs
10 | {
11 | public Region Region { get; set; }
12 | public int State { get; set; }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.Android/Services/UnUsed/RangeEventArgs.cs:
--------------------------------------------------------------------------------
1 | using AltBeaconOrg.BoundBeacon;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 |
7 |
8 | namespace Covid19Radar.Droid.Services
9 | {
10 | public class RangeEventArgs : EventArgs
11 | {
12 | public Region Region { get; set; }
13 | public ICollection Beacons { get; set; }
14 | }
15 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/100.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/1024.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/1024.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/114.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/120.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/1201.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/1201.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/121.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/121.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/128.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/144.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/152.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/167.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/167.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/172.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/172.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/180.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/196.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/196.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/216.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/216.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/256.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/29.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/401.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/401.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/402.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/402.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/48.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/512.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/55.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/55.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/57.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/58.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/58.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/581.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/581.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/64.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/72.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/76.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/80.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/801.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/801.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/87.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/87.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/88.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/AppIcons.appiconset/88.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.developer.exposure-notification
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Entitlements.simulator.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.developer.exposure-notification
6 |
7 | keychain-access-groups
8 |
9 | $(AppIdentifierPrefix)jp.go.mhlw.covid19radar
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using UIKit;
2 |
3 | namespace Covid19Radar.iOS
4 | {
5 | public class Application
6 | {
7 | // This is the main entry point of the application.
8 | static void Main(string[] args)
9 | {
10 | // if you want to use a different Application Delegate class from "AppDelegate"
11 | // you can specify it here.
12 | UIApplication.Main(args, null, "AppDelegate");
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage10@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage10@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage10@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage10@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage11@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage11@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage11@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HOMEPage11@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HeaderLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HeaderLogo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HeaderLogo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HeaderLogo@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HeaderLogo@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HeaderLogo@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage20@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage20@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage21.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage21.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage21@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage21@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage21@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage21@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage22.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage22.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage22@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage22@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage22@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage22@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage30.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage30@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage30@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage30@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage30@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage31.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage31@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage31@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage31@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage31@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage32.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage32@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage32@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage32@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage32@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage40@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage40@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage41.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage41.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage41@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage41@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage41@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage41@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage42.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage42@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage42@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage42@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage42@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage44.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage44@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage44@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage44@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage44@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage45.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage45.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage45@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage45@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage45@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage45@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage50@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage50@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage50@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/HelpPage50@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/IconHamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/IconHamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/IconHamburger@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/IconHamburger@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/IconHamburger@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/IconHamburger@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/InfoMark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/InfoMark.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/InfoMark@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/InfoMark@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/InfoMark@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/InfoMark@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Logo.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Logo@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Logo@1x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Logo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Logo@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Logo@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Logo@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Nocontact10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Nocontact10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Nocontact10@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Nocontact10@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/Nocontact10@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/Nocontact10@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashImg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashImg.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashImg@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashImg@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashImg@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashImg@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage10@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage10@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage10@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage10@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage11@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage11@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage11@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/SplashPage11@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage10.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage10@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage10@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage10@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage10@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage11.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage11@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage11@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage11@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage11@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage12.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage12@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage12@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage12@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage12@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage20.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage20@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage20@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage40.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage40@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage40@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage50.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage50@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage50@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage50@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage50@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage60.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage60@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/TutorialPage60@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/ic_hamburger@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/ic_hamburger@1x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/ic_hamburger@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/ic_hamburger@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Resources/ic_hamburger@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar.iOS/Resources/ic_hamburger@3x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar.iOS/Services/CloseApplication.cs:
--------------------------------------------------------------------------------
1 | using System.Threading;
2 | using Covid19Radar.iOS.Services;
3 | using Covid19Radar.Services;
4 | using Xamarin.Forms;
5 |
6 | [assembly: Dependency(typeof(CloseApplication))]
7 | namespace Covid19Radar.iOS.Services
8 | {
9 | public class CloseApplication : ICloseApplication
10 | {
11 | public void closeApplication()
12 | {
13 | Thread.CurrentThread.Abort();
14 | }
15 | }
16 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Common/Utils.cs:
--------------------------------------------------------------------------------
1 | using Newtonsoft.Json;
2 |
3 | namespace Covid19Radar.Common
4 | {
5 | public static class Utils
6 | {
7 | public static string SerializeToJson(object obj) => JsonConvert.SerializeObject(obj);
8 |
9 | public static T DeserializeFromJson(string jsonObj) => JsonConvert.DeserializeObject(jsonObj);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Image/ic_hamburger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Image/ic_hamburger.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/PositiveDiagnosisState.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Covid19Radar.Model
4 | {
5 | public class PositiveDiagnosisState
6 | {
7 | public string DiagnosisUid { get; set; }
8 |
9 | public DateTimeOffset DiagnosisDate { get; set; }
10 |
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/TemporaryExposureKeysResult.cs:
--------------------------------------------------------------------------------
1 | using Newtonsoft.Json;
2 | using System.Collections.Generic;
3 |
4 | namespace Covid19Radar.Model
5 | {
6 | public class TemporaryExposureKeysResult
7 | {
8 | [JsonProperty("timestamp")]
9 | public long Timestamp { get; set; }
10 |
11 | [JsonProperty("keys")]
12 | public IEnumerable Keys { get; set; }
13 |
14 | public class Key
15 | {
16 | public string Url;
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/UnUsed/ContributorModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Model
2 | {
3 | public class ContributorModel
4 | {
5 | public string Fullname { get; set; }
6 |
7 | public string Role { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/UnUsed/HomeMenuModel.cs:
--------------------------------------------------------------------------------
1 | using System.Windows.Input;
2 |
3 | namespace Covid19Radar.Model
4 | {
5 | public class HomeMenuModel
6 | {
7 | public string Title { get; set; }
8 | public ICommand Command { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/UnUsed/ISQLiteConnectionProvider.cs:
--------------------------------------------------------------------------------
1 | using SQLite;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Text;
5 |
6 | namespace Covid19Radar.Model
7 | {
8 | public interface ISQLiteConnectionProvider
9 | {
10 | SQLiteConnection GetConnection();
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/UnUsed/Language.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Covid19Radar.Model
6 | {
7 | public class Language
8 | {
9 | public string DisplayName
10 | {
11 | get;
12 | set;
13 | }
14 | public string ShortName
15 | {
16 | get;
17 | set;
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/UnUsed/LanguageModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Covid19Radar.Model
6 | {
7 | public class LanguageModel
8 | {
9 | public string DisplayName
10 | {
11 | get;
12 | set;
13 | }
14 | public string ShortName
15 | {
16 | get;
17 | set;
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Model/UnUsed/TermsOfServiceModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Model
2 | {
3 | public class TermsOfServiceModel
4 | {
5 | public string Title { get; set; }
6 | public string Description { get; set; }
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Renderers/BorderlessEntry.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace Covid19Radar.Renderers
4 | {
5 | public class BorderlessEntry :Entry
6 | {
7 | public BorderlessEntry()
8 | {
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/NotoSansCJKjp-Medium.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/NotoSansCJKjp-Medium.otf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/NotoSansCJKjp-Regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/NotoSansCJKjp-Regular.otf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/Roboto-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/Roboto-Regular.ttf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/fa-brands-400.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/fa-brands-400.otf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/fa-regular-400.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/fa-regular-400.otf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/fa-solid-900.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/fa-solid-900.otf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/Fonts/materialdesignicons-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/Fonts/materialdesignicons-webfont.ttf
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/en/img/Back Arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/en/img/Back Arrow.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/en/img/Back Arrow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/en/img/Back Arrow@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/index.html
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/ja/img/Back Arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/ja/img/Back Arrow.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/ja/img/Back Arrow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/ja/img/Back Arrow@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/license.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/license.md
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/zh-hans/img/Back Arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/zh-hans/img/Back Arrow.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Resources/html/zh-hans/img/Back Arrow@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/Covid19Radar/Covid19Radar/Resources/html/zh-hans/img/Back Arrow@2x.png
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Services/ICloseApplication.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Services
2 | {
3 | public interface ICloseApplication
4 | {
5 | void closeApplication();
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Services/ISkipBackup.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Services
2 | {
3 | public interface ISkipBackup
4 | {
5 | // only iOS
6 | void skipBackup(string fileName);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Services/NotificationEventArgs.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Covid19Radar.Services
4 | {
5 | public class NotificationEventArgs : EventArgs
6 | {
7 | public string Title { get; set; }
8 | public string Message { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Templates/HelpMenuTemplate.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Templates
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class HelpMenuTemplate : ContentView
8 | {
9 | public HelpMenuTemplate()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Templates/UnUsed/BeaconItemTemplate .xaml.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Templates
2 | {
3 | public partial class BeaconItemTemplate
4 | {
5 | public BeaconItemTemplate()
6 | {
7 | InitializeComponent();
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Templates/UnUsed/ContributorItemTemplate.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Templates
2 | {
3 | public partial class ContributorItemTemplate
4 | {
5 | public ContributorItemTemplate()
6 | {
7 | InitializeComponent();
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Templates/UnUsed/StepItemTemplate.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Templates
2 | {
3 | public partial class StepItemTemplate
4 | {
5 | public StepItemTemplate()
6 | {
7 | InitializeComponent();
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/ViewModels/ExceptionPageViewModel.cs:
--------------------------------------------------------------------------------
1 | using Prism.Mvvm;
2 |
3 | namespace Covid19Radar.ViewModels
4 | {
5 | public class ExceptionPageViewModel : BindableBase
6 | {
7 | private string _message;
8 | public string Message
9 | {
10 | get => _message;
11 | set => SetProperty(ref _message, value);
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/ViewModels/HelpPage/HelpPage1ViewModel.cs:
--------------------------------------------------------------------------------
1 | using Prism.Navigation;
2 |
3 | namespace Covid19Radar.ViewModels
4 | {
5 | public class HelpPage1ViewModel : ViewModelBase
6 | {
7 | public HelpPage1ViewModel(INavigationService navigationService) : base(navigationService)
8 | {
9 | Title = Resources.AppResources.HelpPage1Title;
10 | }
11 |
12 | }
13 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/ViewModels/HomePage/SubmitConsentViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.ViewModels
2 | {
3 | public class SubmitConsentViewModel : ViewModelBase
4 | {
5 | public SubmitConsentViewModel() : base()
6 | {
7 | }
8 |
9 | }
10 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/ViewModels/HomePage/TermsofservicePageViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.ViewModels
2 | {
3 | public class TermsofservicePageViewModel : ViewModelBase
4 | {
5 | public TermsofservicePageViewModel() : base()
6 | {
7 | }
8 |
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/ViewModels/Tutorial/TutorialPage1ViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.ViewModels
2 | {
3 | public class TutorialPage1ViewModel : ViewModelBase
4 | {
5 | public TutorialPage1ViewModel() : base()
6 | {
7 | }
8 |
9 | }
10 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/ViewModels/Tutorial/TutorialPage2ViewModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.ViewModels
2 | {
3 | public class TutorialPage2ViewModel : ViewModelBase
4 | {
5 | public TutorialPage2ViewModel() : base()
6 | {
7 | }
8 |
9 | }
10 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/ExceptionPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 |
13 | public partial class ExceptionPage : ContentPage
14 | {
15 | public ExceptionPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HelpPage/HelpPage1.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class HelpPage1 : ContentPage
8 | {
9 | public HelpPage1()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HelpPage/HelpPage2.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class HelpPage2 : ContentPage
8 | {
9 | public HelpPage2()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HelpPage/HelpPage3.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class HelpPage3 : ContentPage
8 | {
9 | public HelpPage3()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HelpPage/HelpPage4.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class HelpPage4 : ContentPage
8 | {
9 | public HelpPage4()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HelpPage/InqueryPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 |
13 | public partial class InqueryPage : ContentPage
14 | {
15 | public InqueryPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/ChatbotPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class ChatbotPage : ContentPage
8 | {
9 | public ChatbotPage()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/ExposuresPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 | using Xamarin.Forms.Xaml;
9 |
10 | namespace Covid19Radar.Views
11 | {
12 | [XamlCompilation(XamlCompilationOptions.Compile)]
13 | public partial class ExposuresPage : ContentPage
14 | {
15 | public ExposuresPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/HomePage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 |
13 | public partial class HomePage : ContentPage
14 | {
15 | public HomePage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/NotifyOtherPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 | public partial class NotifyOtherPage : ContentPage
13 | {
14 | public NotifyOtherPage()
15 | {
16 | InitializeComponent();
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/SubmitConsentPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class SubmitConsentPage : ContentPage
8 | {
9 | public SubmitConsentPage()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/TermsofservicePage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class TermsofservicePage : ContentPage
8 | {
9 | public TermsofservicePage()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/HomePage/UnUsed/ContributorsPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace Covid19Radar.Views
4 | {
5 | public partial class ContributorsPage : ContentPage
6 | {
7 | public ContributorsPage()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/MenuPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 | using Xamarin.Forms.Xaml;
9 |
10 | namespace Covid19Radar.Views
11 | {
12 | [XamlCompilation(XamlCompilationOptions.Compile)]
13 | public partial class MenuPage : Xamarin.Forms.MasterDetailPage
14 | {
15 | public MenuPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Settings/DebugPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 | using Xamarin.Forms.Xaml;
9 |
10 | namespace Covid19Radar.Views
11 | {
12 | [XamlCompilation(XamlCompilationOptions.Compile)]
13 | public partial class DebugPage : ContentPage
14 | {
15 | public DebugPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Settings/SettingsPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 |
13 | public partial class SettingsPage : ContentPage
14 | {
15 | public SettingsPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/TutorialPage1.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class TutorialPage1 : ContentPage
8 | {
9 | public TutorialPage1()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/TutorialPage2.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class TutorialPage2 : ContentPage
8 | {
9 | public TutorialPage2()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/TutorialPage4.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class TutorialPage4 : ContentPage
8 | {
9 | public TutorialPage4()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/TutorialPage5.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class TutorialPage5 : ContentPage
8 | {
9 | public TutorialPage5()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/TutorialPage6.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class TutorialPage6 : ContentPage
8 | {
9 | public TutorialPage6()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/DescriptionPage1.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class DescriptionPage1 : ContentPage
8 | {
9 | public DescriptionPage1()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/DescriptionPage2.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class DescriptionPage2 : ContentPage
8 | {
9 | public DescriptionPage2()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/DescriptionPage3.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class DescriptionPage3 : ContentPage
8 | {
9 | public DescriptionPage3()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/DescriptionPage4.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class DescriptionPage4 : ContentPage
8 | {
9 | public DescriptionPage4()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/InitSettingPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 |
8 | public partial class InitSettingPage : ContentPage
9 | {
10 | public InitSettingPage()
11 | {
12 | InitializeComponent();
13 | }
14 | }
15 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/SetupCompletedPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace Covid19Radar.Views
4 | {
5 | public partial class SetupCompletedPage : ContentPage
6 | {
7 | public SetupCompletedPage()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/Tutorial/UnUsed/StartTutorialPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms.Xaml;
2 |
3 | namespace Covid19Radar.Views
4 | {
5 | [XamlCompilation(XamlCompilationOptions.Compile)]
6 |
7 | public partial class StartTutorialPage
8 | {
9 | public StartTutorialPage()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/UnUsed/DescriptionPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 | using Xamarin.Forms.Xaml;
3 |
4 | namespace Covid19Radar.Views
5 | {
6 | [XamlCompilation(XamlCompilationOptions.Compile)]
7 | public partial class DescriptionPage : ContentPage
8 | {
9 | public DescriptionPage()
10 | {
11 | InitializeComponent();
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/UnUsed/HeadsupPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 | public partial class HeadsupPage : ContentPage
13 | {
14 | public HeadsupPage()
15 | {
16 | InitializeComponent();
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/UnUsed/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | using Xamarin.Forms;
8 | using Xamarin.Forms.Xaml;
9 |
10 | namespace Covid19Radar.Views
11 | {
12 | [XamlCompilation(XamlCompilationOptions.Compile)]
13 | public partial class MainPage : Shell
14 | {
15 | public MainPage()
16 | {
17 | InitializeComponent();
18 | }
19 | }
20 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/UnUsed/StatusUpdateCompletePage.xaml.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace Covid19Radar.Views
4 | {
5 | public partial class StatusUpdateCompletePage : ContentPage
6 | {
7 | public StatusUpdateCompletePage()
8 | {
9 | InitializeComponent();
10 | }
11 | }
12 | }
--------------------------------------------------------------------------------
/Covid19Radar/Covid19Radar/Views/UnUsed/UserSettingPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 | using Xamarin.Forms;
7 | using Xamarin.Forms.Xaml;
8 |
9 | namespace Covid19Radar.Views
10 | {
11 | [XamlCompilation(XamlCompilationOptions.Compile)]
12 | public partial class UserSettingPage : ContentPage
13 | {
14 | public UserSettingPage()
15 | {
16 | InitializeComponent();
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/App.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/Features/HomePage/ContributorsList.feature:
--------------------------------------------------------------------------------
1 | Feature: Contributors List
2 |
3 | Scenario: Navigate to Contributors List
4 | Given I am on "HOME" page
5 | When I tap on MasterDetail Hamburger
6 | Then I can see a label marked as "Contributors List"
7 | When I tap on "Contributors List" element
8 | Then I am on "Contributors List" page
9 | # to complete
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/Features/HomePage/HomeFeature.cs:
--------------------------------------------------------------------------------
1 | using NUnit.Framework;
2 | using Xamarin.UITest;
3 | using Xamariners.EndToEnd.Xamarin.Features;
4 |
5 | namespace Covid19Radar.UITest.Features.HomePage
6 | {
7 | [TestFixture(Platform.Android)]
8 | #if __Apple__
9 | [TestFixture(Platform.iOS)]
10 | #endif
11 |
12 | public partial class HomeFeature : FeatureBase
13 | {
14 | public HomeFeature(Platform platform) : base(platform)
15 | {
16 | }
17 | }
18 | }
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/Features/HomePage/LicenseAgreement.feature:
--------------------------------------------------------------------------------
1 | Feature: LicenseAgreement
2 |
3 |
4 | Scenario: Navigate to License Agreement
5 | Given I am on "HOME" page
6 | When I tap on MasterDetail Hamburger
7 | Then I can see a label marked as "License Agreement"
8 | When I tap on "License Agreement" element
9 | Then I am on "License Agreement" page
10 | # to complete
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/Features/HomePage/UpdateInformation.feature:
--------------------------------------------------------------------------------
1 | Feature: UpdateInformation
2 |
3 | Scenario: Navigate to Update Information
4 | Given I am on "HOME" page
5 | When I tap on MasterDetail Hamburger
6 | Then I can see a label marked as "Update Information"
7 | When I tap on "Update Information" element
8 | Then I am on "Update Information" page
9 | # to complete
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/Features/Tutorial/TutorialFeature.cs:
--------------------------------------------------------------------------------
1 | using NUnit.Framework;
2 | using Xamarin.UITest;
3 | using Xamariners.EndToEnd.Xamarin.Features;
4 |
5 | namespace Covid19Radar.UITest.Features.Tutorial
6 | {
7 | [TestFixture(Platform.Android)]
8 | #if __Apple__
9 | [TestFixture(Platform.iOS)]
10 | #endif
11 |
12 | public partial class TutorialFeature : FeatureBase
13 | {
14 | public TutorialFeature(Platform platform) : base(platform)
15 | {
16 | }
17 | }
18 | }
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/NUnitAssemblyHooks.cs:
--------------------------------------------------------------------------------
1 | using NUnit.Framework;
2 | using Xamariners.EndToEnd.Xamarin.Infrastructure;
3 |
4 | namespace Covid19Radar.UITest
5 | {
6 | [SetUpFixture]
7 | public class NUnitAssemblyHooks : NUnitAssemblyHooksBase
8 | {
9 | static NUnitAssemblyHooks()
10 | {
11 | RunnerConfiguration.CurrentAssembly = typeof(NUnitAssemblyHooks).Assembly;
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/Covid19Radar/Tests/Covid19Radar.UITest/ReadMe.txt:
--------------------------------------------------------------------------------
1 | Documentation:
2 |
3 | How to write tests with Xamariners.EndToEnd.Xamarin
4 | https://github.com/Xamariners/Xamariners.EndToEnd.Xamarin
5 |
6 | UI Test:
7 | https://docs.microsoft.com/en-us/appcenter/test-cloud/uitest/
--------------------------------------------------------------------------------
/Tools/ConvertBase64/ConvertBase64/ConvertBase64.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Tools/GenerateKeys/GenerateKeys/GenerateKeys.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Tools/UpdateUserStatusTool/UpdateUserStatusTool/App.config.example:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Tools/UpdateUserStatusTool/UpdateUserStatusTool/Properties/launchSettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "profiles": {
3 | "UpdateUserStatusTool": {
4 | "commandName": "Project",
5 | "commandLineArgs": "None 0 1"
6 | }
7 | }
8 | }
--------------------------------------------------------------------------------
/Tools/UpdateUserStatusTool/UpdateUserStatusTool/UpdateUserStatusTool.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Exe
5 | netcoreapp3.1
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Tools/compileProtoc.bat:
--------------------------------------------------------------------------------
1 |
2 | protoc --proto_path=..\src\Covid19Radar.Background\Protobuf\ --csharp_out=..\src\Covid19Radar.Background\Protobuf\ --csharp_opt=file_extension=.g.cs TemporaryExposureKeyExportFileFormat.proto
3 |
4 | PAUSE
--------------------------------------------------------------------------------
/design/COVID19Radar_Design.xd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/COVID19Radar_Design.xd
--------------------------------------------------------------------------------
/design/icon-image/Android/GooglePlayStore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/GooglePlayStore.png
--------------------------------------------------------------------------------
/design/icon-image/Android/hdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/hdpi.png
--------------------------------------------------------------------------------
/design/icon-image/Android/ldpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/ldpi.png
--------------------------------------------------------------------------------
/design/icon-image/Android/mdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/mdpi.png
--------------------------------------------------------------------------------
/design/icon-image/Android/xhdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/xhdpi.png
--------------------------------------------------------------------------------
/design/icon-image/Android/xxhdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/xxhdpi.png
--------------------------------------------------------------------------------
/design/icon-image/Android/xxxhdpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/Android/xxxhdpi.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/Watch/AppIcon24x24@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/Watch/AppIcon24x24@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/Watch/AppIcon27.5x27.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/Watch/AppIcon27.5x27.5@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/Watch/AppIcon40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/Watch/AppIcon40x40@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/Watch/AppIcon44x44@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/Watch/AppIcon44x44@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/Watch/AppIcon86x86@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/Watch/AppIcon86x86@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/Watch/AppIcon98x98@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/Watch/AppIcon98x98@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-72.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-72@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-72@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-76.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-76@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-83.5@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-Notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-Notification.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-Small-50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-Small-50.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPad/Icon-Small-50@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPad/Icon-Small-50@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-60@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-60@3x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-Notification@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-Notification@3x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-Small-40.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-Small.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-Small@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon-Small@3x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/Icon@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/Icon@2x.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/iTunesArtwork.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/iTunesArtwork.png
--------------------------------------------------------------------------------
/design/icon-image/iOS/iPhone/iTunesArtwork@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon-image/iOS/iPhone/iTunesArtwork@2x.png
--------------------------------------------------------------------------------
/design/icon.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/design/icon.psd
--------------------------------------------------------------------------------
/doc/.attachments/001-b599dd92-5ae8-4cfe-afcd-39dab6961620.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/001-b599dd92-5ae8-4cfe-afcd-39dab6961620.jpg
--------------------------------------------------------------------------------
/doc/.attachments/001-ef93a6ea-2412-419f-b39e-d1988a8238f2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/001-ef93a6ea-2412-419f-b39e-d1988a8238f2.jpg
--------------------------------------------------------------------------------
/doc/.attachments/002-c0bd6cac-6123-45bc-9889-ce088d42d301.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/002-c0bd6cac-6123-45bc-9889-ce088d42d301.jpg
--------------------------------------------------------------------------------
/doc/.attachments/002-f02541d3-c430-4857-9d9f-95e8ee960f3f.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/002-f02541d3-c430-4857-9d9f-95e8ee960f3f.jpg
--------------------------------------------------------------------------------
/doc/.attachments/003-77b8ea07-d4db-46b6-8b04-e95a4c4afe46.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/003-77b8ea07-d4db-46b6-8b04-e95a4c4afe46.jpg
--------------------------------------------------------------------------------
/doc/.attachments/003-d8b42038-2227-460f-9261-4378857ed7e0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/003-d8b42038-2227-460f-9261-4378857ed7e0.jpg
--------------------------------------------------------------------------------
/doc/.attachments/004-420d3962-cbbf-49c3-9292-12f7bd9e5416.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/004-420d3962-cbbf-49c3-9292-12f7bd9e5416.jpg
--------------------------------------------------------------------------------
/doc/.attachments/004-44d2d2e4-f9a1-48b3-9410-fefe42b315b4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/004-44d2d2e4-f9a1-48b3-9410-fefe42b315b4.jpg
--------------------------------------------------------------------------------
/doc/.attachments/005-a7e4d71b-da91-452b-9280-65393677e755.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/005-a7e4d71b-da91-452b-9280-65393677e755.jpg
--------------------------------------------------------------------------------
/doc/.attachments/006-1acdcd85-ddc3-42c5-b45e-0d3b36ed573a.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/006-1acdcd85-ddc3-42c5-b45e-0d3b36ed573a.jpg
--------------------------------------------------------------------------------
/doc/.attachments/007-a2a39a61-b25b-4a95-843e-2319df02b5e3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/007-a2a39a61-b25b-4a95-843e-2319df02b5e3.jpg
--------------------------------------------------------------------------------
/doc/.attachments/Android_001_DeviceSecurity01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_001_DeviceSecurity01.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_002_DeviceSecurity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_002_DeviceSecurity.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_003_DeviceSecurity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_003_DeviceSecurity.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_004_appcenter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_004_appcenter.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_005_appcenter_signin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_005_appcenter_signin.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_006_appcenter_selectapps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_006_appcenter_selectapps.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_007_appcenter_installpage-qr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_007_appcenter_installpage-qr.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_008_appcenter_intallpage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_008_appcenter_intallpage.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_009_appcenter_downloading_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_009_appcenter_downloading_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_009_appcenter_downloading_apk012_installing_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_009_appcenter_downloading_apk012_installing_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_010_appcenter_downloading_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_010_appcenter_downloading_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_011_installing_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_011_installing_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_012_installing_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_012_installing_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_013_installing_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_013_installing_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_014_installed_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_014_installed_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_015_Update-Notify-Mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_015_Update-Notify-Mail.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_015_installed_apk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_015_installed_apk.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_016_Update-Notify-Mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_016_Update-Notify-Mail.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_017_Update-Install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_017_Update-Install.png
--------------------------------------------------------------------------------
/doc/.attachments/Android_018_Update-Install.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Android_018_Update-Install.png
--------------------------------------------------------------------------------
/doc/.attachments/Screenshot 2020-04-14 10.02.10-fb28e6a0-2d6a-45b5-9e9a-07abd3fa4ecd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Screenshot 2020-04-14 10.02.10-fb28e6a0-2d6a-45b5-9e9a-07abd3fa4ecd.png
--------------------------------------------------------------------------------
/doc/.attachments/Screenshot 2020-04-14 10.33.05-85bb4b76-7377-403a-8835-1093bf5e2561.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Screenshot 2020-04-14 10.33.05-85bb4b76-7377-403a-8835-1093bf5e2561.png
--------------------------------------------------------------------------------
/doc/.attachments/Screenshot 2020-04-14 10.33.14-9bd851a7-2824-4ea1-8ad3-506ec13aea00.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/Screenshot 2020-04-14 10.33.14-9bd851a7-2824-4ea1-8ad3-506ec13aea00.png
--------------------------------------------------------------------------------
/doc/.attachments/appcenter-qrcode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/appcenter-qrcode.png
--------------------------------------------------------------------------------
/doc/.attachments/image-35068853-c6ed-4fbc-96d6-b4e30c906fa0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/image-35068853-c6ed-4fbc-96d6-b4e30c906fa0.png
--------------------------------------------------------------------------------
/doc/.attachments/image-775c62fd-b63c-4a12-a027-6b5e40401152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/image-775c62fd-b63c-4a12-a027-6b5e40401152.png
--------------------------------------------------------------------------------
/doc/.attachments/image-b9670ee1-20cc-4588-9671-901fbaa433cb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/image-b9670ee1-20cc-4588-9671-901fbaa433cb.png
--------------------------------------------------------------------------------
/doc/.attachments/image-cf0f1174-104e-4ee5-a602-47af850c520a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/image-cf0f1174-104e-4ee5-a602-47af850c520a.png
--------------------------------------------------------------------------------
/doc/.attachments/image-fa94e249-2692-499a-9386-6ec08dec8e5e.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/image-fa94e249-2692-499a-9386-6ec08dec8e5e.png
--------------------------------------------------------------------------------
/doc/.attachments/test001-43c7d8ae-84e5-481b-88fa-ac6682bbbdd2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/test001-43c7d8ae-84e5-481b-88fa-ac6682bbbdd2.png
--------------------------------------------------------------------------------
/doc/.attachments/test002-17da080d-4803-4059-acbc-ce716690d389.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/test002-17da080d-4803-4059-acbc-ce716690d389.png
--------------------------------------------------------------------------------
/doc/.attachments/test003-abd0f8ab-030c-4a54-b87c-757d2225791f.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/test003-abd0f8ab-030c-4a54-b87c-757d2225791f.png
--------------------------------------------------------------------------------
/doc/.attachments/test005-b5be66b5-b50a-49ad-a96e-917e39f99e2b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/test005-b5be66b5-b50a-49ad-a96e-917e39f99e2b.png
--------------------------------------------------------------------------------
/doc/.attachments/test006-757808c3-a9cc-4f73-8cd5-adfdb1efebf5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/test006-757808c3-a9cc-4f73-8cd5-adfdb1efebf5.png
--------------------------------------------------------------------------------
/doc/.attachments/test007-2130f953-49f4-4399-8e32-20ebe4cf8606.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/.attachments/test007-2130f953-49f4-4399-8e32-20ebe4cf8606.png
--------------------------------------------------------------------------------
/doc/.order:
--------------------------------------------------------------------------------
1 | Knowledge-Base
2 | Developer-Note
3 | FAQ-on-Mobile-App-build-failed
4 | step-by-step-for-functions-development
5 | Tester
6 |
--------------------------------------------------------------------------------
/doc/FAQ-on-Mobile-App-build-failed.md:
--------------------------------------------------------------------------------
1 | 1. Can't build Xamarin.App with error saying :
2 |
3 | `AppResources` does not contain a definition for `SomeString`
4 | 
5 | - Solution: Open one of `AppResources.resx` and edit some file in it and save again. It will generating correct `AppResources.Designer.cs` and the error gone.
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-AboutApp-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-AboutApp-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-App-Installed-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-App-Installed-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Bluetooth-Information-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Bluetooth-Information-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Enable-GPS-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Enable-GPS-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Enable-Notify-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Enable-Notify-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Enalbe-Bluetooth-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Enalbe-Bluetooth-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Menu-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Menu-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Opening-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Opening-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Privacy-Policy-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Privacy-Policy-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Reg-001-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Reg-001-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Reg-002-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Reg-002-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Reg-003-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Reg-003-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Reg-004-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Reg-004-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Reg-005-SS.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Reg-005-SS.png
--------------------------------------------------------------------------------
/doc/How-to-use/.attachments/iPhone-Registory-done-SS.png.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/How-to-use/.attachments/iPhone-Registory-done-SS.png.png
--------------------------------------------------------------------------------
/doc/Tester.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/Tester.md
--------------------------------------------------------------------------------
/doc/Tester/.order:
--------------------------------------------------------------------------------
1 | Tester-Instructions
2 | iPhone-tester-instructions
3 | Android-tester-instructions
--------------------------------------------------------------------------------
/doc/WebApi/OptOut.md:
--------------------------------------------------------------------------------
1 | # DELETE /api/OptOut/{userUuid}
2 | for Client Application
3 | At the time of first registration.
4 |
5 | ## Request
6 | ### Authorization: Bearer [Secret at Register]
7 | ### Content-Type: `application/json`
8 | ### Body:
9 | ```
10 | {
11 | "userUuid": "string"
12 | }
13 | ```
14 | ## Response 204
15 | Successful
16 |
17 | ## Response 400
18 | for Malicious user
19 |
--------------------------------------------------------------------------------
/doc/WorkFlow.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/WorkFlow.pptx
--------------------------------------------------------------------------------
/doc/images/AppResources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/AppResources.png
--------------------------------------------------------------------------------
/doc/images/AppResources.resx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/AppResources.resx.png
--------------------------------------------------------------------------------
/doc/images/AzurePortal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/AzurePortal.png
--------------------------------------------------------------------------------
/doc/images/BuildSolution.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/BuildSolution.png
--------------------------------------------------------------------------------
/doc/images/CIPipeline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/CIPipeline.png
--------------------------------------------------------------------------------
/doc/images/ChangeStartup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/ChangeStartup.png
--------------------------------------------------------------------------------
/doc/images/CloudExplorer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/CloudExplorer.png
--------------------------------------------------------------------------------
/doc/images/Configration.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/Configration.png
--------------------------------------------------------------------------------
/doc/images/Configration2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/Configration2.png
--------------------------------------------------------------------------------
/doc/images/Configration3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/Configration3.png
--------------------------------------------------------------------------------
/doc/images/DebugEmulator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/DebugEmulator.png
--------------------------------------------------------------------------------
/doc/images/Deployment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/Deployment.png
--------------------------------------------------------------------------------
/doc/images/DevArchitecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/DevArchitecture.png
--------------------------------------------------------------------------------
/doc/images/GenerateKeys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/GenerateKeys.png
--------------------------------------------------------------------------------
/doc/images/ImageSource.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/ImageSource.png
--------------------------------------------------------------------------------
/doc/images/MinimumArchitectureForDevelopment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/MinimumArchitectureForDevelopment.png
--------------------------------------------------------------------------------
/doc/images/ProdArchitecture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/ProdArchitecture.png
--------------------------------------------------------------------------------
/doc/images/PublishApi0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishApi0.png
--------------------------------------------------------------------------------
/doc/images/PublishApi1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishApi1.png
--------------------------------------------------------------------------------
/doc/images/PublishApi2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishApi2.png
--------------------------------------------------------------------------------
/doc/images/PublishApi3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishApi3.png
--------------------------------------------------------------------------------
/doc/images/PublishApi4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishApi4.png
--------------------------------------------------------------------------------
/doc/images/PublishBatch0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishBatch0.png
--------------------------------------------------------------------------------
/doc/images/PublishBatch1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishBatch1.png
--------------------------------------------------------------------------------
/doc/images/PublishBatch2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishBatch2.png
--------------------------------------------------------------------------------
/doc/images/PublishBatch3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishBatch3.png
--------------------------------------------------------------------------------
/doc/images/PublishBatch4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/PublishBatch4.png
--------------------------------------------------------------------------------
/doc/images/ResourceForXaml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/ResourceForXaml.png
--------------------------------------------------------------------------------
/doc/images/androidImageResources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/androidImageResources.png
--------------------------------------------------------------------------------
/doc/images/app.xaml.cs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/app.xaml.cs.png
--------------------------------------------------------------------------------
/doc/images/debugmock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/debugmock.png
--------------------------------------------------------------------------------
/doc/images/deployment_cli.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/deployment_cli.png
--------------------------------------------------------------------------------
/doc/images/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/folder.png
--------------------------------------------------------------------------------
/doc/images/iOSImageResources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/iOSImageResources.png
--------------------------------------------------------------------------------
/doc/images/menupageviewmodel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/menupageviewmodel.png
--------------------------------------------------------------------------------
/doc/images/menupageviewmodel2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/menupageviewmodel2.png
--------------------------------------------------------------------------------
/doc/images/mockupmode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/mockupmode.png
--------------------------------------------------------------------------------
/doc/images/muiresources.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/muiresources.png
--------------------------------------------------------------------------------
/doc/images/opencloudshell.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/doc/images/opencloudshell.png
--------------------------------------------------------------------------------
/forVScode.code-workspace:
--------------------------------------------------------------------------------
1 | {
2 | "folders": [
3 | {
4 | "path": "."
5 | }
6 | ],
7 | "settings": {}
8 | }
--------------------------------------------------------------------------------
/img/AppDescription-en.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/AppDescription-en.jpg
--------------------------------------------------------------------------------
/img/AppDescription.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/AppDescription.jpg
--------------------------------------------------------------------------------
/img/design00-en.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/design00-en.jpg
--------------------------------------------------------------------------------
/img/design00.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/design00.jpg
--------------------------------------------------------------------------------
/img/design00.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/design00.png
--------------------------------------------------------------------------------
/img/design01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/design01.jpg
--------------------------------------------------------------------------------
/img/design02-en.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/design02-en.png
--------------------------------------------------------------------------------
/img/design02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/design02.png
--------------------------------------------------------------------------------
/img/explanation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/explanation.png
--------------------------------------------------------------------------------
/img/explanation_en.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/img/explanation_en.png
--------------------------------------------------------------------------------
/infrastructure/01_init/Readme.md:
--------------------------------------------------------------------------------
1 | # Storage Account for Terraform state
2 |
3 | Create a storage account for the terraform state files.
4 | Use Azure CLI authentication for deploying resources.
5 |
6 | ```bash
7 | $ az login
8 | $ az account set --subscription=""
9 | $ terraform init
10 | $ terraform validate
11 | $ terraform apply -auto-approve
12 | ```
13 |
14 |
--------------------------------------------------------------------------------
/infrastructure/01_init/provider.tf:
--------------------------------------------------------------------------------
1 | provider "azurerm" {
2 | version = "2.4.0"
3 | features {}
4 | }
5 |
6 | terraform {
7 | required_version = ">= v0.12.18"
8 | }
--------------------------------------------------------------------------------
/infrastructure/02_runtime/Readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Covid-19Radar/Covid19Radar/0ac8e057469fa03be462d8c8d96a80cfef005740/infrastructure/02_runtime/Readme.md
--------------------------------------------------------------------------------
/infrastructure/02_runtime/provider.tf:
--------------------------------------------------------------------------------
1 | provider "azurerm" {
2 | version = "2.4.0"
3 | features {}
4 | }
5 |
6 | terraform {
7 | required_version = ">= v0.12.18"
8 | backend "azurerm" {
9 | resource_group_name = "terraform-state-rg" # Resource Group Name for the Storage Account.
10 | container_name = "tfstate"
11 | key = "prod.terraform.tfstate"
12 | }
13 | }
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.Common/Common/RiskLevel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Api.Common
2 | {
3 | public enum RiskLevel
4 | {
5 | Invalid = 0,
6 | Lowest = 1,
7 | Low = 2,
8 | MediumLow = 3,
9 | Medium = 4,
10 | MediumHigh = 5,
11 | High = 6,
12 | VeryHigh = 7,
13 | Highest = 8
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.Common/DataAccess/ISequenceRepository.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace Covid19Radar.Api.DataAccess
4 | {
5 | public interface ISequenceRepository
6 | {
7 | Task GetNextAsync(string key, ulong startNo, int increment = 1);
8 | Task GetNextAsync(Common.PartitionKeyRotation.KeyInformation key, ulong startNo, int increment = 1);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.Common/Models/CustomVerificationStatusModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Api.Models
2 | {
3 | public class CustomVerificationStatusModel
4 | {
5 | public string id { get; set; }
6 | public string Result { get; set; }
7 | public int HttpStatusCode { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.Common/Models/IPayload.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Api.Models
2 | {
3 | ///
4 | /// Payload for http request message.
5 | ///
6 | public interface IPayload
7 | {
8 | ///
9 | /// Validation Results
10 | ///
11 | /// true if valid
12 | bool IsValid();
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.Common/Models/SequenceModel.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Api.Models
2 | {
3 | public class SequenceModel
4 | {
5 | public string id { get; set; }
6 | public string PartitionKey { get; set; }
7 | public ulong value { get; set; }
8 | public string _self { get; set; }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.Common/Services/ICryptionService.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Api.Services
2 | {
3 | public interface ICryptionService
4 | {
5 | string CreateSecret(string userUuid);
6 | bool ValidateSecret(string userUuid, string secret);
7 | string Protect(string secret);
8 | string Unprotect(string protectSecret);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.External/host.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2.0",
3 | "logging": {
4 | "logLevel": {
5 | "default": "Information"
6 | },
7 | "applicationInsights": {
8 | "samplingExcludedTypes": "Request",
9 | "samplingSettings": {
10 | "isEnabled": true
11 | }
12 | }
13 | }
14 | }
--------------------------------------------------------------------------------
/src/Covid19Radar.Api.External/local.settings.json.example:
--------------------------------------------------------------------------------
1 | {
2 | "IsEncrypted": false,
3 | "Values": {
4 | "AzureWebJobsStorage": "UseDevelopmentStorage=true",
5 | "FUNCTIONS_WORKER_RUNTIME": "dotnet",
6 | "COSMOS_ENDPOINT_URI": "https://localhost:8081",
7 | "COSMOS_PRIMARY_KEY": "C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==",
8 | "COSMOS_DATABASE_ID": "EXAMPLE",
9 | "COSMOS_AUTO_GENERATE": true
10 | }
11 | }
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/DataAccess/IAuthorizedAppRepository.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Api.Models;
2 | using System.Threading.Tasks;
3 |
4 | namespace Covid19Radar.Api.DataAccess
5 | {
6 | public interface IAuthorizedAppRepository
7 | {
8 | Task GetAsync(string platform);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/DataAccess/ICustomVerificationStatusRepository.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Api.Models;
2 | using System.Threading.Tasks;
3 |
4 | namespace Covid19Radar.Api.DataAccess
5 | {
6 | public interface ICustomVerificationStatusRepository
7 | {
8 | Task GetAsync();
9 |
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/DataAccess/IUserRepository.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Api.Models;
2 | using System.Threading.Tasks;
3 |
4 | #nullable enable
5 |
6 | namespace Covid19Radar.Api.DataAccess
7 | {
8 | public interface IUserRepository
9 | {
10 | Task GetById(string id);
11 |
12 | Task Create(UserModel user);
13 |
14 | Task Exists(string id);
15 |
16 | Task Delete(IUser user);
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/Models/TemporaryExposureKeysResult.cs:
--------------------------------------------------------------------------------
1 | using Newtonsoft.Json;
2 | using System.Collections.Generic;
3 |
4 | namespace Covid19Radar.Api.Models
5 | {
6 | public class TemporaryExposureKeysResult
7 | {
8 | [JsonProperty("timestamp")]
9 | public long Timestamp { get; set; }
10 |
11 | [JsonProperty("keys")]
12 | public IEnumerable Keys { get; set; }
13 |
14 | public class Key
15 | {
16 | public string Url;
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/Models/UserParameter.cs:
--------------------------------------------------------------------------------
1 | using Newtonsoft.Json;
2 |
3 | namespace Covid19Radar.Api.Models
4 | {
5 | [JsonObject("userParameter")]
6 | public class UserParameter: IUser
7 | {
8 | ///
9 | /// User UUID / take care misunderstand Becon ID
10 | ///
11 | /// User UUID
12 | [JsonProperty("userUuid")]
13 | public string UserUuid { get; set; }
14 |
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/Services/IAccessDenyService.cs:
--------------------------------------------------------------------------------
1 | namespace Covid19Radar.Api.Services
2 | {
3 | public interface IAccessDenyService
4 | {
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/Services/IDeviceValidationService.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Api.Models;
2 | using System;
3 | using System.Threading.Tasks;
4 |
5 | namespace Covid19Radar.Api.Services
6 | {
7 | public interface IDeviceValidationService
8 | {
9 | Task Validation(DiagnosisSubmissionParameter param, DateTimeOffset requestTime);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Api/Services/IVerificationService.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace Covid19Radar.Api.Services
4 | {
5 | public interface IVerificationService
6 | {
7 | Task VerificationAsync(string payload);
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Background/Services/ICdnManagementService.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using System.Threading.Tasks;
3 |
4 | namespace Covid19Radar.Background.Services
5 | {
6 | public interface ICdnManagementService
7 | {
8 | Task PurgeAsync(IList contentPaths);
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Background/Services/ITemporaryExposureKeyDeleteBatchService.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace Covid19Radar.Background.Services
4 | {
5 | public interface ITemporaryExposureKeyDeleteBatchService
6 | {
7 | Task RunAsync();
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Background/Services/ITemporaryExposureKeyExportBatchService.cs:
--------------------------------------------------------------------------------
1 | using System.Threading.Tasks;
2 |
3 | namespace Covid19Radar.Background.Services
4 | {
5 | public interface ITemporaryExposureKeyExportBatchService
6 | {
7 | Task RunAsync();
8 | }
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Background/Services/ITemporaryExposureKeySignService.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Background.Protobuf;
2 | using System.IO;
3 | using System.Threading.Tasks;
4 |
5 | namespace Covid19Radar.Background.Services
6 | {
7 | public interface ITemporaryExposureKeySignService
8 | {
9 |
10 | Task SignAsync(MemoryStream source);
11 |
12 | Task SetSignatureAsync(SignatureInfo info);
13 | }
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Background/Services/ITemporaryExposureKeySignatureInfoService.cs:
--------------------------------------------------------------------------------
1 | using Covid19Radar.Background.Protobuf;
2 |
3 | namespace Covid19Radar.Background.Services
4 | {
5 | public interface ITemporaryExposureKeySignatureInfoService
6 | {
7 | SignatureInfo Create();
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/src/Covid19Radar.Background/host.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2.0",
3 | "logging": {
4 | "logLevel": {
5 | "default": "Information"
6 | },
7 | "applicationInsights": {
8 | "samplingExcludedTypes": "Request",
9 | "samplingSettings": {
10 | "isEnabled": true
11 | }
12 | }
13 | },
14 | "functionTimeout": "00:10:00"
15 | }
--------------------------------------------------------------------------------