├── src ├── .editorconfig ├── MobileKidsIdApp │ ├── MobileKidsIdApp.iOS │ │ ├── Resources │ │ │ ├── icon.png │ │ │ ├── csmn-logo.png │ │ │ ├── ht-logo.png │ │ │ ├── mcm-logo.jpg │ │ │ └── ameco-logo.jpg │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── appicon_120.png │ │ │ │ ├── appicon_152.png │ │ │ │ ├── appicon_167.png │ │ │ │ ├── appicon_180.png │ │ │ │ ├── appicon_20.png │ │ │ │ ├── appicon_29.png │ │ │ │ ├── appicon_40.png │ │ │ │ ├── appicon_58.png │ │ │ │ ├── appicon_60.png │ │ │ │ ├── appicon_76.png │ │ │ │ ├── appicon_80.png │ │ │ │ ├── appicon_87.png │ │ │ │ └── appicon_1024.png │ │ ├── Entitlements.plist │ │ ├── Main.cs │ │ ├── Info.plist │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── AppDelegate.cs │ ├── MobileKidsIdApp │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── ViewModels │ │ │ ├── DocumentsViewModel.cs │ │ │ ├── DocumentRenderViewModel.cs │ │ │ ├── CurrentChildViewModel.cs │ │ │ ├── BasicDetailsViewModel.cs │ │ │ ├── MedicalNotesViewModel.cs │ │ │ ├── PreparationChecklistViewModel.cs │ │ │ ├── FriendListViewModel.cs │ │ │ ├── CareProvidersViewModel.cs │ │ │ ├── StaticContentViewModel.cs │ │ │ ├── FamilyMemberListViewModel.cs │ │ │ ├── DistinguishingFeaturesViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── CreatePasswordViewModel.cs │ │ │ └── PhysicalDetailsViewModel.cs │ │ ├── Resources │ │ │ ├── Fonts │ │ │ │ ├── FontAwesome5Regular400.otf │ │ │ │ ├── FontAwesome5Solid900.otf │ │ │ │ └── SolidGlyphs.cs │ │ │ ├── AppColors.cs │ │ │ └── Docs │ │ │ │ ├── amberalert.html │ │ │ │ ├── Documents.cs │ │ │ │ └── disasterprep.html │ │ ├── Views │ │ │ ├── LoginPage.xaml.cs │ │ │ ├── PhotosPage.xaml.cs │ │ │ ├── FriendListPage.xaml.cs │ │ │ ├── BasicDetailsPage.xaml.cs │ │ │ ├── ChildProfilePage.xaml.cs │ │ │ ├── DocumentRenderPage.xaml.cs │ │ │ ├── MedicalNotesPage.xaml.cs │ │ │ ├── CareProvidersPage.xaml.cs │ │ │ ├── CreatePasswordPage.xaml.cs │ │ │ ├── StaticContentPage.xaml.cs │ │ │ ├── PhysicalDetailsPage.xaml.cs │ │ │ ├── ChildProfileListPage.xaml.cs │ │ │ ├── FamilyMemberListPage.xaml.cs │ │ │ ├── InstructionIndexPage.xaml.cs │ │ │ ├── PreparationChecklistPage.xaml.cs │ │ │ ├── DistinguishingFeaturesPage.xaml.cs │ │ │ ├── DocumentRenderPage.xaml │ │ │ ├── DocumentsPage.xaml.cs │ │ │ ├── StaticContentPage.xaml │ │ │ ├── DocumentsPage.xaml │ │ │ ├── CustomWebView.cs │ │ │ ├── MedicalNotesPage.xaml │ │ │ ├── InstructionIndexPage.xaml │ │ │ ├── BasicDetailsPage.xaml │ │ │ ├── FriendListPage.xaml │ │ │ ├── DistinguishingFeaturesPage.xaml │ │ │ ├── PreparationChecklistPage.xaml │ │ │ ├── FamilyMemberListPage.xaml │ │ │ ├── ChildProfilePage.xaml │ │ │ ├── CareProvidersPage.xaml │ │ │ ├── PhotosPage.xaml │ │ │ └── MainPage.cs │ │ ├── Controls │ │ │ ├── ChildProfileView.xaml.cs │ │ │ └── GenderToColorConverter.cs │ │ ├── Platform │ │ │ └── IPhotoPicker.cs │ │ ├── Models │ │ │ ├── FamilyMember.cs │ │ │ ├── DistinguishingFeature.cs │ │ │ ├── FileReference.cs │ │ │ ├── Person.cs │ │ │ ├── CareProvider.cs │ │ │ ├── Child.cs │ │ │ ├── ContactInfo.cs │ │ │ └── Child.medical.cs │ │ ├── Services │ │ │ ├── FamilyRepository │ │ │ │ ├── FamilyRepository.singleton.cs │ │ │ │ ├── FamilyRepository.cache.cs │ │ │ │ └── FamilyRepository.storage.cs │ │ │ ├── Settings.cs │ │ │ └── AuthenticationService.cs │ │ ├── Mvvm │ │ │ ├── ContentPageBase.cs │ │ │ └── NotifyPropertyChanged.cs │ │ ├── App.xaml.cs │ │ └── MobileKidsIdApp.csproj │ └── MobileKidsIdApp.Android │ │ ├── Assets │ │ ├── ht-logo.png │ │ ├── mcm-logo.jpg │ │ ├── ameco-logo.jpg │ │ ├── csmn-logo.png │ │ ├── pdfjs │ │ │ └── web │ │ │ │ ├── cmaps │ │ │ │ ├── H.bcmap │ │ │ │ ├── V.bcmap │ │ │ │ ├── 78-H.bcmap │ │ │ │ ├── 78-V.bcmap │ │ │ │ ├── Add-H.bcmap │ │ │ │ ├── Add-V.bcmap │ │ │ │ ├── B5-H.bcmap │ │ │ │ ├── B5-V.bcmap │ │ │ │ ├── EUC-H.bcmap │ │ │ │ ├── EUC-V.bcmap │ │ │ │ ├── Ext-H.bcmap │ │ │ │ ├── Ext-V.bcmap │ │ │ │ ├── GB-H.bcmap │ │ │ │ ├── GB-V.bcmap │ │ │ │ ├── GBT-H.bcmap │ │ │ │ ├── GBT-V.bcmap │ │ │ │ ├── KSC-H.bcmap │ │ │ │ ├── KSC-V.bcmap │ │ │ │ ├── NWP-H.bcmap │ │ │ │ ├── NWP-V.bcmap │ │ │ │ ├── Roman.bcmap │ │ │ │ ├── B5pc-H.bcmap │ │ │ │ ├── B5pc-V.bcmap │ │ │ │ ├── CNS1-H.bcmap │ │ │ │ ├── CNS1-V.bcmap │ │ │ │ ├── CNS2-H.bcmap │ │ │ │ ├── CNS2-V.bcmap │ │ │ │ ├── GBK2K-H.bcmap │ │ │ │ ├── GBK2K-V.bcmap │ │ │ │ ├── Hankaku.bcmap │ │ │ │ ├── RKSJ-H.bcmap │ │ │ │ ├── RKSJ-V.bcmap │ │ │ │ ├── 78-EUC-H.bcmap │ │ │ │ ├── 78-EUC-V.bcmap │ │ │ │ ├── 78-RKSJ-H.bcmap │ │ │ │ ├── 78-RKSJ-V.bcmap │ │ │ │ ├── Add-RKSJ-H.bcmap │ │ │ │ ├── Add-RKSJ-V.bcmap │ │ │ │ ├── CNS-EUC-H.bcmap │ │ │ │ ├── CNS-EUC-V.bcmap │ │ │ │ ├── ETHK-B5-H.bcmap │ │ │ │ ├── ETHK-B5-V.bcmap │ │ │ │ ├── ETen-B5-H.bcmap │ │ │ │ ├── ETen-B5-V.bcmap │ │ │ │ ├── Ext-RKSJ-H.bcmap │ │ │ │ ├── Ext-RKSJ-V.bcmap │ │ │ │ ├── GB-EUC-H.bcmap │ │ │ │ ├── GB-EUC-V.bcmap │ │ │ │ ├── GBK-EUC-H.bcmap │ │ │ │ ├── GBK-EUC-V.bcmap │ │ │ │ ├── GBKp-EUC-H.bcmap │ │ │ │ ├── GBKp-EUC-V.bcmap │ │ │ │ ├── GBT-EUC-H.bcmap │ │ │ │ ├── GBT-EUC-V.bcmap │ │ │ │ ├── GBpc-EUC-H.bcmap │ │ │ │ ├── GBpc-EUC-V.bcmap │ │ │ │ ├── HKdla-B5-H.bcmap │ │ │ │ ├── HKdla-B5-V.bcmap │ │ │ │ ├── HKdlb-B5-H.bcmap │ │ │ │ ├── HKdlb-B5-V.bcmap │ │ │ │ ├── HKscs-B5-H.bcmap │ │ │ │ ├── HKscs-B5-V.bcmap │ │ │ │ ├── Hiragana.bcmap │ │ │ │ ├── KSC-EUC-H.bcmap │ │ │ │ ├── KSC-EUC-V.bcmap │ │ │ │ ├── Katakana.bcmap │ │ │ │ ├── WP-Symbol.bcmap │ │ │ │ ├── 78ms-RKSJ-H.bcmap │ │ │ │ ├── 78ms-RKSJ-V.bcmap │ │ │ │ ├── 83pv-RKSJ-H.bcmap │ │ │ │ ├── 90ms-RKSJ-H.bcmap │ │ │ │ ├── 90ms-RKSJ-V.bcmap │ │ │ │ ├── 90msp-RKSJ-H.bcmap │ │ │ │ ├── 90msp-RKSJ-V.bcmap │ │ │ │ ├── 90pv-RKSJ-H.bcmap │ │ │ │ ├── 90pv-RKSJ-V.bcmap │ │ │ │ ├── Adobe-CNS1-0.bcmap │ │ │ │ ├── Adobe-CNS1-1.bcmap │ │ │ │ ├── Adobe-CNS1-2.bcmap │ │ │ │ ├── Adobe-CNS1-3.bcmap │ │ │ │ ├── Adobe-CNS1-4.bcmap │ │ │ │ ├── Adobe-CNS1-5.bcmap │ │ │ │ ├── Adobe-CNS1-6.bcmap │ │ │ │ ├── Adobe-GB1-0.bcmap │ │ │ │ ├── Adobe-GB1-1.bcmap │ │ │ │ ├── Adobe-GB1-2.bcmap │ │ │ │ ├── Adobe-GB1-3.bcmap │ │ │ │ ├── Adobe-GB1-4.bcmap │ │ │ │ ├── Adobe-GB1-5.bcmap │ │ │ │ ├── ETenms-B5-H.bcmap │ │ │ │ ├── ETenms-B5-V.bcmap │ │ │ │ ├── GBTpc-EUC-H.bcmap │ │ │ │ ├── GBTpc-EUC-V.bcmap │ │ │ │ ├── HKgccs-B5-H.bcmap │ │ │ │ ├── HKgccs-B5-V.bcmap │ │ │ │ ├── HKm314-B5-H.bcmap │ │ │ │ ├── HKm314-B5-V.bcmap │ │ │ │ ├── HKm471-B5-H.bcmap │ │ │ │ ├── HKm471-B5-V.bcmap │ │ │ │ ├── KSC-Johab-H.bcmap │ │ │ │ ├── KSC-Johab-V.bcmap │ │ │ │ ├── KSCms-UHC-H.bcmap │ │ │ │ ├── KSCms-UHC-V.bcmap │ │ │ │ ├── KSCpc-EUC-H.bcmap │ │ │ │ ├── KSCpc-EUC-V.bcmap │ │ │ │ ├── UniGB-UCS2-H.bcmap │ │ │ │ ├── UniGB-UCS2-V.bcmap │ │ │ │ ├── UniGB-UTF8-H.bcmap │ │ │ │ ├── UniGB-UTF8-V.bcmap │ │ │ │ ├── UniKS-UCS2-H.bcmap │ │ │ │ ├── UniKS-UCS2-V.bcmap │ │ │ │ ├── UniKS-UTF8-H.bcmap │ │ │ │ ├── UniKS-UTF8-V.bcmap │ │ │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ │ │ ├── Adobe-GB1-UCS2.bcmap │ │ │ │ ├── Adobe-Japan1-0.bcmap │ │ │ │ ├── Adobe-Japan1-1.bcmap │ │ │ │ ├── Adobe-Japan1-2.bcmap │ │ │ │ ├── Adobe-Japan1-3.bcmap │ │ │ │ ├── Adobe-Japan1-4.bcmap │ │ │ │ ├── Adobe-Japan1-5.bcmap │ │ │ │ ├── Adobe-Japan1-6.bcmap │ │ │ │ ├── Adobe-Korea1-0.bcmap │ │ │ │ ├── Adobe-Korea1-1.bcmap │ │ │ │ ├── Adobe-Korea1-2.bcmap │ │ │ │ ├── KSCms-UHC-HW-H.bcmap │ │ │ │ ├── KSCms-UHC-HW-V.bcmap │ │ │ │ ├── UniCNS-UCS2-H.bcmap │ │ │ │ ├── UniCNS-UCS2-V.bcmap │ │ │ │ ├── UniCNS-UTF16-H.bcmap │ │ │ │ ├── UniCNS-UTF16-V.bcmap │ │ │ │ ├── UniCNS-UTF32-H.bcmap │ │ │ │ ├── UniCNS-UTF32-V.bcmap │ │ │ │ ├── UniCNS-UTF8-H.bcmap │ │ │ │ ├── UniCNS-UTF8-V.bcmap │ │ │ │ ├── UniGB-UTF16-H.bcmap │ │ │ │ ├── UniGB-UTF16-V.bcmap │ │ │ │ ├── UniGB-UTF32-H.bcmap │ │ │ │ ├── UniGB-UTF32-V.bcmap │ │ │ │ ├── UniJIS-UCS2-H.bcmap │ │ │ │ ├── UniJIS-UCS2-V.bcmap │ │ │ │ ├── UniJIS-UTF16-H.bcmap │ │ │ │ ├── UniJIS-UTF16-V.bcmap │ │ │ │ ├── UniJIS-UTF32-H.bcmap │ │ │ │ ├── UniJIS-UTF32-V.bcmap │ │ │ │ ├── UniJIS-UTF8-H.bcmap │ │ │ │ ├── UniJIS-UTF8-V.bcmap │ │ │ │ ├── UniKS-UTF16-H.bcmap │ │ │ │ ├── UniKS-UTF16-V.bcmap │ │ │ │ ├── UniKS-UTF32-H.bcmap │ │ │ │ ├── UniKS-UTF32-V.bcmap │ │ │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ │ │ ├── UniJISPro-UCS2-V.bcmap │ │ │ │ ├── UniJISPro-UTF8-V.bcmap │ │ │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ │ │ └── UniJISX02132004-UTF32-V.bcmap │ │ │ │ ├── images │ │ │ │ ├── grab.cur │ │ │ │ ├── shadow.png │ │ │ │ ├── grabbing.cur │ │ │ │ ├── texture.png │ │ │ │ ├── loading-icon.gif │ │ │ │ ├── loading-small.png │ │ │ │ ├── loading-small@2x.png │ │ │ │ ├── findbarButton-next.png │ │ │ │ ├── treeitem-collapsed.png │ │ │ │ ├── treeitem-expanded.png │ │ │ │ ├── findbarButton-next@2x.png │ │ │ │ ├── toolbarButton-pageUp.png │ │ │ │ ├── toolbarButton-print.png │ │ │ │ ├── toolbarButton-search.png │ │ │ │ ├── toolbarButton-zoomIn.png │ │ │ │ ├── toolbarButton-zoomOut.png │ │ │ │ ├── treeitem-collapsed@2x.png │ │ │ │ ├── treeitem-expanded@2x.png │ │ │ │ ├── findbarButton-next-rtl.png │ │ │ │ ├── findbarButton-previous.png │ │ │ │ ├── toolbarButton-bookmark.png │ │ │ │ ├── toolbarButton-download.png │ │ │ │ ├── toolbarButton-openFile.png │ │ │ │ ├── toolbarButton-pageDown.png │ │ │ │ ├── toolbarButton-pageUp@2x.png │ │ │ │ ├── toolbarButton-print@2x.png │ │ │ │ ├── toolbarButton-search@2x.png │ │ │ │ ├── toolbarButton-zoomIn@2x.png │ │ │ │ ├── treeitem-collapsed-rtl.png │ │ │ │ ├── findbarButton-next-rtl@2x.png │ │ │ │ ├── findbarButton-previous-rtl.png │ │ │ │ ├── findbarButton-previous@2x.png │ │ │ │ ├── toolbarButton-bookmark@2x.png │ │ │ │ ├── toolbarButton-download@2x.png │ │ │ │ ├── toolbarButton-menuArrows.png │ │ │ │ ├── toolbarButton-openFile@2x.png │ │ │ │ ├── toolbarButton-pageDown-rtl.png │ │ │ │ ├── toolbarButton-pageDown@2x.png │ │ │ │ ├── toolbarButton-pageUp-rtl.png │ │ │ │ ├── toolbarButton-viewOutline.png │ │ │ │ ├── toolbarButton-zoomOut@2x.png │ │ │ │ ├── treeitem-collapsed-rtl@2x.png │ │ │ │ ├── toolbarButton-menuArrows@2x.png │ │ │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ │ │ ├── toolbarButton-sidebarToggle.png │ │ │ │ ├── toolbarButton-viewOutline@2x.png │ │ │ │ ├── toolbarButton-viewThumbnail.png │ │ │ │ ├── findbarButton-previous-rtl@2x.png │ │ │ │ ├── secondaryToolbarButton-handTool.png │ │ │ │ ├── secondaryToolbarButton-lastPage.png │ │ │ │ ├── secondaryToolbarButton-rotateCw.png │ │ │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ │ │ ├── toolbarButton-presentationMode.png │ │ │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ │ │ ├── toolbarButton-viewAttachments.png │ │ │ │ ├── toolbarButton-viewOutline-rtl.png │ │ │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ │ │ ├── secondaryToolbarButton-firstPage.png │ │ │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ │ │ ├── toolbarButton-presentationMode@2x.png │ │ │ │ ├── toolbarButton-viewAttachments@2x.png │ │ │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ │ │ ├── annotation-noicon.svg │ │ │ │ ├── secondaryToolbarButton-documentProperties.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ │ │ ├── annotation-insert.svg │ │ │ │ ├── annotation-check.svg │ │ │ │ ├── annotation-newparagraph.svg │ │ │ │ ├── annotation-comment.svg │ │ │ │ ├── annotation-paragraph.svg │ │ │ │ ├── annotation-note.svg │ │ │ │ └── annotation-key.svg │ │ │ │ └── compressed.tracemonkey-pldi-09.pdf │ │ ├── default.css │ │ ├── AboutAssets.txt │ │ └── Renderers │ │ │ └── PdfWebViewRenderer.cs │ │ ├── Resources │ │ ├── drawable │ │ │ └── icon.png │ │ ├── mipmap-hdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── mipmap-xxhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── Icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── layout │ │ │ ├── Toolbar.axml │ │ │ └── Tabbar.axml │ │ ├── ActivityResultEventArgs.cs │ │ └── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs ├── MobileKidsId.PdfGenerationAppService │ ├── Global.asax │ ├── Models │ │ └── ProfileModel.cs │ ├── Global.asax.cs │ ├── App_Start │ │ └── WebApiConfig.cs │ ├── Template.htm │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Controllers │ │ └── ValuesController.cs └── MobileKidsIdApp.UITests │ ├── packages.config │ ├── AppInitializer.cs │ └── Tests.cs ├── docs ├── AndroidEmVS.docx └── Deploy Environment.md ├── resources ├── MCM-logo.jpg ├── MCM-logo-s.jpg ├── MCM-logo-teal small.jpg ├── KidsID_icon │ ├── iOS │ │ ├── appicon_20.png │ │ ├── appicon_29.png │ │ ├── appicon_40.png │ │ ├── appicon_58.png │ │ ├── appicon_60.png │ │ ├── appicon_76.png │ │ ├── appicon_80.png │ │ ├── appicon_87.png │ │ ├── appicon_1024.png │ │ ├── appicon_120.png │ │ ├── appicon_152.png │ │ ├── appicon_167.png │ │ ├── appicon_180.png │ │ ├── iTunesArtwork.png │ │ ├── iTunesArtwork@2x.png │ │ └── scale_ios_icons.sh │ ├── Android │ │ ├── appicon_144.png │ │ ├── appicon_72.png │ │ ├── appicon_96.png │ │ └── Google_Play_store.png │ └── Windows │ │ └── Windows_10_app.png └── inspiration-board-square-green.jpg ├── deploy └── MCM.KidsIdApp.Template │ ├── MCM.KidsIdApp.Template │ ├── Tools │ │ ├── AzCopy.exe │ │ ├── Microsoft.Data.Edm.dll │ │ ├── Microsoft.Data.OData.dll │ │ ├── Microsoft.Data.Services.Client.dll │ │ ├── Microsoft.WindowsAzure.Storage.dll │ │ └── Microsoft.WindowsAzure.Storage.DataMovement.dll │ └── Templates │ │ └── azuredeploy.parameters.json │ └── MCM.KidsIdApp.Template.sln └── .gitattributes /src/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | end_of_line = crlf 3 | indent_style = space 4 | indent_size = 4 5 | -------------------------------------------------------------------------------- /docs/AndroidEmVS.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/docs/AndroidEmVS.docx -------------------------------------------------------------------------------- /resources/MCM-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/MCM-logo.jpg -------------------------------------------------------------------------------- /resources/MCM-logo-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/MCM-logo-s.jpg -------------------------------------------------------------------------------- /resources/MCM-logo-teal small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/MCM-logo-teal small.jpg -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_20.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_29.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_40.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_58.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_60.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_76.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_80.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_87.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_1024.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_120.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_152.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_167.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/appicon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/appicon_180.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/iTunesArtwork.png -------------------------------------------------------------------------------- /resources/KidsID_icon/Android/appicon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/Android/appicon_144.png -------------------------------------------------------------------------------- /resources/KidsID_icon/Android/appicon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/Android/appicon_72.png -------------------------------------------------------------------------------- /resources/KidsID_icon/Android/appicon_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/Android/appicon_96.png -------------------------------------------------------------------------------- /resources/inspiration-board-square-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/inspiration-board-square-green.jpg -------------------------------------------------------------------------------- /resources/KidsID_icon/Windows/Windows_10_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/Windows/Windows_10_app.png -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/iOS/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /resources/KidsID_icon/Android/Google_Play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/resources/KidsID_icon/Android/Google_Play_store.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "secrets1": { 4 | "type": "secrets" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/MobileKidsId.PdfGenerationAppService/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MobileKidsId.PdfGenerationAppService.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/ht-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/ht-logo.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/mcm-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/mcm-logo.jpg -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/csmn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/csmn-logo.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/ht-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/ht-logo.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/mcm-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/mcm-logo.jpg -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "secrets1": { 4 | "type": "secrets.user" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/ameco-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/ameco-logo.jpg -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/csmn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/csmn-logo.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/ameco-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Resources/ameco-logo.jpg -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/AzCopy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/AzCopy.exe -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/DocumentsViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.ViewModels 2 | { 3 | public class DocumentsViewModel: ViewModelBase 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/grab.cur -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/shadow.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Resources/Fonts/FontAwesome5Regular400.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp/Resources/Fonts/FontAwesome5Regular400.otf -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Resources/Fonts/FontAwesome5Solid900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp/Resources/Fonts/FontAwesome5Solid900.otf -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/grabbing.cur -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/texture.png -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/loading-icon.gif -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/loading-small.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/loading-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/loading-small@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-expanded.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_120.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_152.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_167.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_180.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_20.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_29.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_40.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_58.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_60.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_76.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_80.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_87.png -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-print.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-search.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-expanded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-expanded@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.iOS/Assets.xcassets/AppIcon.appiconset/appicon_1024.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/LoginPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class LoginPage : ContentPageBase 4 | { 5 | public LoginPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/compressed.tracemonkey-pldi-09.pdf -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-bookmark.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-download.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-openFile.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-print@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-search@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomIn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomIn@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/PhotosPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class PhotosPage : ContentPageBase 4 | { 5 | public PhotosPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/default.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | margin: 10; 3 | padding: 10; 4 | font-family: sans-serif; 5 | } 6 | .logo { 7 | height: auto; 8 | width: auto; 9 | max-width: 90%; 10 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-next-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-bookmark@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-download@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-openFile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-openFile@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-zoomOut@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/treeitem-collapsed-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-menuArrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-menuArrows@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageUp-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewThumbnail.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/FriendListPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class FriendListPage : ContentPageBase 4 | { 5 | public FriendListPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp.UITests/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/findbarButton-previous-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-handTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-handTool.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-lastPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-lastPage.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCw.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-pageDown-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-presentationMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-presentationMode.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewAttachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewAttachments.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewThumbnail@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/BasicDetailsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class BasicDetailsPage : ContentPageBase 4 | { 5 | public BasicDetailsPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/ChildProfilePage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class ChildProfilePage : ContentPageBase 4 | { 5 | public ChildProfilePage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/DocumentRenderPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class DocumentRenderPage : ContentPageBase 4 | { 5 | public DocumentRenderPage() => InitializeComponent(); 6 | } 7 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/MedicalNotesPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class MedicalNotesPage : ContentPageBase 4 | { 5 | public MedicalNotesPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-firstPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-firstPage.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-presentationMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-presentationMode@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewAttachments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewAttachments@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-viewOutline-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/CareProvidersPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class CareProvidersPage : ContentPageBase 4 | { 5 | public CareProvidersPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/CreatePasswordPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class CreatePasswordPage : ContentPageBase 4 | { 5 | public CreatePasswordPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/StaticContentPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class StaticContentPage : ContentPageBase 4 | { 5 | public StaticContentPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.WindowsAzure.Storage.DataMovement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Tools/Microsoft.WindowsAzure.Storage.DataMovement.dll -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-firstPage@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-handTool@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-lastPage@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCcw@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-rotateCw@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-sidebarToggle-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/PhysicalDetailsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class PhysicalDetailsPage : ContentPageBase 4 | { 5 | public PhysicalDetailsPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/ChildProfileListPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class ChildProfileListPage : ContentPageBase 4 | { 5 | public ChildProfileListPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/FamilyMemberListPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class FamilyMemberListPage : ContentPageBase 4 | { 5 | public FamilyMemberListPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/InstructionIndexPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class InstructionIndexPage : ContentPageBase 4 | { 5 | public InstructionIndexPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-documentProperties.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/DocumentRenderViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.ViewModels 2 | { 3 | public class DocumentRenderViewModel : ViewModelBase 4 | { 5 | // TODO: show PDF here? 6 | // uri MissingChildProfile.pdf 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/PreparationChecklistPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class PreparationChecklistPage : ContentPageBase 4 | { 5 | public PreparationChecklistPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HTBox/MobileKidsIdApp/HEAD/src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/secondaryToolbarButton-documentProperties@2x.png -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/DistinguishingFeaturesPage.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Views 2 | { 3 | public partial class DistinguishingFeaturesPage : ContentPageBase 4 | { 5 | public DistinguishingFeaturesPage() => InitializeComponent(); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Controls/ChildProfileView.xaml.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms; 2 | 3 | namespace MobileKidsIdApp 4 | { 5 | public partial class ChildProfileView : ContentView 6 | { 7 | public ChildProfileView() => InitializeComponent(); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Platform/IPhotoPicker.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | 3 | namespace MobileKidsIdApp.Platform 4 | { 5 | public interface IPhotoPicker 6 | { 7 | Task GetCopiedFilePath(string copyToDirectory, string fileNameWithoutExtension); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /resources/KidsID_icon/iOS/scale_ios_icons.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Requires npm package svgexport 3 | # https://www.npmjs.com/package/svgexport 4 | 5 | declare -a sizes=("20" "29" "40" "58" "60" "76" "87" "120" "152" "167" "180" "1024") 6 | for s in "${sizes[@]}" 7 | do 8 | svgexport iOS_svg.svg "appicon_""$s".png "$s":"$s" 9 | done 10 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | #3F51B5 5 | #303F9F 6 | #FF4081 7 | 8 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Models/FamilyMember.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Models 2 | { 3 | public class FamilyMember : Person 4 | { 5 | private string _relation; 6 | public string Relation 7 | { 8 | get => _relation; 9 | set => SetProperty(ref _relation, value); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/ActivityResultEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.App; 3 | using Android.Content; 4 | 5 | namespace MobileKidsIdApp.Droid 6 | { 7 | public class ActivityResultEventArgs : EventArgs 8 | { 9 | public int requestCode; 10 | public Result resultCode; 11 | public Intent data; 12 | } 13 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Resources/AppColors.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms; 2 | 3 | namespace MobileKidsIdApp 4 | { 5 | public static class AppColors 6 | { 7 | public static Color MCMDarkTeal => (Color)Application.Current.Resources["MCMDarkTeal"]; 8 | public static Color MCMBlack4 => (Color)Application.Current.Resources["MCMBlack4"]; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | keychain-access-groups 6 | 7 | $(AppIdentifierPrefix)com.HumanitarianToolbox.KidsIdKit 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Resources/Fonts/SolidGlyphs.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp 2 | { 3 | public static class SolidGlyphs 4 | { 5 | public static string Plus = "\uf067"; 6 | public static string IdCard = "\uf2c2"; 7 | public static string BookOpen = "\uf518"; 8 | public static string Child = "\uf1ae"; 9 | public static string Trash = "\uf1f8"; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/CurrentChildViewModel.cs: -------------------------------------------------------------------------------- 1 | using MobileKidsIdApp.Models; 2 | using MobileKidsIdApp.Services; 3 | 4 | namespace MobileKidsIdApp.ViewModels 5 | { 6 | public abstract class CurrentChildViewModel : ViewModelBase 7 | { 8 | protected FamilyRepository Family => FamilyRepository.Instance; 9 | protected Child CurrentChild => Family.CurrentChild; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/DocumentRenderPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Models/DistinguishingFeature.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Models 2 | { 3 | public class DistinguishingFeature : NotifyPropertyChanged 4 | { 5 | private string _description; 6 | public string Description 7 | { 8 | get => _description; 9 | set => SetProperty(ref _description, value); 10 | } 11 | 12 | public FileReference FileReference { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- 1 | 9 | 10 | -------------------------------------------------------------------------------- /src/MobileKidsId.PdfGenerationAppService/Models/ProfileModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace MobileKidsId.PdfGenerationAppService.Models 7 | { 8 | public class ProfileModel 9 | { 10 | public string FirstName { get; set; } 11 | public string LastName { get; set; } 12 | public string Sex { get; set; } 13 | public string Description { get; set; } 14 | 15 | } 16 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Models/FileReference.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Models 2 | { 3 | // TODO: Rework. "Files" don't mean much unless there's a way to share them into the app or download them. What is a "file"? How does the app obtain a "file"? 4 | public class FileReference 5 | { 6 | public string ResourceType { get; set; } 7 | 8 | public string Description { get; set; } 9 | 10 | public string FileName { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using UIKit; 2 | 3 | namespace MobileKidsIdApp.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 | -------------------------------------------------------------------------------- /src/MobileKidsId.PdfGenerationAppService/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Routing; 7 | 8 | namespace MobileKidsId.PdfGenerationAppService 9 | { 10 | public class WebApiApplication : System.Web.HttpApplication 11 | { 12 | protected void Application_Start() 13 | { 14 | GlobalConfiguration.Configure(WebApiConfig.Register); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/BasicDetailsViewModel.cs: -------------------------------------------------------------------------------- 1 | using MobileKidsIdApp.Models; 2 | 3 | namespace MobileKidsIdApp.ViewModels 4 | { 5 | public class BasicDetailsViewModel : CurrentChildViewModel 6 | { 7 | private Child _child; 8 | public Child Child 9 | { 10 | get => _child; 11 | set => SetProperty(ref _child, value); 12 | } 13 | 14 | public BasicDetailsViewModel() 15 | => Child = CurrentChild; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/MedicalNotesViewModel.cs: -------------------------------------------------------------------------------- 1 | using MobileKidsIdApp.Models; 2 | 3 | namespace MobileKidsIdApp.ViewModels 4 | { 5 | public class MedicalNotesViewModel : CurrentChildViewModel 6 | { 7 | private Child _child; 8 | public Child Child 9 | { 10 | get => _child; 11 | set => SetProperty(ref _child, value); 12 | } 13 | 14 | public MedicalNotesViewModel() 15 | => Child = CurrentChild; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/DocumentsPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using MobileKidsIdApp.Services; 2 | using System; 3 | using System.IO; 4 | 5 | namespace MobileKidsIdApp.Views 6 | { 7 | public partial class DocumentsPage : ContentPageBase 8 | { 9 | public DocumentsPage() 10 | { 11 | InitializeComponent(); 12 | var dgs = new DocumentGenerationService(); 13 | customWebView.Uri = dgs.GeneratePdfDcoumentFromTemplate("Missing Child"); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/PreparationChecklistViewModel.cs: -------------------------------------------------------------------------------- 1 | using MobileKidsIdApp.Models; 2 | 3 | namespace MobileKidsIdApp.ViewModels 4 | { 5 | public class PreparationChecklistViewModel : CurrentChildViewModel 6 | { 7 | private Child _child; 8 | public Child Child 9 | { 10 | get => _child; 11 | set => SetProperty(ref _child, value); 12 | } 13 | 14 | public PreparationChecklistViewModel() 15 | => Child = CurrentChild; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp.UITests/AppInitializer.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.UITest; 2 | 3 | namespace MobileKidsIdApp.UITests 4 | { 5 | public class AppInitializer 6 | { 7 | public static IApp StartApp(Platform platform) 8 | { 9 | if (platform == Platform.Android) 10 | { 11 | return ConfigureApp 12 | .Android 13 | .StartApp(); 14 | } 15 | 16 | return ConfigureApp 17 | .iOS 18 | .StartApp(); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/StaticContentPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Services/FamilyRepository/FamilyRepository.singleton.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using MobileKidsIdApp.Models; 4 | 5 | namespace MobileKidsIdApp.Services 6 | { 7 | public partial class FamilyRepository 8 | { 9 | private static Lazy _instance = new Lazy(() => new FamilyRepository()); 10 | public static FamilyRepository Instance => _instance.Value; 11 | 12 | private FamilyRepository() 13 | => _childCache = new Lazy>(LoadChildren); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- 1 | 2 | 12 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/DocumentsPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Shell scripts should always use line feed not crlf 5 | *.sh text eol=lf 6 | 7 | # Custom for Visual Studio 8 | *.cs diff=csharp 9 | *.sln merge=union 10 | *.csproj merge=union 11 | *.vbproj merge=union 12 | *.fsproj merge=union 13 | *.dbproj merge=union 14 | 15 | # Standard to msysgit 16 | *.doc diff=astextplain 17 | *.DOC diff=astextplain 18 | *.docx diff=astextplain 19 | *.DOCX diff=astextplain 20 | *.dot diff=astextplain 21 | *.DOT diff=astextplain 22 | *.pdf diff=astextplain 23 | *.PDF diff=astextplain 24 | *.rtf diff=astextplain 25 | *.RTF diff=astextplain 26 | 27 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp.UITests/Tests.cs: -------------------------------------------------------------------------------- 1 | using NUnit.Framework; 2 | using Xamarin.UITest; 3 | 4 | namespace MobileKidsIdApp.UITests 5 | { 6 | [TestFixture(Platform.Android)] 7 | [TestFixture(Platform.iOS)] 8 | public class Tests 9 | { 10 | IApp app; 11 | Platform platform; 12 | 13 | public Tests(Platform platform) 14 | { 15 | this.platform = platform; 16 | } 17 | 18 | [SetUp] 19 | public void BeforeEachTest() 20 | { 21 | app = AppInitializer.StartApp(platform); 22 | } 23 | 24 | [Test] 25 | public void Repl() 26 | { 27 | app.Repl(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/CustomWebView.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using Xamarin.Forms; 5 | 6 | namespace MobileKidsIdApp.Views 7 | { 8 | public class CustomWebView : WebView 9 | { 10 | public static readonly BindableProperty UriProperty = BindableProperty.Create(propertyName: "Uri", 11 | returnType: typeof(string), 12 | declaringType: typeof(CustomWebView), 13 | defaultValue: default(string)); 14 | 15 | public string Uri 16 | { 17 | get { return (string)GetValue(UriProperty); } 18 | set { SetValue(UriProperty, value); } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Services/Settings.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Essentials; 2 | 3 | namespace MobileKidsIdApp.Services 4 | { 5 | public static class Settings 6 | { 7 | private static string AllowPasswordSetupKey = "AllowPasswordSetupKey"; 8 | private static string IdentityKey = "IdentityKey"; 9 | 10 | public static bool AllowPasswordSetup 11 | { 12 | get => Preferences.Get(AllowPasswordSetupKey, true); 13 | set => Preferences.Set(AllowPasswordSetupKey, value); 14 | } 15 | 16 | public static string Identity 17 | { 18 | get => Preferences.Get(IdentityKey, null); 19 | set => Preferences.Set(IdentityKey, value); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/MobileKidsId.PdfGenerationAppService/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace MobileKidsId.PdfGenerationAppService 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | // Web API configuration and services 13 | 14 | // Web API routes 15 | config.MapHttpAttributeRoutes(); 16 | 17 | config.Routes.MapHttpRoute( 18 | name: "DefaultApi", 19 | routeTemplate: "api/{controller}/{id}", 20 | defaults: new { id = RouteParameter.Optional } 21 | ); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Mvvm/ContentPageBase.cs: -------------------------------------------------------------------------------- 1 | using Xamarin.Forms; 2 | using Xamarin.Forms.PlatformConfiguration; 3 | using Xamarin.Forms.PlatformConfiguration.iOSSpecific; 4 | 5 | namespace MobileKidsIdApp 6 | { 7 | public abstract class ContentPageBase : ContentPage 8 | { 9 | public ContentPageBase() 10 | { 11 | Visual = VisualMarker.Material; 12 | On().SetUseSafeArea(true); 13 | } 14 | 15 | protected ViewModelBase ViewModel => BindingContext as ViewModelBase; 16 | 17 | protected override void OnAppearing() => ViewModel?.OnAppearing(); 18 | 19 | protected override void OnDisappearing() => ViewModel?.OnDisappearing(); 20 | 21 | public virtual void Initialize() { } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Models/Person.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Models 2 | { 3 | public class Person : NotifyPropertyChanged 4 | { 5 | private string _familyName; 6 | public string FamilyName 7 | { 8 | get => _familyName; 9 | set => SetProperty(ref _familyName, value); 10 | } 11 | 12 | private string _givenName; 13 | public string GivenName 14 | { 15 | get => _givenName; 16 | set => SetProperty(ref _givenName, value); 17 | } 18 | 19 | private string _additionalName; 20 | public string AdditionalName 21 | { 22 | get => _additionalName; 23 | set => SetProperty(ref _additionalName, value); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template/Templates/azuredeploy.parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", 3 | "contentVersion": "1.0.0.0", 4 | "parameters": { 5 | "MobileKidsIdWebAppName": { 6 | "value": "jwmobilekidsidapp" 7 | }, 8 | "MobileKidsIdAppPlanName": { 9 | "value": "jwmobilekidsidaplan" 10 | }, 11 | "MobileKidsIdAppPlanSKU": { 12 | "value": "Standard" 13 | }, 14 | "MobileKidsIdAppPlanWorkerSize": { 15 | "value": "1" 16 | }, 17 | "GitHubRepositoryUrl": { 18 | "value": "https://github.com/HTBox/MobileKidsIdApp.git" 19 | }, 20 | "GitHubBranch": { 21 | "value": "master" 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/FriendListViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.ObjectModel; 2 | using MobileKidsIdApp.Models; 3 | using Xamarin.Forms; 4 | 5 | namespace MobileKidsIdApp.ViewModels 6 | { 7 | public class FriendListViewModel : CurrentChildViewModel 8 | { 9 | public ObservableCollection Friends { get; private set; } = new ObservableCollection(); 10 | 11 | public Command NewFriendCommand { get; private set; } 12 | 13 | public FriendListViewModel() 14 | { 15 | CurrentChild.Friends.ForEach(_ => Friends.Add(_)); 16 | 17 | NewFriendCommand = new Command(AddFriend); 18 | } 19 | 20 | private void AddFriend() 21 | { 22 | var friend = new Person(); 23 | CurrentChild.Friends.Add(friend); 24 | Friends.Add(friend); 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /src/MobileKidsId.PdfGenerationAppService/Template.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |

Missing Child {FirstName}, {LastName}

6 |
7 |   8 | 9 | {FirstName}

10 | {LastName}

11 | {Sex}

12 |
{Description}

13 |

14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Mvvm/NotifyPropertyChanged.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.ComponentModel; 3 | using System.Runtime.CompilerServices; 4 | 5 | namespace MobileKidsIdApp 6 | { 7 | public class NotifyPropertyChanged : INotifyPropertyChanged 8 | { 9 | public event PropertyChangedEventHandler PropertyChanged; 10 | 11 | protected bool SetProperty(ref T storage, T value, [CallerMemberName] string propertyName = null) 12 | { 13 | if (EqualityComparer.Default.Equals(storage, value)) 14 | { 15 | return false; 16 | } 17 | 18 | storage = value; 19 | OnPropertyChanged(propertyName); 20 | 21 | return true; 22 | } 23 | 24 | protected void OnPropertyChanged([CallerMemberName] string propertyName = null) 25 | => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Controls/GenderToColorConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using MobileKidsIdApp.Models; 4 | using Xamarin.Forms; 5 | 6 | namespace MobileKidsIdApp 7 | { 8 | public class GenderToColorConverter : IValueConverter 9 | { 10 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | if (value is Gender gender) 13 | { 14 | return gender switch 15 | { 16 | Gender.Male => Color.SkyBlue, 17 | Gender.Female => Color.HotPink, 18 | _ => Color.Default, 19 | }; 20 | } 21 | 22 | return Color.Default; 23 | } 24 | 25 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 26 | { 27 | throw new NotImplementedException(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/CareProvidersViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.ObjectModel; 2 | using MobileKidsIdApp.Models; 3 | using Xamarin.Forms; 4 | 5 | namespace MobileKidsIdApp.ViewModels 6 | { 7 | public class CareProvidersViewModel : CurrentChildViewModel 8 | { 9 | public ObservableCollection CareProviders { get; private set; } = new ObservableCollection(); 10 | 11 | public Command AddProviderCommand { get; private set; } 12 | 13 | public CareProvidersViewModel() 14 | { 15 | CurrentChild.ProfessionalCareProviders.ForEach(_ => CareProviders.Add(_)); 16 | 17 | AddProviderCommand = new Command(AddProvider); 18 | } 19 | 20 | private void AddProvider() 21 | { 22 | var provider = new CareProvider(); 23 | CurrentChild.ProfessionalCareProviders.Add(provider); 24 | CareProviders.Add(provider); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/StaticContentViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Threading.Tasks; 3 | 4 | namespace MobileKidsIdApp.ViewModels 5 | { 6 | public class StaticContentViewModel : ViewModelBase 7 | { 8 | private string _title; 9 | public string Title 10 | { 11 | get => _title; 12 | set => SetProperty(ref _title, value); 13 | } 14 | 15 | private string _htmlSource; 16 | public string HtmlSource 17 | { 18 | get => _htmlSource; 19 | set => SetProperty(ref _htmlSource, value); 20 | } 21 | 22 | public async override Task Initialize(Dictionary navigationsParams = null) 23 | { 24 | navigationsParams.TryGetValue("contentName", out object contentName); 25 | HtmlSource = Documents.LoadContentString((string)contentName); 26 | await Task.CompletedTask; 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/FamilyMemberListViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.ObjectModel; 2 | using MobileKidsIdApp.Models; 3 | using Xamarin.Forms; 4 | 5 | namespace MobileKidsIdApp.ViewModels 6 | { 7 | public class FamilyMemberListViewModel : CurrentChildViewModel 8 | { 9 | public ObservableCollection FamilyMembers { get; private set; } = new ObservableCollection(); 10 | 11 | public Command NewFamilyMemberCommand { get; private set; } 12 | 13 | public FamilyMemberListViewModel() 14 | { 15 | CurrentChild.FamilyMembers.ForEach(_ => FamilyMembers.Add(_)); 16 | 17 | NewFamilyMemberCommand = new Command(AddFamilyMember); 18 | } 19 | 20 | private void AddFamilyMember() 21 | { 22 | var familyMember = new FamilyMember(); 23 | CurrentChild.FamilyMembers.Add(familyMember); 24 | FamilyMembers.Add(familyMember); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/ViewModels/DistinguishingFeaturesViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.ObjectModel; 2 | using MobileKidsIdApp.Models; 3 | using Xamarin.Forms; 4 | 5 | namespace MobileKidsIdApp.ViewModels 6 | { 7 | public class DistinguishingFeaturesViewModel : CurrentChildViewModel 8 | { 9 | public ObservableCollection Features { get; private set; } = new ObservableCollection(); 10 | 11 | public Command AddFeatureCommand { get; private set; } 12 | 13 | public DistinguishingFeaturesViewModel() 14 | { 15 | CurrentChild.DistinguishingFeatures.ForEach(_ => Features.Add(_)); 16 | 17 | AddFeatureCommand = new Command(AddFeature); 18 | } 19 | 20 | private void AddFeature() 21 | { 22 | var feature = new DistinguishingFeature(); 23 | CurrentChild.DistinguishingFeatures.Add(feature); 24 | Features.Add(feature); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Services/FamilyRepository/FamilyRepository.cache.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using MobileKidsIdApp.Models; 4 | 5 | namespace MobileKidsIdApp.Services 6 | { 7 | public partial class FamilyRepository 8 | { 9 | private Lazy> _childCache; 10 | 11 | public List Children => _childCache.Value; 12 | public Child CurrentChild { get; private set; } 13 | 14 | public void SetCurrentChild(Child child) => CurrentChild = child; 15 | public void ClearCurrentChild() => CurrentChild = null; 16 | public bool HasCurrentChild => CurrentChild != null; 17 | 18 | public Child NewChild() 19 | { 20 | var child = new Child(); 21 | Children.Add(child); 22 | return child; 23 | } 24 | 25 | public void RemoveChild(Child child) 26 | { 27 | Children.Remove(child); 28 | SaveChildren(); 29 | } 30 | 31 | public void SaveChildren() => StoreChildren(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /deploy/MCM.KidsIdApp.Template/MCM.KidsIdApp.Template.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.24720.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{151D2E53-A2C4-4D7D-83FE-D05416EBD58E}") = "MCM.KidsIdApp.Template", "MCM.KidsIdApp.Template\MCM.KidsIdApp.Template.deployproj", "{458FCCB4-4473-484C-82FD-90AE32A62493}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {458FCCB4-4473-484C-82FD-90AE32A62493}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {458FCCB4-4473-484C-82FD-90AE32A62493}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {458FCCB4-4473-484C-82FD-90AE32A62493}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {458FCCB4-4473-484C-82FD-90AE32A62493}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/Renderers/PdfWebViewRenderer.cs: -------------------------------------------------------------------------------- 1 | using Android.Content; 2 | using MobileKidsIdApp.Droid.Assets.Renderers; 3 | using MobileKidsIdApp.Views; 4 | using System.Net; 5 | using Xamarin.Forms; 6 | using Xamarin.Forms.Platform.Android; 7 | 8 | [assembly: ExportRenderer(typeof(WebView), typeof(PdfWebViewRenderer))] 9 | namespace MobileKidsIdApp.Droid.Assets.Renderers 10 | { 11 | public class PdfWebViewRenderer : WebViewRenderer 12 | { 13 | public PdfWebViewRenderer(Context context) : base(context) 14 | { 15 | } 16 | 17 | protected override void OnElementChanged(ElementChangedEventArgs e) 18 | { 19 | base.OnElementChanged(e); 20 | 21 | if (e.NewElement != null) 22 | { 23 | var customWebView = Element as CustomWebView; 24 | Control.Settings.AllowUniversalAccessFromFileURLs = true; 25 | Control.LoadUrl(string.Format("file:///android_asset/pdfjs/web/viewer.html?file={0}", string.Format("file:///{0}", WebUtility.UrlEncode(customWebView.Uri)))); 26 | } 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Models/CareProvider.cs: -------------------------------------------------------------------------------- 1 | namespace MobileKidsIdApp.Models 2 | { 3 | public class CareProvider : NotifyPropertyChanged 4 | { 5 | private string _providerName; 6 | public string ProviderName 7 | { 8 | get => _providerName; 9 | set => SetProperty(ref _providerName, value); 10 | } 11 | 12 | private string _clinicName; 13 | public string ClinicName 14 | { 15 | get => _clinicName; 16 | set => SetProperty(ref _clinicName, value); 17 | } 18 | 19 | private string _careRoleDescription; 20 | public string CareRoleDescription 21 | { 22 | get => _careRoleDescription; 23 | set => SetProperty(ref _careRoleDescription, value); 24 | } 25 | 26 | private string _address; 27 | public string Address 28 | { 29 | get => _address; 30 | set => SetProperty(ref _address, value); 31 | } 32 | 33 | private string _phone; 34 | public string Phone 35 | { 36 | get => _phone; 37 | set => SetProperty(ref _phone, value); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | using MobileKidsIdApp.Services; 3 | using MobileKidsIdApp.ViewModels; 4 | using MobileKidsIdApp.Views; 5 | using Unity; 6 | using Xamarin.Forms; 7 | using Xamarin.Forms.Xaml; 8 | 9 | [assembly: XamlCompilation(XamlCompilationOptions.Compile)] 10 | [assembly: ExportFont("FontAwesome5Regular400.otf", Alias = "FARegular")] 11 | [assembly: ExportFont("FontAwesome5Solid900.otf", Alias = "FASolid")] 12 | 13 | namespace MobileKidsIdApp 14 | { 15 | public partial class App : ApplicationBase 16 | { 17 | public App() => InitializeComponent(); 18 | 19 | protected override void InitializeContainer() 20 | { 21 | #if DEBUG 22 | Container.AddExtension(new Diagnostic()); 23 | #endif 24 | 25 | Container.RegisterSingleton(); 26 | } 27 | 28 | protected override Task CreateMainPage() 29 | => Settings.AllowPasswordSetup 30 | ? CreatePage() 31 | : CreatePage(); 32 | 33 | // TODO: use onstart/pause/resume to add more security around auth 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/MedicalNotesPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Models/Child.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace MobileKidsIdApp.Models 5 | { 6 | public partial class Child : Person 7 | { 8 | public Guid Id { get; set; } = Guid.NewGuid(); 9 | 10 | private string _nickName; 11 | public string NickName 12 | { 13 | get => _nickName; 14 | set => SetProperty(ref _nickName, value); 15 | } 16 | 17 | private DateTime _birthday; 18 | public DateTime Birthday 19 | { 20 | get => _birthday; 21 | set => SetProperty(ref _birthday, value); 22 | } 23 | 24 | public List DistinguishingFeatures { get; set; } = new List(); 25 | 26 | public List ProfessionalCareProviders { get; set; } = new List(); 27 | 28 | public List FamilyMembers { get; set; } = new List(); 29 | 30 | public List Friends { get; set; } = new List(); 31 | 32 | public List Documents { get; set; } = new List(); 33 | 34 | public List Photos { get; set; } = new List(); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp.Android/Assets/pdfjs/web/images/annotation-note.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 21 | 28 | 35 | 42 | 43 | -------------------------------------------------------------------------------- /src/MobileKidsIdApp/MobileKidsIdApp/Views/InstructionIndexPage.xaml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 14 |