├── .gitattributes ├── .gitignore ├── Android ├── Adapters │ ├── AvatarAdapter.cs │ ├── ConversationAdapter.cs │ ├── FriendAdapter.cs │ └── ItemAdapter.cs ├── Assets │ └── AboutAssets.txt ├── BaseActivity.cs ├── Controls │ ├── CircleDrawable.cs │ ├── CircleImageView.cs │ ├── ObservableAdapaterBase.cs │ └── SquareImageView.cs ├── ConversationActivity.cs ├── Fragments │ ├── BaseFragment.cs │ ├── MainSections │ │ ├── ConversationsFragment.cs │ │ ├── FriendsFragment.cs │ │ ├── KinderPointsFragment.cs │ │ └── ProfileFragment.cs │ └── Signup │ │ ├── ConfirmationFragment.cs │ │ ├── GetStartedFragment.cs │ │ └── WelcomeFragment.cs ├── Helpers │ ├── MessageDialogs.cs │ └── Utils.cs ├── Infrastructure │ └── UIThreadDispacher.cs ├── KinderApplication.cs ├── KinderChat.Android.csproj ├── Libs │ ├── PCLCrypto.dll │ ├── PCLCrypto.dll.mdb │ ├── PCLCrypto.xml │ ├── Validation.dll │ └── Validation.xml ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ ├── AssemblyInfo.cs │ └── _SettingsStarted.txt ├── PushNotifications │ └── PushNotifications.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── anim │ │ ├── enter.xml │ │ ├── exit.xml │ │ ├── pop_enter.xml │ │ └── pop_exit.xml │ ├── drawable-hdpi │ │ ├── default_photo.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_content_link.png │ │ ├── ic_action_content_save.png │ │ ├── ic_action_content_send.png │ │ ├── ic_brocolli.png │ │ ├── ic_cleanedroom.png │ │ ├── ic_content_add.png │ │ ├── ic_editor_attach_file.png │ │ ├── ic_homework.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ └── ic_toothbrush.png │ ├── drawable-mdpi │ │ ├── default_photo.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_content_link.png │ │ ├── ic_action_content_save.png │ │ ├── ic_action_content_send.png │ │ ├── ic_brocolli.png │ │ ├── ic_cleanedroom.png │ │ ├── ic_content_add.png │ │ ├── ic_editor_attach_file.png │ │ ├── ic_homework.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ └── ic_toothbrush.png │ ├── drawable-xhdpi │ │ ├── default_photo.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_content_link.png │ │ ├── ic_action_content_save.png │ │ ├── ic_action_content_send.png │ │ ├── ic_brocolli.png │ │ ├── ic_cleanedroom.png │ │ ├── ic_content_add.png │ │ ├── ic_editor_attach_file.png │ │ ├── ic_homework.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ └── ic_toothbrush.png │ ├── drawable-xxhdpi │ │ ├── default_photo.png │ │ ├── ic_action_camera.png │ │ ├── ic_action_content_link.png │ │ ├── ic_action_content_save.png │ │ ├── ic_action_content_send.png │ │ ├── ic_brocolli.png │ │ ├── ic_cleanedroom.png │ │ ├── ic_content_add.png │ │ ├── ic_editor_attach_file.png │ │ ├── ic_homework.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ └── ic_toothbrush.png │ ├── drawable-xxxhdpi │ │ ├── ic_action_content_link.png │ │ ├── ic_brocolli.png │ │ ├── ic_cleanedroom.png │ │ ├── ic_editor_attach_file.png │ │ ├── ic_homework.png │ │ ├── ic_launcher.png │ │ ├── ic_notification.png │ │ └── ic_toothbrush.png │ ├── drawable │ │ ├── msg_incoming.9.png │ │ ├── msg_outgoing.9.png │ │ ├── msg_status_delivered.png │ │ ├── msg_status_seen.png │ │ ├── msg_status_sending.png │ │ └── msg_status_sent.png │ ├── layout │ │ ├── activity_conversation_messages.axml │ │ ├── activity_main.axml │ │ ├── activity_welcome.axml │ │ ├── dialog_ask_text.axml │ │ ├── fragment_confirmation.axml │ │ ├── fragment_conversations.axml │ │ ├── fragment_friends.axml │ │ ├── fragment_get_started.axml │ │ ├── fragment_kinderpoints.axml │ │ ├── fragment_profile.axml │ │ ├── fragment_welcome.axml │ │ ├── item_avatar.axml │ │ ├── item_conversation.axml │ │ ├── item_conversation_msg_icoming.axml │ │ ├── item_conversation_msg_image_icoming.axml │ │ ├── item_conversation_msg_image_outgoing.axml │ │ ├── item_conversation_msg_outgoing.axml │ │ ├── item_friend.axml │ │ ├── item_task.axml │ │ └── toolbar.axml │ ├── menu │ │ ├── friends.xml │ │ └── profile.xml │ ├── values-sw600dp │ │ └── integers.xml │ ├── values-v21 │ │ └── styles.xml │ └── values │ │ ├── arrays.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml ├── WelcomeActivity.cs ├── app.config ├── environment.txt └── packages.config ├── Console ├── AdhocCredentialsProvider.cs ├── CommandParser.cs ├── KinderChat.Console.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WebSocketConnection.cs └── packages.config ├── KinderChat-UAP ├── KinderChat-UAP.sln ├── KinderChat-UAP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Login │ │ │ └── Flag_of_the_United_States.png │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ ├── StoreLogo.scale-100.png │ │ └── WideLogo.scale-100.png │ ├── Common │ │ ├── AlwaysExecutableCommand.cs │ │ ├── AsyncDelegateCommand.cs │ │ ├── AutoFacConfiguration.cs │ │ ├── NavigationHelper.cs │ │ ├── NotifierBase.cs │ │ ├── ObservableDictionary.cs │ │ ├── RelayCommand.cs │ │ └── SuspensionManager.cs │ ├── KinderChat-UAP.csproj │ ├── Locator │ │ └── ViewModels.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ │ └── MenuItem.cs │ ├── Package.appxmanifest │ ├── Pages │ │ ├── LoginPage.xaml │ │ ├── LoginPage.xaml.cs │ │ ├── TokenPage.xaml │ │ └── TokenPage.xaml.cs │ ├── Properties │ │ ├── Annotations.cs │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Tools │ │ └── ChatDebugger.cs │ ├── ViewModels │ │ └── LoginPageViewModel.cs │ └── packages.config └── KinderChat.Core │ ├── Entities │ ├── AuthResponse.cs │ ├── AuthTokens.cs │ └── User.cs │ ├── Exceptions │ └── LoginFailedException.cs │ ├── Interfaces │ ├── IAuthenticationManager.cs │ └── IWebManager.cs │ ├── KinderChat.Core.csproj │ ├── Libraries │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── Managers │ ├── AuthenticationManager.cs │ └── WebManager.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── Tools │ └── EndPoints.cs ├── KinderChat.ServerClient ├── Entities │ ├── Achievement.cs │ ├── AdminEntity.cs │ ├── AuthResponse.cs │ ├── AuthTokens.cs │ ├── Flag.cs │ └── User.cs ├── Exceptions │ └── LoginFailedException.cs ├── Interfaces │ ├── IAdminManager.cs │ ├── IAuthenticationManager.cs │ ├── IAvatarManager.cs │ ├── IDeviceRegistrationManager.cs │ ├── ILiveConnection.cs │ ├── INotificationManager.cs │ ├── IUserManager.cs │ └── IWebManager.cs ├── KinderChat.ServerClient.csproj ├── KinderChat.ServerClient.sln ├── Managers │ ├── AdminManager.cs │ ├── AuthenticationManager.cs │ ├── AvatarManager.cs │ ├── DeviceRegistrationManager.cs │ ├── NotificationManager.cs │ ├── UserManager.cs │ └── WebManager.cs ├── Properties │ └── AssemblyInfo.cs ├── Tools │ └── EndPoints.cs ├── Ws │ ├── Entities │ │ ├── GroupChatParticipant.cs │ │ ├── GroupInfo.cs │ │ └── PublicKeyInfo.cs │ ├── Events │ │ ├── DeliveryNotification.cs │ │ ├── GroupChangedNotification.cs │ │ ├── IncomingMessage.cs │ │ ├── IsTypingNotification.cs │ │ ├── PushedEvent.cs │ │ └── SeenNotification.cs │ ├── Exceptions │ │ └── ConnectionException.cs │ ├── Proxy │ │ ├── Base │ │ │ ├── ConnectionManager.cs │ │ │ └── ICredentialsProvider.cs │ │ ├── GroupChatsService.cs │ │ └── MessagingService.cs │ └── Requests │ │ ├── 1.prr.request-response.snippet │ │ ├── AddParticipantsRequest.cs │ │ ├── AuthenticationRequest.cs │ │ ├── BaseRequest.cs │ │ ├── ChangeGroupRequest.cs │ │ ├── ChangePublicKeyRequest.cs │ │ ├── CreateGroupChatRequest.cs │ │ ├── GetGroupChatInfoRequest.cs │ │ ├── GetGroupsRequest.cs │ │ ├── GroupChangedAcknowledgeRequest.cs │ │ ├── KickParticipantsRequest.cs │ │ ├── LeaveGroupRequest.cs │ │ ├── MarkMessageAsSeenRequest.cs │ │ ├── MessageDeliveredStatusAcknowledgeRequest.cs │ │ ├── MessageReceivedStatusAcknowledgeRequest.cs │ │ ├── MessageSeenStatusAcknowledgeRequest.cs │ │ ├── RegistrationRequest.cs │ │ ├── SendIsTypingRequest.cs │ │ └── SendMessageRequest.cs └── packages.config ├── KinderChat.sln ├── KinderChatAnalysis ├── KinderChatAnalysis.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── KinderChatServer.sln ├── KinderChatServer ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── IdentityConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── ModelDescriptions │ │ ├── CollectionModelDescription.cs │ │ ├── ComplexTypeModelDescription.cs │ │ ├── DictionaryModelDescription.cs │ │ ├── EnumTypeModelDescription.cs │ │ ├── EnumValueDescription.cs │ │ ├── IModelDocumentationProvider.cs │ │ ├── KeyValuePairModelDescription.cs │ │ ├── ModelDescription.cs │ │ ├── ModelDescriptionGenerator.cs │ │ ├── ModelNameAttribute.cs │ │ ├── ModelNameHelper.cs │ │ ├── ParameterAnnotation.cs │ │ ├── ParameterDescription.cs │ │ └── SimpleTypeModelDescription.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ResourceModel.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── Controllers │ ├── AchievementsController.cs │ ├── AdminController.cs │ ├── AvatarController.cs │ ├── BlocksController.cs │ ├── FlagController.cs │ ├── FriendsController.cs │ ├── HomeController.cs │ ├── MessagesController.cs │ ├── NotificationsController.cs │ ├── RegisterController.cs │ └── UsersController.cs ├── Core │ ├── EmailNotifications.cs │ ├── EmailNotifications │ │ ├── LinkUserViaEmailConfirmation.cs │ │ ├── UserAccountConfirmation.cs │ │ └── UserInvite.cs │ └── Notifications.cs ├── DAL │ └── ApplicationDbContext.cs ├── Global.asax ├── Global.asax.cs ├── Icon.png ├── Images │ └── Avatars │ │ ├── avatar-cat-1.png │ │ ├── avatar-cat-2.png │ │ ├── avatar-cat-3.png │ │ ├── avatar-cat-4.png │ │ ├── avatar-cat-5.png │ │ ├── avatar-cat-6.png │ │ ├── avatar-lion-1.png │ │ ├── avatar-lion-2.png │ │ ├── avatar-lion-3.png │ │ ├── avatar-lion-4.png │ │ ├── avatar-lion-5.png │ │ ├── avatar-lion-6.png │ │ ├── avatar-panda-1.png │ │ ├── avatar-panda-2.png │ │ ├── avatar-panda-3.png │ │ ├── avatar-panda-4.png │ │ ├── avatar-panda-5.png │ │ ├── avatar-panda-6.png │ │ ├── avatar-pig-1.png │ │ ├── avatar-pig-2.png │ │ ├── avatar-pig-3.png │ │ ├── avatar-pig-4.png │ │ ├── avatar-pig-5.png │ │ └── avatar-pig-6.png ├── KinderChatServer.csproj ├── Migrations │ ├── 201504132241266_InitialCreate.Designer.cs │ ├── 201504132241266_InitialCreate.cs │ ├── 201504132241266_InitialCreate.resx │ ├── 201504141919031_Messages.Designer.cs │ ├── 201504141919031_Messages.cs │ ├── 201504141919031_Messages.resx │ ├── 201504142041488_TestChangeSine.Designer.cs │ ├── 201504142041488_TestChangeSine.cs │ ├── 201504142041488_TestChangeSine.resx │ ├── 201504151303367_KinderPointsDevice.Designer.cs │ ├── 201504151303367_KinderPointsDevice.cs │ ├── 201504151303367_KinderPointsDevice.resx │ ├── 201504171946537_IsAgency.Designer.cs │ ├── 201504171946537_IsAgency.cs │ ├── 201504171946537_IsAgency.resx │ ├── 201504201626467_AvatarUpdate.Designer.cs │ ├── 201504201626467_AvatarUpdate.cs │ ├── 201504201626467_AvatarUpdate.resx │ ├── 201504201629083_AvatarUpdate2.Designer.cs │ ├── 201504201629083_AvatarUpdate2.cs │ ├── 201504201629083_AvatarUpdate2.resx │ ├── 201504211555402_AvatarUpdate3.Designer.cs │ ├── 201504211555402_AvatarUpdate3.cs │ ├── 201504211555402_AvatarUpdate3.resx │ ├── 201504211951007_Achievements.Designer.cs │ ├── 201504211951007_Achievements.cs │ ├── 201504211951007_Achievements.resx │ ├── 201504212013481_Avatar5.Designer.cs │ ├── 201504212013481_Avatar5.cs │ ├── 201504212013481_Avatar5.resx │ ├── 201504221329505_avatartest.Designer.cs │ ├── 201504221329505_avatartest.cs │ ├── 201504221329505_avatartest.resx │ ├── 201504271406468_Joined.Designer.cs │ ├── 201504271406468_Joined.cs │ ├── 201504271406468_Joined.resx │ ├── 201504271740070_Flags.Designer.cs │ ├── 201504271740070_Flags.cs │ ├── 201504271740070_Flags.resx │ ├── 201504271809277_flags2.Designer.cs │ ├── 201504271809277_flags2.cs │ ├── 201504271809277_flags2.resx │ ├── 201504271812033_flags3.Designer.cs │ ├── 201504271812033_flags3.cs │ ├── 201504271812033_flags3.resx │ ├── 201504271814092_flags4.Designer.cs │ ├── 201504271814092_flags4.cs │ ├── 201504271814092_flags4.resx │ ├── 201504271828240_flags5.Designer.cs │ ├── 201504271828240_flags5.cs │ ├── 201504271828240_flags5.resx │ ├── 201504271837100_flags6.Designer.cs │ ├── 201504271837100_flags6.cs │ ├── 201504271837100_flags6.resx │ ├── 201505081311157_FriendBlock.Designer.cs │ ├── 201505081311157_FriendBlock.cs │ ├── 201505081311157_FriendBlock.resx │ └── Configuration.cs ├── Models │ ├── Achievement.cs │ ├── AchievementsRecieved.cs │ ├── Block.cs │ ├── Flag.cs │ ├── Friend.cs │ ├── JsonUser.cs │ ├── Message.cs │ └── User.cs ├── Project_Readme.html ├── Properties │ ├── AssemblyInfo.cs │ ├── PublishProfiles │ │ ├── kinder-chat - FTP.pubxml │ │ └── kinder-chat - Web Deploy.pubxml │ ├── Settings.Designer.cs │ └── Settings.settings ├── Providers │ └── ApplicationOAuthProvider.cs ├── Results │ └── ChallengeResult.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-2.1.3.intellisense.js │ ├── jquery-2.1.3.js │ ├── jquery-2.1.3.min.js │ ├── jquery-2.1.3.min.map │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── modernizr-2.8.3.js │ ├── npm.js │ ├── respond.js │ ├── respond.matchmedia.addListener.js │ ├── respond.matchmedia.addListener.min.js │ ├── respond.min.js │ ├── ww.jquery.js │ └── ww.jquery.min.js ├── Startup.cs ├── Tools │ ├── RequireHttpsAttribute.cs │ └── TokenFilterAttribute.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Templates │ │ ├── LinkUser.cshtml │ │ ├── NewUser.cshtml │ │ └── UserInvite.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── packages.config └── robots.txt ├── KinderChatSocketServer.sln ├── KinderChatTests ├── KinderChatTests.csproj ├── Tests.cs └── packages.config ├── KinderChatWorkerRole ├── .nuget │ └── packages.config ├── KinderChat.ServiceBusShared │ ├── Entities │ │ ├── Events │ │ │ ├── DeliveryNotification.cs │ │ │ ├── Event.cs │ │ │ ├── GroupChangedEvent.cs │ │ │ ├── IsTypingEvent.cs │ │ │ ├── Message.cs │ │ │ ├── NewDeviceCreatedEvent.cs │ │ │ └── SeenNotification.cs │ │ ├── GroupChat.cs │ │ └── GroupChatParticipant.cs │ ├── KinderChat.ServiceBusShared.csproj │ ├── ProcessedMessagesQueue.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceBusQueue.cs │ ├── ServiceBusTopic.cs │ ├── TokenFastValidator.cs │ ├── app.config │ └── packages.config ├── KinderChat.WorkerRole.SocketServer.ConsoleHost │ ├── App.config │ ├── KinderChat.WorkerRole.SocketServer.ConsoleHost.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── KinderChat.WorkerRole.SocketServer │ ├── Api │ │ ├── Base │ │ │ ├── ApiMethodAttribute.cs │ │ │ ├── BaseController.cs │ │ │ └── EventManagement │ │ │ │ ├── InstantEventManager.cs │ │ │ │ └── ReliableEventManager.cs │ │ ├── GroupChatsController.cs │ │ ├── MessagingController.cs │ │ ├── RootController.cs │ │ └── _HowToAddNewControllersAndMethods.txt │ ├── App.config │ ├── Bootstrapper.cs │ ├── CoreModule.cs │ ├── Domain │ │ ├── Entities.txt │ │ ├── IDevicesRepository.cs │ │ ├── IGlobalSessionsRegistry.cs │ │ ├── IGroupChatsRepository.cs │ │ ├── IInternalMessageBus.cs │ │ ├── ISession.cs │ │ ├── ISessionsServer.cs │ │ └── IUndeliveredEventsRepository.cs │ ├── Infrastructure │ │ ├── Helpers │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── IPulsable.cs │ │ │ └── StringExtensions.cs │ │ ├── Logging │ │ │ ├── ILogger.cs │ │ │ ├── LogFactory.cs │ │ │ └── Loggers │ │ │ │ ├── AzureLogger.cs │ │ │ │ ├── ConsoleLogger.cs │ │ │ │ └── NullLogger.cs │ │ ├── Persistence │ │ │ ├── InMemory │ │ │ │ ├── InMemoryDeviceRepository.cs │ │ │ │ ├── InMemoryGroupChatsRepository.cs │ │ │ │ ├── InMemorySessionsRegistry.cs │ │ │ │ └── InMemoryUndeliveredEventsRepository.cs │ │ │ └── Redis │ │ │ │ ├── RedisDeviceRepository.cs │ │ │ │ ├── RedisExtensions.cs │ │ │ │ ├── RedisGroupChatsRepository.cs │ │ │ │ ├── RedisSessionsRegistry.cs │ │ │ │ └── RedisUndeliveredEventsRepository.cs │ │ └── Transport │ │ │ ├── InternalBus │ │ │ ├── Redis │ │ │ │ └── note.txt │ │ │ ├── ServiceBus │ │ │ │ └── InternalMessagesQueue.cs │ │ │ └── Stub │ │ │ │ └── StubInternalMessageBus.cs │ │ │ └── Sockets │ │ │ ├── Commands │ │ │ ├── Ping.cs │ │ │ └── Request.cs │ │ │ ├── LiveServer.cs │ │ │ └── LiveSession.cs │ ├── KinderChat.WorkerRole.SocketServer.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceLocator.cs │ ├── WorkerRole.cs │ ├── diagram.png │ └── packages.config ├── KinderChat.WorkerRole.SocketServerContent │ └── diagnostics.wadcfgx ├── KinderChat.WorkerRole.ccproj ├── KinderChatWorkerRole.sln ├── ServiceConfiguration.Cloud.cscfg ├── ServiceConfiguration.Local.cscfg └── ServiceDefinition.csdef ├── LICENSE ├── Matriarch.sln ├── Matriarch ├── Matriarch.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Matriarch.Droid.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── _SettingsStarted.txt │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ ├── values-v21 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── app.config │ └── packages.config ├── Matriarch.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Matriarch.WinPhone.csproj │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ ├── WMAppManifest.xml │ │ └── _SettingsStarted.txt │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config ├── Matriarch.WinStore │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── Logo.scale-100.png │ │ ├── SmallLogo.scale-100.png │ │ ├── SplashScreen.scale-100.png │ │ └── StoreLogo.scale-100.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Matriarch.WinStore.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── _SettingsStarted.txt │ └── packages.config ├── Matriarch.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Matriarch.iOS.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── _SettingsStarted.txt │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── LaunchScreen.storyboard │ │ ├── badge.png │ │ ├── badge@2x.png │ │ ├── badge@3x.png │ │ ├── stats.png │ │ ├── stats@2x.png │ │ └── stats@3x.png │ ├── app.config │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config └── Matriarch │ ├── App.cs │ ├── Helpers │ ├── Grouping.cs │ └── Settings.cs │ ├── Matriarch.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── ViewModels │ ├── BaseViewModel.cs │ ├── FlaggedUsersViewModel.cs │ ├── StatisticsAvatarsViewModel.cs │ ├── StatisticsNamesViewModel.cs │ └── StatisticsViewModel.cs │ ├── Views │ ├── FlaggedUsers.xaml │ ├── FlaggedUsers.xaml.cs │ ├── FlaggedUsersDetails.xaml │ ├── FlaggedUsersDetails.xaml.cs │ ├── MainPage.cs │ ├── Statistics.xaml │ ├── Statistics.xaml.cs │ ├── StatisticsAvatars.xaml │ ├── StatisticsAvatars.xaml.cs │ ├── StatisticsNames.xaml │ └── StatisticsNames.xaml.cs │ └── packages.config ├── README.md ├── SharedClient ├── App.cs ├── Common │ ├── BatchUpdateObservableCollectoin.cs │ ├── Context.cs │ └── ListExtension.cs ├── Converters │ ├── TimestampConverter.cs │ └── ValueConverter.cs ├── DataLayer │ └── KinderDatabase.cs ├── Helpers │ ├── DisposableAction.cs │ ├── IMessageDialog.cs │ ├── RegexUtilities.cs │ ├── RelayCommand.cs │ ├── ServiceContainer.cs │ └── Settings.cs ├── Models │ ├── AvatarItem.cs │ ├── DeviceInfo.cs │ ├── EntityBase.cs │ ├── Friend.cs │ ├── KinderTask.cs │ ├── Message.cs │ ├── MessageStatus.cs │ ├── MessageType.cs │ ├── NotificationMessage.cs │ └── SignUp │ │ ├── SignUpIdentity.cs │ │ └── SignUpValue.cs ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── Services │ ├── Cryptography │ │ ├── HybridRsaAes │ │ │ ├── Aes.cs │ │ │ ├── HowItWorks.png │ │ │ └── RsaAndAesHybridCryptoService.cs │ │ └── ICryptoService.cs │ ├── DataManager.cs │ ├── IDeviceInfoProvider.cs │ ├── IUIThreadDispacher.cs │ ├── Images │ │ ├── IPhotoGallery.cs │ │ ├── OriginalAndThumbnail.cs │ │ ├── Photo.cs │ │ └── PhotoGalleryManager.cs │ ├── Logger.cs │ ├── Messages │ │ ├── EventArgs │ │ │ ├── MessageEventArgs.cs │ │ │ └── MessageStatusEventArgs.cs │ │ ├── GroupsManager.cs │ │ ├── IMessageRepository.cs │ │ └── MessagesManager.cs │ └── Typing │ │ ├── CurrentUserTypingController.cs │ │ ├── OpponentTypingController.cs │ │ └── TypingService.cs ├── SharedClient.csproj ├── Strings.cs ├── ViewModels │ ├── BaseViewModel.cs │ ├── ConversationViewModel.cs │ ├── ConversationsViewModel.cs │ ├── Events │ │ ├── NotificationEvent.cs │ │ └── NotificationHandler.cs │ ├── FriendsViewModel.cs │ ├── Messages │ │ ├── ImageMessageViewModel.cs │ │ ├── MessageViewModel.cs │ │ ├── MessageViewModelFactory.cs │ │ └── TextMessageViewModel.cs │ ├── PointsViewModel.cs │ ├── ProfileViewModel.cs │ └── SignUpViewModel.cs └── packages.config ├── Shot.png └── iOS ├── AppDelegate.cs ├── Chat └── ChatViewController.cs ├── Common ├── CollectionUpdater.cs ├── EventArgs │ ├── AddRemoveReplaceEventArgs.cs │ └── MoveEventArgs.cs └── InteractiveDebugger.cs ├── Conversation ├── Cells │ ├── BubbleCell.cs │ ├── IncomingCell.cs │ └── OutgoingCell.cs ├── ChatInputView.cs ├── ChatSource.cs └── ConversationViewController.cs ├── Entitlements.plist ├── EventArgs ├── ISelectableSource.cs ├── NSIndexPathEventArgs.cs └── PersonEventArgs.cs ├── Friends ├── FriendsSource.cs ├── FriendsViewContoller.cs ├── FriendsViewContoller.designer.cs └── UICollectionViewFriendCell.cs ├── GestureAttacher ├── LongPressGestureAttacher.cs └── TapGestureAttacher.cs ├── GettingStarted.Xamarin ├── Helpers ├── CollectionViewSpaceCalculator.cs ├── ConstraintExtensions.cs ├── ConversationsStore.cs ├── ImageUtils.cs ├── Layout.cs ├── MessageDialog.cs ├── RefresherControl.cs ├── SausageButtons.cs ├── ThemeUtils.cs └── Utils.cs ├── Info.plist ├── Infrastructure └── UiThreadDispacher.cs ├── KinderChat.iOS.csproj ├── LaunchScreen.xib ├── Libs ├── SuperSocket.ClientEngine.Common.dll ├── SuperSocket.ClientEngine.Core.dll ├── SuperSocket.ClientEngine.Protocol.dll └── WebSocket4Net.dll ├── Login ├── ConfirmationViewController.cs ├── ConfirmationViewController.designer.cs ├── FirstResponderResigner.cs ├── LoginViewController.cs └── LoginViewController.designer.cs ├── Main.cs ├── Main ├── RootViewController.cs ├── RootViewController.designer.cs └── TabOrder.cs ├── MainStoryboard.storyboard ├── MessageList ├── AddressBook │ ├── AddressBookManager.cs │ └── PersonFormatter.cs ├── ConversationCell.cs ├── ConversationCell.designer.cs ├── ConversationsDataSource.cs ├── MessageListViewController.cs └── MessageListViewController.designer.cs ├── NavigationControllerBase.cs ├── NavigationControllerBase.designer.cs ├── Points ├── PointsViewController.cs ├── PointsViewController.designer.cs ├── TaskCell.cs └── TaskCollectionViewSource.cs ├── Profile ├── AvatarCollectionViewCell.cs ├── AvatarsCollectionViewSource.cs ├── ProfileViewController.cs └── ProfileViewController.designer.cs ├── Properties ├── AssemblyInfo.cs └── _SettingsStarted.txt ├── Resources ├── ComicNeue-Regular.otf ├── ComicNeue_Bold.otf ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── 100x100.png │ │ ├── 114x114.png │ │ ├── 120x120.png │ │ ├── 144x144.png │ │ ├── 152x152.png │ │ ├── 180x180.png │ │ ├── 29x29.png │ │ ├── 40x40.png │ │ ├── 50x50.png │ │ ├── 57x57.png │ │ ├── 58x58.png │ │ ├── 72x72.png │ │ ├── 76x76.png │ │ ├── 80x80.png │ │ ├── 87x87.png │ │ └── Contents.json │ ├── Disclosure.imageset │ │ ├── Contents.json │ │ ├── disclosure.png │ │ ├── disclosure@2.png │ │ └── disclosure@3.png │ ├── LaunchImage.launchimage │ │ ├── 1242x2208.png │ │ ├── 2208x1242.png │ │ ├── 320x480.png │ │ ├── 640x1136.png │ │ ├── 640x960.png │ │ ├── 750x1334.png │ │ └── Contents.json │ ├── MessageBubble.imageset │ │ ├── Contents.json │ │ └── MessageBubble@2x.png │ ├── SignUpBubble.imageset │ │ ├── Contents.json │ │ ├── signUpBubble.png │ │ ├── signUpBubble@2.png │ │ └── signUpBubble@3.png │ ├── avatarSelectionMask.imageset │ │ ├── Contents.json │ │ ├── avatarSelectionMask.png │ │ ├── avatarSelectionMask@2.png │ │ └── avatarSelectionMask@3.png │ ├── bearIcon.imageset │ │ ├── Contents.json │ │ ├── bearIcon.png │ │ ├── bearIcon@2.png │ │ └── bearIcon@3.png │ ├── bearIconWithBook.imageset │ │ ├── Contents.json │ │ ├── bearIconWithBook.png │ │ ├── bearIconWithBook@2.png │ │ └── bearIconWithBook@3.png │ ├── bubble_regular.imageset │ │ ├── Contents.json │ │ ├── bubble_regular.png │ │ ├── bubble_regular@2x.png │ │ └── bubble_regular@3x.png │ ├── bubble_regular_mirror.imageset │ │ ├── Contents.json │ │ ├── bubble_regular.png │ │ ├── bubble_regular@2x.png │ │ └── bubble_regular@3x.png │ ├── bubble_stroked.imageset │ │ ├── Contents.json │ │ ├── bubble_stroked.png │ │ ├── bubble_stroked@2x.png │ │ └── bubble_stroked@3x.png │ ├── bubble_stroked_mirror.imageset │ │ ├── Contents.json │ │ ├── bubble_stroked.png │ │ ├── bubble_stroked@2x.png │ │ └── bubble_stroked@3x.png │ ├── editNickName.imageset │ │ ├── Contents.json │ │ ├── editNickName.png │ │ ├── editNickName@2.png │ │ └── editNickName@3.png │ ├── newMessageIcon.imageset │ │ ├── Contents.json │ │ ├── newMessageIcon.png │ │ ├── newMessageIcon@2.png │ │ └── newMessageIcon@3.png │ ├── splashLogo.imageset │ │ ├── Contents.json │ │ ├── splashLogo.png │ │ ├── splashLogo@2.png │ │ └── splashLogo@3.png │ ├── tabIconBear.imageset │ │ ├── Contents.json │ │ ├── bearTabIcon.png │ │ ├── bearTabIcon@2.png │ │ └── bearTabIcon@3.png │ ├── tabIconMessages.imageset │ │ ├── Contents.json │ │ ├── tabIconMessages.png │ │ ├── tabIconMessages@2.png │ │ └── tabIconMessages@3.png │ ├── tabIconPoints.imageset │ │ ├── Contents.json │ │ ├── points.png │ │ ├── points@2x.png │ │ └── points@3x.png │ ├── tabIconProfile.imageset │ │ ├── Contents.json │ │ ├── ProfileTabBarIcon.png │ │ ├── ProfileTabBarIcon@2.png │ │ └── ProfileTabBarIcon@3.png │ ├── taskIconBrocolli.imageset │ │ ├── Contents.json │ │ ├── brocolli.png │ │ ├── brocolli@2x.png │ │ └── brocolli@3x.png │ ├── taskIconFinishedHomework.imageset │ │ ├── Contents.json │ │ ├── finishedHomework.png │ │ ├── finishedHomework@2x.png │ │ └── finishedHomework@3x.png │ ├── taskIconToothbrush.imageset │ │ ├── Contents.json │ │ ├── toothbrush.png │ │ ├── toothbrush@2x.png │ │ └── toothbrush@3x.png │ ├── taskIconVacuumCleaner.imageset │ │ ├── Contents.json │ │ ├── vacuumCleaner.png │ │ ├── vacuumCleaner@2x.png │ │ └── vacuumCleaner@3x.png │ └── toolbarLinkIcon.imageset │ │ ├── Contents.json │ │ ├── linkToolbarIcon.png │ │ ├── linkToolbarIcon@2x.png │ │ └── linkToolbarIcon@3x.png └── VarelaRound-Regular.ttf ├── Theme ├── Color │ ├── 1BlueColorTheme.cs │ ├── 2BlackColorTheme.cs │ ├── 3PinkColorTheme.cs │ ├── AppColors.cs │ └── IColorTheme.cs ├── Font │ ├── 1BlueFontTheme.cs │ ├── 2BlackFontTheme.cs │ ├── 3PinkFontTheme.cs │ ├── AppFonts.cs │ └── IFontTheme.cs ├── IThemeable.cs ├── Images │ ├── 1BlueImagesTheme.cs │ ├── 2BlackImagesTheme.cs │ ├── 3PinkImagesTheme.cs │ └── IImagesTheme.cs └── Theme.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/.gitignore -------------------------------------------------------------------------------- /Android/Adapters/AvatarAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Adapters/AvatarAdapter.cs -------------------------------------------------------------------------------- /Android/Adapters/ConversationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Adapters/ConversationAdapter.cs -------------------------------------------------------------------------------- /Android/Adapters/FriendAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Adapters/FriendAdapter.cs -------------------------------------------------------------------------------- /Android/Adapters/ItemAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Adapters/ItemAdapter.cs -------------------------------------------------------------------------------- /Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Android/BaseActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/BaseActivity.cs -------------------------------------------------------------------------------- /Android/Controls/CircleDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Controls/CircleDrawable.cs -------------------------------------------------------------------------------- /Android/Controls/CircleImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Controls/CircleImageView.cs -------------------------------------------------------------------------------- /Android/Controls/ObservableAdapaterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Controls/ObservableAdapaterBase.cs -------------------------------------------------------------------------------- /Android/Controls/SquareImageView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Controls/SquareImageView.cs -------------------------------------------------------------------------------- /Android/ConversationActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/ConversationActivity.cs -------------------------------------------------------------------------------- /Android/Fragments/BaseFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/BaseFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/MainSections/ConversationsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/MainSections/ConversationsFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/MainSections/FriendsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/MainSections/FriendsFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/MainSections/KinderPointsFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/MainSections/KinderPointsFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/MainSections/ProfileFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/MainSections/ProfileFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/Signup/ConfirmationFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/Signup/ConfirmationFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/Signup/GetStartedFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/Signup/GetStartedFragment.cs -------------------------------------------------------------------------------- /Android/Fragments/Signup/WelcomeFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Fragments/Signup/WelcomeFragment.cs -------------------------------------------------------------------------------- /Android/Helpers/MessageDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Helpers/MessageDialogs.cs -------------------------------------------------------------------------------- /Android/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Helpers/Utils.cs -------------------------------------------------------------------------------- /Android/Infrastructure/UIThreadDispacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Infrastructure/UIThreadDispacher.cs -------------------------------------------------------------------------------- /Android/KinderApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/KinderApplication.cs -------------------------------------------------------------------------------- /Android/KinderChat.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/KinderChat.Android.csproj -------------------------------------------------------------------------------- /Android/Libs/PCLCrypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Libs/PCLCrypto.dll -------------------------------------------------------------------------------- /Android/Libs/PCLCrypto.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Libs/PCLCrypto.dll.mdb -------------------------------------------------------------------------------- /Android/Libs/PCLCrypto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Libs/PCLCrypto.xml -------------------------------------------------------------------------------- /Android/Libs/Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Libs/Validation.dll -------------------------------------------------------------------------------- /Android/Libs/Validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Libs/Validation.xml -------------------------------------------------------------------------------- /Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/MainActivity.cs -------------------------------------------------------------------------------- /Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Android/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /Android/PushNotifications/PushNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/PushNotifications/PushNotifications.cs -------------------------------------------------------------------------------- /Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Android/Resources/anim/enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/anim/enter.xml -------------------------------------------------------------------------------- /Android/Resources/anim/exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/anim/exit.xml -------------------------------------------------------------------------------- /Android/Resources/anim/pop_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/anim/pop_enter.xml -------------------------------------------------------------------------------- /Android/Resources/anim/pop_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/anim/pop_exit.xml -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/default_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/default_photo.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_action_camera.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_action_content_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_action_content_link.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_action_content_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_action_content_save.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_action_content_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_action_content_send.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_brocolli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_brocolli.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_cleanedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_cleanedroom.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_content_add.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_editor_attach_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_editor_attach_file.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_homework.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /Android/Resources/drawable-hdpi/ic_toothbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-hdpi/ic_toothbrush.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/default_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/default_photo.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_action_camera.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_action_content_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_action_content_link.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_action_content_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_action_content_save.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_action_content_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_action_content_send.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_brocolli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_brocolli.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_cleanedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_cleanedroom.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_content_add.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_editor_attach_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_editor_attach_file.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_homework.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /Android/Resources/drawable-mdpi/ic_toothbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-mdpi/ic_toothbrush.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/default_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/default_photo.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_action_content_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_action_content_link.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_action_content_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_action_content_save.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_action_content_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_action_content_send.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_brocolli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_brocolli.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_cleanedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_cleanedroom.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_content_add.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_editor_attach_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_editor_attach_file.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_homework.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xhdpi/ic_toothbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xhdpi/ic_toothbrush.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/default_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/default_photo.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_action_content_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_action_content_link.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_action_content_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_action_content_save.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_action_content_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_action_content_send.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_brocolli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_brocolli.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_cleanedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_cleanedroom.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_content_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_content_add.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_editor_attach_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_editor_attach_file.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_homework.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxhdpi/ic_toothbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxhdpi/ic_toothbrush.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_action_content_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_action_content_link.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_brocolli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_brocolli.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_cleanedroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_cleanedroom.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_editor_attach_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_editor_attach_file.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_homework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_homework.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /Android/Resources/drawable-xxxhdpi/ic_toothbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable-xxxhdpi/ic_toothbrush.png -------------------------------------------------------------------------------- /Android/Resources/drawable/msg_incoming.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable/msg_incoming.9.png -------------------------------------------------------------------------------- /Android/Resources/drawable/msg_outgoing.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable/msg_outgoing.9.png -------------------------------------------------------------------------------- /Android/Resources/drawable/msg_status_delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable/msg_status_delivered.png -------------------------------------------------------------------------------- /Android/Resources/drawable/msg_status_seen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable/msg_status_seen.png -------------------------------------------------------------------------------- /Android/Resources/drawable/msg_status_sending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable/msg_status_sending.png -------------------------------------------------------------------------------- /Android/Resources/drawable/msg_status_sent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/drawable/msg_status_sent.png -------------------------------------------------------------------------------- /Android/Resources/layout/activity_conversation_messages.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/activity_conversation_messages.axml -------------------------------------------------------------------------------- /Android/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /Android/Resources/layout/activity_welcome.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/activity_welcome.axml -------------------------------------------------------------------------------- /Android/Resources/layout/dialog_ask_text.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/dialog_ask_text.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_confirmation.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_confirmation.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_conversations.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_conversations.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_friends.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_friends.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_get_started.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_get_started.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_kinderpoints.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_kinderpoints.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_profile.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_profile.axml -------------------------------------------------------------------------------- /Android/Resources/layout/fragment_welcome.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/fragment_welcome.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_avatar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_avatar.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_conversation.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_conversation.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_conversation_msg_icoming.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_conversation_msg_icoming.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_conversation_msg_image_icoming.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_conversation_msg_image_icoming.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_conversation_msg_image_outgoing.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_conversation_msg_image_outgoing.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_conversation_msg_outgoing.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_conversation_msg_outgoing.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_friend.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_friend.axml -------------------------------------------------------------------------------- /Android/Resources/layout/item_task.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/item_task.axml -------------------------------------------------------------------------------- /Android/Resources/layout/toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/layout/toolbar.axml -------------------------------------------------------------------------------- /Android/Resources/menu/friends.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/menu/friends.xml -------------------------------------------------------------------------------- /Android/Resources/menu/profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/menu/profile.xml -------------------------------------------------------------------------------- /Android/Resources/values-sw600dp/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values-sw600dp/integers.xml -------------------------------------------------------------------------------- /Android/Resources/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values-v21/styles.xml -------------------------------------------------------------------------------- /Android/Resources/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values/arrays.xml -------------------------------------------------------------------------------- /Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Android/Resources/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values/dimens.xml -------------------------------------------------------------------------------- /Android/Resources/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values/integers.xml -------------------------------------------------------------------------------- /Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values/strings.xml -------------------------------------------------------------------------------- /Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Android/WelcomeActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/WelcomeActivity.cs -------------------------------------------------------------------------------- /Android/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/app.config -------------------------------------------------------------------------------- /Android/environment.txt: -------------------------------------------------------------------------------- 1 | MONO_GC_PARAMS=bridge-implementation=new -------------------------------------------------------------------------------- /Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Android/packages.config -------------------------------------------------------------------------------- /Console/AdhocCredentialsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/AdhocCredentialsProvider.cs -------------------------------------------------------------------------------- /Console/CommandParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/CommandParser.cs -------------------------------------------------------------------------------- /Console/KinderChat.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/KinderChat.Console.csproj -------------------------------------------------------------------------------- /Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/Program.cs -------------------------------------------------------------------------------- /Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Console/WebSocketConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/WebSocketConnection.cs -------------------------------------------------------------------------------- /Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Console/packages.config -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP.sln -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/App.xaml -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/App.xaml.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Assets/WideLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Assets/WideLogo.scale-100.png -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/AlwaysExecutableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/AlwaysExecutableCommand.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/AsyncDelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/AsyncDelegateCommand.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/AutoFacConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/AutoFacConfiguration.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/NavigationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/NavigationHelper.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/NotifierBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/NotifierBase.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/ObservableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/ObservableDictionary.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/RelayCommand.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Common/SuspensionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Common/SuspensionManager.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/KinderChat-UAP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/KinderChat-UAP.csproj -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Locator/ViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Locator/ViewModels.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/MainPage.xaml -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/MainPage.xaml.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Models/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Models/MenuItem.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Package.appxmanifest -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Pages/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Pages/LoginPage.xaml -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Pages/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Pages/LoginPage.xaml.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Pages/TokenPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Pages/TokenPage.xaml -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Pages/TokenPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Pages/TokenPage.xaml.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Properties/Annotations.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/Tools/ChatDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/Tools/ChatDebugger.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/ViewModels/LoginPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/ViewModels/LoginPageViewModel.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat-UAP/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat-UAP/packages.config -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Entities/AuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Entities/AuthResponse.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Entities/AuthTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Entities/AuthTokens.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Entities/User.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Exceptions/LoginFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Exceptions/LoginFailedException.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Interfaces/IAuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Interfaces/IAuthenticationManager.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Interfaces/IWebManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Interfaces/IWebManager.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/KinderChat.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/KinderChat.Core.csproj -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Libraries/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Libraries/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Libraries/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Libraries/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Managers/AuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Managers/AuthenticationManager.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Managers/WebManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Managers/WebManager.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinderChat-UAP/KinderChat.Core/Tools/EndPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat-UAP/KinderChat.Core/Tools/EndPoints.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Entities/Achievement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Entities/Achievement.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Entities/AdminEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Entities/AdminEntity.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Entities/AuthResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Entities/AuthResponse.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Entities/AuthTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Entities/AuthTokens.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Entities/Flag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Entities/Flag.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Entities/User.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Exceptions/LoginFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Exceptions/LoginFailedException.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/IAdminManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/IAdminManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/IAuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/IAuthenticationManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/IAvatarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/IAvatarManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/IDeviceRegistrationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/IDeviceRegistrationManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/ILiveConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/ILiveConnection.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/INotificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/INotificationManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/IUserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/IUserManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Interfaces/IWebManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Interfaces/IWebManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/KinderChat.ServerClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/KinderChat.ServerClient.csproj -------------------------------------------------------------------------------- /KinderChat.ServerClient/KinderChat.ServerClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/KinderChat.ServerClient.sln -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/AdminManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/AdminManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/AuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/AuthenticationManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/AvatarManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/AvatarManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/DeviceRegistrationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/DeviceRegistrationManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/NotificationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/NotificationManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/UserManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Managers/WebManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Managers/WebManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Tools/EndPoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Tools/EndPoints.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Entities/GroupChatParticipant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Entities/GroupChatParticipant.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Entities/GroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Entities/GroupInfo.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Entities/PublicKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Entities/PublicKeyInfo.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Events/DeliveryNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Events/DeliveryNotification.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Events/GroupChangedNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Events/GroupChangedNotification.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Events/IncomingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Events/IncomingMessage.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Events/IsTypingNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Events/IsTypingNotification.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Events/PushedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Events/PushedEvent.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Events/SeenNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Events/SeenNotification.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Exceptions/ConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Exceptions/ConnectionException.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Proxy/Base/ConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Proxy/Base/ConnectionManager.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Proxy/Base/ICredentialsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Proxy/Base/ICredentialsProvider.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Proxy/GroupChatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Proxy/GroupChatsService.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Proxy/MessagingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Proxy/MessagingService.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/1.prr.request-response.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/1.prr.request-response.snippet -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/AddParticipantsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/AddParticipantsRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/AuthenticationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/AuthenticationRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/BaseRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/BaseRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/ChangeGroupRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/ChangeGroupRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/ChangePublicKeyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/ChangePublicKeyRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/CreateGroupChatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/CreateGroupChatRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/GetGroupChatInfoRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/GetGroupChatInfoRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/GetGroupsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/GetGroupsRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/GroupChangedAcknowledgeRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/GroupChangedAcknowledgeRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/KickParticipantsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/KickParticipantsRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/LeaveGroupRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/LeaveGroupRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/MarkMessageAsSeenRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/MarkMessageAsSeenRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/RegistrationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/RegistrationRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/SendIsTypingRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/SendIsTypingRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/Ws/Requests/SendMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/Ws/Requests/SendMessageRequest.cs -------------------------------------------------------------------------------- /KinderChat.ServerClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.ServerClient/packages.config -------------------------------------------------------------------------------- /KinderChat.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChat.sln -------------------------------------------------------------------------------- /KinderChatAnalysis/KinderChatAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatAnalysis/KinderChatAnalysis.csproj -------------------------------------------------------------------------------- /KinderChatAnalysis/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatAnalysis/Program.cs -------------------------------------------------------------------------------- /KinderChatAnalysis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatAnalysis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinderChatServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer.sln -------------------------------------------------------------------------------- /KinderChatServer/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /KinderChatServer/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /KinderChatServer/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /KinderChatServer/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /KinderChatServer/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /KinderChatServer/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /KinderChatServer/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/Site.css -------------------------------------------------------------------------------- /KinderChatServer/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /KinderChatServer/Content/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/bootstrap-theme.css.map -------------------------------------------------------------------------------- /KinderChatServer/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /KinderChatServer/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/bootstrap.css -------------------------------------------------------------------------------- /KinderChatServer/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/bootstrap.css.map -------------------------------------------------------------------------------- /KinderChatServer/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Content/bootstrap.min.css -------------------------------------------------------------------------------- /KinderChatServer/Controllers/AchievementsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/AchievementsController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/AdminController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/AvatarController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/AvatarController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/BlocksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/BlocksController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/FlagController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/FlagController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/FriendsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/FriendsController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/MessagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/MessagesController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/NotificationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/NotificationsController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/RegisterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/RegisterController.cs -------------------------------------------------------------------------------- /KinderChatServer/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Controllers/UsersController.cs -------------------------------------------------------------------------------- /KinderChatServer/Core/EmailNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Core/EmailNotifications.cs -------------------------------------------------------------------------------- /KinderChatServer/Core/EmailNotifications/UserAccountConfirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Core/EmailNotifications/UserAccountConfirmation.cs -------------------------------------------------------------------------------- /KinderChatServer/Core/EmailNotifications/UserInvite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Core/EmailNotifications/UserInvite.cs -------------------------------------------------------------------------------- /KinderChatServer/Core/Notifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Core/Notifications.cs -------------------------------------------------------------------------------- /KinderChatServer/DAL/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/DAL/ApplicationDbContext.cs -------------------------------------------------------------------------------- /KinderChatServer/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Global.asax -------------------------------------------------------------------------------- /KinderChatServer/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Global.asax.cs -------------------------------------------------------------------------------- /KinderChatServer/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Icon.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-cat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-cat-1.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-cat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-cat-2.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-cat-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-cat-3.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-cat-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-cat-4.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-cat-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-cat-5.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-cat-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-cat-6.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-lion-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-lion-1.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-lion-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-lion-2.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-lion-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-lion-3.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-lion-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-lion-4.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-lion-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-lion-5.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-lion-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-lion-6.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-panda-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-panda-1.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-panda-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-panda-2.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-panda-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-panda-3.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-panda-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-panda-4.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-panda-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-panda-5.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-panda-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-panda-6.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-pig-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-pig-1.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-pig-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-pig-2.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-pig-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-pig-3.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-pig-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-pig-4.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-pig-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-pig-5.png -------------------------------------------------------------------------------- /KinderChatServer/Images/Avatars/avatar-pig-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Images/Avatars/avatar-pig-6.png -------------------------------------------------------------------------------- /KinderChatServer/KinderChatServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/KinderChatServer.csproj -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504132241266_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504132241266_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504132241266_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504132241266_InitialCreate.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504132241266_InitialCreate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504132241266_InitialCreate.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504141919031_Messages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504141919031_Messages.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504141919031_Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504141919031_Messages.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504141919031_Messages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504141919031_Messages.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504142041488_TestChangeSine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504142041488_TestChangeSine.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504142041488_TestChangeSine.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504142041488_TestChangeSine.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504151303367_KinderPointsDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504151303367_KinderPointsDevice.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504151303367_KinderPointsDevice.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504151303367_KinderPointsDevice.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504171946537_IsAgency.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504171946537_IsAgency.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504171946537_IsAgency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504171946537_IsAgency.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504171946537_IsAgency.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504171946537_IsAgency.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504201626467_AvatarUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504201626467_AvatarUpdate.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504201626467_AvatarUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504201626467_AvatarUpdate.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504201626467_AvatarUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504201626467_AvatarUpdate.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504201629083_AvatarUpdate2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504201629083_AvatarUpdate2.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504201629083_AvatarUpdate2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504201629083_AvatarUpdate2.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504201629083_AvatarUpdate2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504201629083_AvatarUpdate2.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504211555402_AvatarUpdate3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504211555402_AvatarUpdate3.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504211555402_AvatarUpdate3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504211555402_AvatarUpdate3.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504211555402_AvatarUpdate3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504211555402_AvatarUpdate3.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504211951007_Achievements.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504211951007_Achievements.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504211951007_Achievements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504211951007_Achievements.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504211951007_Achievements.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504211951007_Achievements.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504212013481_Avatar5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504212013481_Avatar5.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504212013481_Avatar5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504212013481_Avatar5.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504212013481_Avatar5.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504212013481_Avatar5.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504221329505_avatartest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504221329505_avatartest.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504221329505_avatartest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504221329505_avatartest.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504221329505_avatartest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504221329505_avatartest.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271406468_Joined.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271406468_Joined.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271406468_Joined.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271406468_Joined.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271406468_Joined.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271406468_Joined.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271740070_Flags.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271740070_Flags.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271740070_Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271740070_Flags.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271740070_Flags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271740070_Flags.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271809277_flags2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271809277_flags2.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271809277_flags2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271809277_flags2.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271809277_flags2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271809277_flags2.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271812033_flags3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271812033_flags3.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271812033_flags3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271812033_flags3.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271812033_flags3.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271812033_flags3.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271814092_flags4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271814092_flags4.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271814092_flags4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271814092_flags4.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271814092_flags4.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271814092_flags4.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271828240_flags5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271828240_flags5.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271828240_flags5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271828240_flags5.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271828240_flags5.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271828240_flags5.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271837100_flags6.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271837100_flags6.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271837100_flags6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271837100_flags6.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201504271837100_flags6.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201504271837100_flags6.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201505081311157_FriendBlock.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201505081311157_FriendBlock.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201505081311157_FriendBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201505081311157_FriendBlock.cs -------------------------------------------------------------------------------- /KinderChatServer/Migrations/201505081311157_FriendBlock.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/201505081311157_FriendBlock.resx -------------------------------------------------------------------------------- /KinderChatServer/Migrations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Migrations/Configuration.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/Achievement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/Achievement.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/AchievementsRecieved.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/AchievementsRecieved.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/Block.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/Flag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/Flag.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/Friend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/Friend.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/JsonUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/JsonUser.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/Message.cs -------------------------------------------------------------------------------- /KinderChatServer/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Models/User.cs -------------------------------------------------------------------------------- /KinderChatServer/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Project_Readme.html -------------------------------------------------------------------------------- /KinderChatServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinderChatServer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /KinderChatServer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Properties/Settings.settings -------------------------------------------------------------------------------- /KinderChatServer/Providers/ApplicationOAuthProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Providers/ApplicationOAuthProvider.cs -------------------------------------------------------------------------------- /KinderChatServer/Results/ChallengeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Results/ChallengeResult.cs -------------------------------------------------------------------------------- /KinderChatServer/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/_references.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/bootstrap.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery-2.1.3.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery-2.1.3.intellisense.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery-2.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery-2.1.3.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery-2.1.3.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery-2.1.3.min.map -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/npm.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/respond.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/respond.matchmedia.addListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/respond.matchmedia.addListener.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/respond.matchmedia.addListener.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/respond.matchmedia.addListener.min.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/respond.min.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/ww.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/ww.jquery.js -------------------------------------------------------------------------------- /KinderChatServer/Scripts/ww.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Scripts/ww.jquery.min.js -------------------------------------------------------------------------------- /KinderChatServer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Startup.cs -------------------------------------------------------------------------------- /KinderChatServer/Tools/RequireHttpsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Tools/RequireHttpsAttribute.cs -------------------------------------------------------------------------------- /KinderChatServer/Tools/TokenFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Tools/TokenFilterAttribute.cs -------------------------------------------------------------------------------- /KinderChatServer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Views/Templates/LinkUser.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Templates/LinkUser.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Views/Templates/NewUser.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Templates/NewUser.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Views/Templates/UserInvite.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Templates/UserInvite.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/Web.config -------------------------------------------------------------------------------- /KinderChatServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /KinderChatServer/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Web.Debug.config -------------------------------------------------------------------------------- /KinderChatServer/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Web.Release.config -------------------------------------------------------------------------------- /KinderChatServer/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/Web.config -------------------------------------------------------------------------------- /KinderChatServer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/favicon.ico -------------------------------------------------------------------------------- /KinderChatServer/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /KinderChatServer/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /KinderChatServer/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /KinderChatServer/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /KinderChatServer/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /KinderChatServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatServer/packages.config -------------------------------------------------------------------------------- /KinderChatServer/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /KinderChatSocketServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatSocketServer.sln -------------------------------------------------------------------------------- /KinderChatTests/KinderChatTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatTests/KinderChatTests.csproj -------------------------------------------------------------------------------- /KinderChatTests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatTests/Tests.cs -------------------------------------------------------------------------------- /KinderChatTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatTests/packages.config -------------------------------------------------------------------------------- /KinderChatWorkerRole/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/.nuget/packages.config -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.ServiceBusShared/ServiceBusQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.ServiceBusShared/ServiceBusQueue.cs -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.ServiceBusShared/ServiceBusTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.ServiceBusShared/ServiceBusTopic.cs -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.ServiceBusShared/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.ServiceBusShared/app.config -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.ServiceBusShared/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.ServiceBusShared/packages.config -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.WorkerRole.SocketServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.WorkerRole.SocketServer/App.config -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.WorkerRole.SocketServer/Infrastructure/Transport/InternalBus/Redis/note.txt: -------------------------------------------------------------------------------- 1 | Probably, we can use Redis publish/subscribe instead of ServiceBus -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.WorkerRole.SocketServer/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.WorkerRole.SocketServer/diagram.png -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChat.WorkerRole.ccproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChat.WorkerRole.ccproj -------------------------------------------------------------------------------- /KinderChatWorkerRole/KinderChatWorkerRole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/KinderChatWorkerRole.sln -------------------------------------------------------------------------------- /KinderChatWorkerRole/ServiceConfiguration.Cloud.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/ServiceConfiguration.Cloud.cscfg -------------------------------------------------------------------------------- /KinderChatWorkerRole/ServiceConfiguration.Local.cscfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/ServiceConfiguration.Local.cscfg -------------------------------------------------------------------------------- /KinderChatWorkerRole/ServiceDefinition.csdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/KinderChatWorkerRole/ServiceDefinition.csdef -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/LICENSE -------------------------------------------------------------------------------- /Matriarch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch.sln -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Matriarch.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Matriarch.Droid.csproj -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/values-v21/styles.xml -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/values/colors.xml -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/Resources/values/styles.xml -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/app.config -------------------------------------------------------------------------------- /Matriarch/Matriarch.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.Droid/packages.config -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/App.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Matriarch.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Matriarch.WinPhone.csproj -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinPhone/packages.config -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/App.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/App.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Assets/Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Assets/Logo.scale-100.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Assets/SmallLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Assets/SmallLogo.scale-100.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/MainPage.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/MainPage.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Matriarch.WinStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Matriarch.WinStore.csproj -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Package.appxmanifest -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.WinStore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.WinStore/packages.config -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Info.plist -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Main.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Matriarch.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Matriarch.iOS.csproj -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/badge.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/badge@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/badge@3x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/stats.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/stats@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/stats@2x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/Resources/stats@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/Resources/stats@3x.png -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/app.config -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Matriarch/Matriarch.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch.iOS/packages.config -------------------------------------------------------------------------------- /Matriarch/Matriarch/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/App.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Helpers/Grouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Helpers/Grouping.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Helpers/Settings.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Matriarch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Matriarch.csproj -------------------------------------------------------------------------------- /Matriarch/Matriarch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/ViewModels/FlaggedUsersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/ViewModels/FlaggedUsersViewModel.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/ViewModels/StatisticsAvatarsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/ViewModels/StatisticsAvatarsViewModel.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/ViewModels/StatisticsNamesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/ViewModels/StatisticsNamesViewModel.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/ViewModels/StatisticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/ViewModels/StatisticsViewModel.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/FlaggedUsers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/FlaggedUsers.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/FlaggedUsers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/FlaggedUsers.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/FlaggedUsersDetails.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/FlaggedUsersDetails.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/FlaggedUsersDetails.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/FlaggedUsersDetails.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/MainPage.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/Statistics.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/Statistics.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/Statistics.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/Statistics.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/StatisticsAvatars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/StatisticsAvatars.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/StatisticsAvatars.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/StatisticsAvatars.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/StatisticsNames.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/StatisticsNames.xaml -------------------------------------------------------------------------------- /Matriarch/Matriarch/Views/StatisticsNames.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/Views/StatisticsNames.xaml.cs -------------------------------------------------------------------------------- /Matriarch/Matriarch/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Matriarch/Matriarch/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/README.md -------------------------------------------------------------------------------- /SharedClient/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/App.cs -------------------------------------------------------------------------------- /SharedClient/Common/BatchUpdateObservableCollectoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Common/BatchUpdateObservableCollectoin.cs -------------------------------------------------------------------------------- /SharedClient/Common/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Common/Context.cs -------------------------------------------------------------------------------- /SharedClient/Common/ListExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Common/ListExtension.cs -------------------------------------------------------------------------------- /SharedClient/Converters/TimestampConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Converters/TimestampConverter.cs -------------------------------------------------------------------------------- /SharedClient/Converters/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Converters/ValueConverter.cs -------------------------------------------------------------------------------- /SharedClient/DataLayer/KinderDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/DataLayer/KinderDatabase.cs -------------------------------------------------------------------------------- /SharedClient/Helpers/DisposableAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Helpers/DisposableAction.cs -------------------------------------------------------------------------------- /SharedClient/Helpers/IMessageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Helpers/IMessageDialog.cs -------------------------------------------------------------------------------- /SharedClient/Helpers/RegexUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Helpers/RegexUtilities.cs -------------------------------------------------------------------------------- /SharedClient/Helpers/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Helpers/RelayCommand.cs -------------------------------------------------------------------------------- /SharedClient/Helpers/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Helpers/ServiceContainer.cs -------------------------------------------------------------------------------- /SharedClient/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Helpers/Settings.cs -------------------------------------------------------------------------------- /SharedClient/Models/AvatarItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/AvatarItem.cs -------------------------------------------------------------------------------- /SharedClient/Models/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/DeviceInfo.cs -------------------------------------------------------------------------------- /SharedClient/Models/EntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/EntityBase.cs -------------------------------------------------------------------------------- /SharedClient/Models/Friend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/Friend.cs -------------------------------------------------------------------------------- /SharedClient/Models/KinderTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/KinderTask.cs -------------------------------------------------------------------------------- /SharedClient/Models/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/Message.cs -------------------------------------------------------------------------------- /SharedClient/Models/MessageStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/MessageStatus.cs -------------------------------------------------------------------------------- /SharedClient/Models/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/MessageType.cs -------------------------------------------------------------------------------- /SharedClient/Models/NotificationMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/NotificationMessage.cs -------------------------------------------------------------------------------- /SharedClient/Models/SignUp/SignUpValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Models/SignUp/SignUpValue.cs -------------------------------------------------------------------------------- /SharedClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharedClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/README.md -------------------------------------------------------------------------------- /SharedClient/Services/Cryptography/HybridRsaAes/Aes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Cryptography/HybridRsaAes/Aes.cs -------------------------------------------------------------------------------- /SharedClient/Services/Cryptography/HybridRsaAes/HowItWorks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Cryptography/HybridRsaAes/HowItWorks.png -------------------------------------------------------------------------------- /SharedClient/Services/Cryptography/ICryptoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Cryptography/ICryptoService.cs -------------------------------------------------------------------------------- /SharedClient/Services/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/DataManager.cs -------------------------------------------------------------------------------- /SharedClient/Services/IDeviceInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/IDeviceInfoProvider.cs -------------------------------------------------------------------------------- /SharedClient/Services/IUIThreadDispacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/IUIThreadDispacher.cs -------------------------------------------------------------------------------- /SharedClient/Services/Images/IPhotoGallery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Images/IPhotoGallery.cs -------------------------------------------------------------------------------- /SharedClient/Services/Images/OriginalAndThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Images/OriginalAndThumbnail.cs -------------------------------------------------------------------------------- /SharedClient/Services/Images/Photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Images/Photo.cs -------------------------------------------------------------------------------- /SharedClient/Services/Images/PhotoGalleryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Images/PhotoGalleryManager.cs -------------------------------------------------------------------------------- /SharedClient/Services/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Logger.cs -------------------------------------------------------------------------------- /SharedClient/Services/Messages/EventArgs/MessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Messages/EventArgs/MessageEventArgs.cs -------------------------------------------------------------------------------- /SharedClient/Services/Messages/EventArgs/MessageStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Messages/EventArgs/MessageStatusEventArgs.cs -------------------------------------------------------------------------------- /SharedClient/Services/Messages/GroupsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Messages/GroupsManager.cs -------------------------------------------------------------------------------- /SharedClient/Services/Messages/IMessageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Messages/IMessageRepository.cs -------------------------------------------------------------------------------- /SharedClient/Services/Messages/MessagesManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Messages/MessagesManager.cs -------------------------------------------------------------------------------- /SharedClient/Services/Typing/CurrentUserTypingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Typing/CurrentUserTypingController.cs -------------------------------------------------------------------------------- /SharedClient/Services/Typing/OpponentTypingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Typing/OpponentTypingController.cs -------------------------------------------------------------------------------- /SharedClient/Services/Typing/TypingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Services/Typing/TypingService.cs -------------------------------------------------------------------------------- /SharedClient/SharedClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/SharedClient.csproj -------------------------------------------------------------------------------- /SharedClient/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/Strings.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/BaseViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/ConversationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/ConversationViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/ConversationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/ConversationsViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/Events/NotificationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/Events/NotificationEvent.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/Events/NotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/Events/NotificationHandler.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/FriendsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/FriendsViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/Messages/ImageMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/Messages/ImageMessageViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/Messages/MessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/Messages/MessageViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/Messages/MessageViewModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/Messages/MessageViewModelFactory.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/Messages/TextMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/Messages/TextMessageViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/PointsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/PointsViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/ProfileViewModel.cs -------------------------------------------------------------------------------- /SharedClient/ViewModels/SignUpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/ViewModels/SignUpViewModel.cs -------------------------------------------------------------------------------- /SharedClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/SharedClient/packages.config -------------------------------------------------------------------------------- /Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/Shot.png -------------------------------------------------------------------------------- /iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /iOS/Chat/ChatViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Chat/ChatViewController.cs -------------------------------------------------------------------------------- /iOS/Common/CollectionUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Common/CollectionUpdater.cs -------------------------------------------------------------------------------- /iOS/Common/EventArgs/AddRemoveReplaceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Common/EventArgs/AddRemoveReplaceEventArgs.cs -------------------------------------------------------------------------------- /iOS/Common/EventArgs/MoveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Common/EventArgs/MoveEventArgs.cs -------------------------------------------------------------------------------- /iOS/Common/InteractiveDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Common/InteractiveDebugger.cs -------------------------------------------------------------------------------- /iOS/Conversation/Cells/BubbleCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Conversation/Cells/BubbleCell.cs -------------------------------------------------------------------------------- /iOS/Conversation/Cells/IncomingCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Conversation/Cells/IncomingCell.cs -------------------------------------------------------------------------------- /iOS/Conversation/Cells/OutgoingCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Conversation/Cells/OutgoingCell.cs -------------------------------------------------------------------------------- /iOS/Conversation/ChatInputView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Conversation/ChatInputView.cs -------------------------------------------------------------------------------- /iOS/Conversation/ChatSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Conversation/ChatSource.cs -------------------------------------------------------------------------------- /iOS/Conversation/ConversationViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Conversation/ConversationViewController.cs -------------------------------------------------------------------------------- /iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Entitlements.plist -------------------------------------------------------------------------------- /iOS/EventArgs/ISelectableSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/EventArgs/ISelectableSource.cs -------------------------------------------------------------------------------- /iOS/EventArgs/NSIndexPathEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/EventArgs/NSIndexPathEventArgs.cs -------------------------------------------------------------------------------- /iOS/EventArgs/PersonEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/EventArgs/PersonEventArgs.cs -------------------------------------------------------------------------------- /iOS/Friends/FriendsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Friends/FriendsSource.cs -------------------------------------------------------------------------------- /iOS/Friends/FriendsViewContoller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Friends/FriendsViewContoller.cs -------------------------------------------------------------------------------- /iOS/Friends/FriendsViewContoller.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Friends/FriendsViewContoller.designer.cs -------------------------------------------------------------------------------- /iOS/Friends/UICollectionViewFriendCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Friends/UICollectionViewFriendCell.cs -------------------------------------------------------------------------------- /iOS/GestureAttacher/LongPressGestureAttacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/GestureAttacher/LongPressGestureAttacher.cs -------------------------------------------------------------------------------- /iOS/GestureAttacher/TapGestureAttacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/GestureAttacher/TapGestureAttacher.cs -------------------------------------------------------------------------------- /iOS/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/GettingStarted.Xamarin -------------------------------------------------------------------------------- /iOS/Helpers/CollectionViewSpaceCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/CollectionViewSpaceCalculator.cs -------------------------------------------------------------------------------- /iOS/Helpers/ConstraintExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/ConstraintExtensions.cs -------------------------------------------------------------------------------- /iOS/Helpers/ConversationsStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/ConversationsStore.cs -------------------------------------------------------------------------------- /iOS/Helpers/ImageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/ImageUtils.cs -------------------------------------------------------------------------------- /iOS/Helpers/Layout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/Layout.cs -------------------------------------------------------------------------------- /iOS/Helpers/MessageDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/MessageDialog.cs -------------------------------------------------------------------------------- /iOS/Helpers/RefresherControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/RefresherControl.cs -------------------------------------------------------------------------------- /iOS/Helpers/SausageButtons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/SausageButtons.cs -------------------------------------------------------------------------------- /iOS/Helpers/ThemeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/ThemeUtils.cs -------------------------------------------------------------------------------- /iOS/Helpers/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Helpers/Utils.cs -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/Infrastructure/UiThreadDispacher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Infrastructure/UiThreadDispacher.cs -------------------------------------------------------------------------------- /iOS/KinderChat.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/KinderChat.iOS.csproj -------------------------------------------------------------------------------- /iOS/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS/Libs/SuperSocket.ClientEngine.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Libs/SuperSocket.ClientEngine.Common.dll -------------------------------------------------------------------------------- /iOS/Libs/SuperSocket.ClientEngine.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Libs/SuperSocket.ClientEngine.Core.dll -------------------------------------------------------------------------------- /iOS/Libs/SuperSocket.ClientEngine.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Libs/SuperSocket.ClientEngine.Protocol.dll -------------------------------------------------------------------------------- /iOS/Libs/WebSocket4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Libs/WebSocket4Net.dll -------------------------------------------------------------------------------- /iOS/Login/ConfirmationViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Login/ConfirmationViewController.cs -------------------------------------------------------------------------------- /iOS/Login/ConfirmationViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Login/ConfirmationViewController.designer.cs -------------------------------------------------------------------------------- /iOS/Login/FirstResponderResigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Login/FirstResponderResigner.cs -------------------------------------------------------------------------------- /iOS/Login/LoginViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Login/LoginViewController.cs -------------------------------------------------------------------------------- /iOS/Login/LoginViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Login/LoginViewController.designer.cs -------------------------------------------------------------------------------- /iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Main.cs -------------------------------------------------------------------------------- /iOS/Main/RootViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Main/RootViewController.cs -------------------------------------------------------------------------------- /iOS/Main/RootViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Main/RootViewController.designer.cs -------------------------------------------------------------------------------- /iOS/Main/TabOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Main/TabOrder.cs -------------------------------------------------------------------------------- /iOS/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MainStoryboard.storyboard -------------------------------------------------------------------------------- /iOS/MessageList/AddressBook/AddressBookManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/AddressBook/AddressBookManager.cs -------------------------------------------------------------------------------- /iOS/MessageList/AddressBook/PersonFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/AddressBook/PersonFormatter.cs -------------------------------------------------------------------------------- /iOS/MessageList/ConversationCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/ConversationCell.cs -------------------------------------------------------------------------------- /iOS/MessageList/ConversationCell.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/ConversationCell.designer.cs -------------------------------------------------------------------------------- /iOS/MessageList/ConversationsDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/ConversationsDataSource.cs -------------------------------------------------------------------------------- /iOS/MessageList/MessageListViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/MessageListViewController.cs -------------------------------------------------------------------------------- /iOS/MessageList/MessageListViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/MessageList/MessageListViewController.designer.cs -------------------------------------------------------------------------------- /iOS/NavigationControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/NavigationControllerBase.cs -------------------------------------------------------------------------------- /iOS/NavigationControllerBase.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/NavigationControllerBase.designer.cs -------------------------------------------------------------------------------- /iOS/Points/PointsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Points/PointsViewController.cs -------------------------------------------------------------------------------- /iOS/Points/PointsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Points/PointsViewController.designer.cs -------------------------------------------------------------------------------- /iOS/Points/TaskCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Points/TaskCell.cs -------------------------------------------------------------------------------- /iOS/Points/TaskCollectionViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Points/TaskCollectionViewSource.cs -------------------------------------------------------------------------------- /iOS/Profile/AvatarCollectionViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Profile/AvatarCollectionViewCell.cs -------------------------------------------------------------------------------- /iOS/Profile/AvatarsCollectionViewSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Profile/AvatarsCollectionViewSource.cs -------------------------------------------------------------------------------- /iOS/Profile/ProfileViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Profile/ProfileViewController.cs -------------------------------------------------------------------------------- /iOS/Profile/ProfileViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Profile/ProfileViewController.designer.cs -------------------------------------------------------------------------------- /iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /iOS/Properties/_SettingsStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Properties/_SettingsStarted.txt -------------------------------------------------------------------------------- /iOS/Resources/ComicNeue-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/ComicNeue-Regular.otf -------------------------------------------------------------------------------- /iOS/Resources/ComicNeue_Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/ComicNeue_Bold.otf -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/100x100.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/114x114.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/120x120.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/144x144.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/152x152.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/180x180.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/29x29.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/40x40.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/50x50.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/57x57.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/58x58.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/72x72.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/76x76.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/80x80.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/87x87.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/Disclosure.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/Disclosure.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/Disclosure.imageset/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/Disclosure.imageset/disclosure.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/Disclosure.imageset/disclosure@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/Disclosure.imageset/disclosure@2.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/Disclosure.imageset/disclosure@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/Disclosure.imageset/disclosure@3.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/1242x2208.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/2208x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/2208x1242.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/320x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/320x480.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x1136.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/640x960.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/750x1334.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/MessageBubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/MessageBubble.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/SignUpBubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/SignUpBubble.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/bearIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/bearIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/bearIcon.imageset/bearIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/bearIcon.imageset/bearIcon.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/bearIcon.imageset/bearIcon@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/bearIcon.imageset/bearIcon@2.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/bearIcon.imageset/bearIcon@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/bearIcon.imageset/bearIcon@3.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/bubble_regular.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/bubble_regular.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/bubble_stroked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/bubble_stroked.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/editNickName.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/editNickName.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/newMessageIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/newMessageIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/splashLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/splashLogo.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/splashLogo.imageset/splashLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/splashLogo.imageset/splashLogo.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/splashLogo.imageset/splashLogo@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/splashLogo.imageset/splashLogo@2.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/splashLogo.imageset/splashLogo@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/splashLogo.imageset/splashLogo@3.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconBear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconBear.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconBear.imageset/bearTabIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconBear.imageset/bearTabIcon.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconPoints.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconPoints.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconPoints.imageset/points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconPoints.imageset/points.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconPoints.imageset/points@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconPoints.imageset/points@2x.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconPoints.imageset/points@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconPoints.imageset/points@3x.png -------------------------------------------------------------------------------- /iOS/Resources/Images.xcassets/tabIconProfile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/Images.xcassets/tabIconProfile.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Resources/VarelaRound-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Resources/VarelaRound-Regular.ttf -------------------------------------------------------------------------------- /iOS/Theme/Color/1BlueColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Color/1BlueColorTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Color/2BlackColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Color/2BlackColorTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Color/3PinkColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Color/3PinkColorTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Color/AppColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Color/AppColors.cs -------------------------------------------------------------------------------- /iOS/Theme/Color/IColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Color/IColorTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Font/1BlueFontTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Font/1BlueFontTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Font/2BlackFontTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Font/2BlackFontTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Font/3PinkFontTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Font/3PinkFontTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Font/AppFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Font/AppFonts.cs -------------------------------------------------------------------------------- /iOS/Theme/Font/IFontTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Font/IFontTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/IThemeable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/IThemeable.cs -------------------------------------------------------------------------------- /iOS/Theme/Images/1BlueImagesTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Images/1BlueImagesTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Images/2BlackImagesTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Images/2BlackImagesTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Images/3PinkImagesTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Images/3PinkImagesTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Images/IImagesTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Images/IImagesTheme.cs -------------------------------------------------------------------------------- /iOS/Theme/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/Theme/Theme.cs -------------------------------------------------------------------------------- /iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/KinderChat/HEAD/iOS/packages.config --------------------------------------------------------------------------------