├── .github └── FUNDING.yml ├── Android ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── thesis │ │ │ └── smukov │ │ │ └── anative │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── thesis │ │ │ │ └── smukov │ │ │ │ └── anative │ │ │ │ ├── Adapters │ │ │ │ ├── ChatAdapter.java │ │ │ │ ├── ContactsAdapter.java │ │ │ │ └── PendingInvitesAdapter.java │ │ │ │ ├── ChatActivity.java │ │ │ │ ├── DiscoverUsers │ │ │ │ ├── DiscoverUserFragment.java │ │ │ │ ├── DiscoverUsersPagerAdapter.java │ │ │ │ └── NoMoreUsersFragment.java │ │ │ │ ├── DiscoverUsersSliderActivity.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── Models │ │ │ │ ├── AccessToken.java │ │ │ │ ├── ChatMessage.java │ │ │ │ ├── Contact.java │ │ │ │ ├── IFirebaseObject.java │ │ │ │ └── UserInfo.java │ │ │ │ ├── NavigationActivity.java │ │ │ │ ├── NavigationFragment │ │ │ │ ├── BaseNavigationFragment.java │ │ │ │ ├── BaseNavigationListFragment.java │ │ │ │ ├── ContactFragment.java │ │ │ │ ├── ContactsFragment.java │ │ │ │ ├── INavigationFragment.java │ │ │ │ ├── PendingInvitesFragment.java │ │ │ │ ├── ProfileFragment.java │ │ │ │ └── SettingsFragment.java │ │ │ │ ├── Store │ │ │ │ ├── AccessTokenStore.java │ │ │ │ ├── ChatStore.java │ │ │ │ ├── ConnectionsStore.java │ │ │ │ ├── Constants.java │ │ │ │ └── UserInfoStore.java │ │ │ │ └── Utils │ │ │ │ └── DownloadImageTask.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── appicon.png │ │ │ └── background.9.png │ │ │ ├── drawable-mdpi │ │ │ ├── appicon.png │ │ │ └── background.9.png │ │ │ ├── drawable-xhdpi │ │ │ ├── appicon.png │ │ │ └── background.9.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── appicon.png │ │ │ └── background.9.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── appicon.png │ │ │ └── background.9.png │ │ │ ├── drawable │ │ │ ├── hugh.png │ │ │ ├── ic_close_black_24dp.xml │ │ │ ├── ic_create_black_24dp.xml │ │ │ ├── ic_done_black_24dp.xml │ │ │ ├── ic_forum_black_24dp.xml │ │ │ ├── ic_group_add_black_24dp.xml │ │ │ ├── ic_menu_camera.xml │ │ │ ├── ic_menu_gallery.xml │ │ │ ├── ic_menu_manage.xml │ │ │ ├── ic_menu_send.xml │ │ │ ├── ic_menu_share.xml │ │ │ ├── ic_menu_slideshow.xml │ │ │ ├── ic_people_black_24dp.xml │ │ │ ├── ic_person_add_black_24dp.xml │ │ │ ├── ic_person_black_24dp.xml │ │ │ ├── ic_settings_black_24dp.xml │ │ │ ├── in_message_bg.9.png │ │ │ ├── out_message_bg.9.png │ │ │ └── side_nav_bar.xml │ │ │ ├── layout │ │ │ ├── activity_chat.xml │ │ │ ├── activity_discover_users_slider.xml │ │ │ ├── activity_login.xml │ │ │ ├── activity_navigation.xml │ │ │ ├── app_bar_navigation.xml │ │ │ ├── contact_layout.xml │ │ │ ├── contacts_layout.xml │ │ │ ├── content_navigation.xml │ │ │ ├── discover_contact_layout.xml │ │ │ ├── list_item_chat_message.xml │ │ │ ├── list_item_contact.xml │ │ │ ├── nav_header_navigation.xml │ │ │ ├── no_more_users_discover_layout.xml │ │ │ ├── pending_invites_layout.xml │ │ │ ├── profile_header.xml │ │ │ ├── profile_layout.xml │ │ │ ├── row_swipe_left_layout.xml │ │ │ ├── row_swipe_right_layout.xml │ │ │ └── settings_layout.xml │ │ │ ├── menu │ │ │ ├── activity_navigation_drawer.xml │ │ │ └── navigation.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── values.xml │ │ │ └── xml │ │ │ └── preferences.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── thesis │ │ └── smukov │ │ └── anative │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Ionic ├── .gitignore ├── app │ ├── app.html │ ├── app.js │ ├── img │ │ └── hugh.png │ ├── models │ │ └── contactModel.js │ ├── pages │ │ ├── chatPage │ │ │ ├── chatPage.html │ │ │ ├── chatPage.js │ │ │ └── chatPage.scss │ │ ├── components │ │ │ ├── chatBubble │ │ │ │ ├── chatBubble.js │ │ │ │ └── chatBubble.scss │ │ │ ├── elasticTextarea.js │ │ │ └── profileHeader.js │ │ ├── contactPage │ │ │ ├── contactPage.html │ │ │ ├── contactPage.js │ │ │ └── contactPage.scss │ │ ├── contactsPage │ │ │ ├── contactsPage.html │ │ │ ├── contactsPage.js │ │ │ └── contactsPage.scss │ │ ├── discoverUsersPage │ │ │ ├── discoverUsersPage.html │ │ │ ├── discoverUsersPage.js │ │ │ └── discoverUsersPage.scss │ │ ├── loginPage │ │ │ ├── loginPage.html │ │ │ ├── loginPage.js │ │ │ └── loginPage.scss │ │ ├── page1 │ │ │ ├── page1.html │ │ │ ├── page1.js │ │ │ └── page1.scss │ │ ├── page3 │ │ │ ├── page3.html │ │ │ ├── page3.js │ │ │ └── page3.scss │ │ ├── pendingInvitesPage │ │ │ ├── pendingInvitesPage.html │ │ │ ├── pendingInvitesPage.js │ │ │ └── pendingInvitesPage.scss │ │ ├── profilePage │ │ │ ├── profilePage.html │ │ │ ├── profilePage.js │ │ │ └── profilePage.scss │ │ └── settingsPage │ │ │ ├── settingsPage.html │ │ │ ├── settingsPage.js │ │ │ └── settingsPage.scss │ ├── services │ │ ├── auth.service.js │ │ ├── contacts.service.js │ │ ├── preferences.service.js │ │ ├── storage.service.js │ │ └── userInfo.service.js │ └── theme │ │ ├── app.core.scss │ │ ├── app.ios.scss │ │ ├── app.md.scss │ │ ├── app.variables.scss │ │ └── app.wp.scss ├── config.xml ├── gulpfile.js ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js ├── ionic.config.json ├── ionic.project ├── package.json ├── plugins │ ├── android.json │ ├── cordova-plugin-console │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── ios │ │ │ │ ├── CDVLogger.h │ │ │ │ └── CDVLogger.m │ │ │ ├── ubuntu │ │ │ │ ├── console.cpp │ │ │ │ └── console.h │ │ │ └── wp │ │ │ │ └── DebugConsole.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ ├── console-via-logger.js │ │ │ └── logger.js │ ├── cordova-plugin-device │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── Device.java │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── browser │ │ │ │ └── DeviceProxy.js │ │ │ ├── firefoxos │ │ │ │ └── DeviceProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVDevice.h │ │ │ │ └── CDVDevice.m │ │ │ ├── osx │ │ │ │ ├── CDVDevice.h │ │ │ │ └── CDVDevice.m │ │ │ ├── tizen │ │ │ │ └── DeviceProxy.js │ │ │ ├── ubuntu │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ └── device.js │ │ │ ├── windows │ │ │ │ └── DeviceProxy.js │ │ │ └── wp │ │ │ │ └── Device.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ └── device.js │ ├── cordova-plugin-inappbrowser │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── amazon │ │ │ │ ├── InAppBrowser.java │ │ │ │ └── InAppChromeClient.java │ │ │ ├── android │ │ │ │ ├── InAppBrowser.java │ │ │ │ ├── InAppBrowserDialog.java │ │ │ │ ├── InAppChromeClient.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ │ │ └── drawable-xxhdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ ├── blackberry10 │ │ │ │ ├── README.md │ │ │ │ └── doc │ │ │ │ │ ├── de │ │ │ │ │ └── README.md │ │ │ │ │ ├── es │ │ │ │ │ └── README.md │ │ │ │ │ ├── fr │ │ │ │ │ └── README.md │ │ │ │ │ ├── it │ │ │ │ │ └── README.md │ │ │ │ │ ├── ja │ │ │ │ │ └── README.md │ │ │ │ │ ├── ko │ │ │ │ │ └── README.md │ │ │ │ │ ├── pl │ │ │ │ │ └── README.md │ │ │ │ │ └── zh │ │ │ │ │ └── README.md │ │ │ ├── browser │ │ │ │ └── InAppBrowserProxy.js │ │ │ ├── firefoxos │ │ │ │ └── InAppBrowserProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVInAppBrowser.h │ │ │ │ └── CDVInAppBrowser.m │ │ │ ├── ubuntu │ │ │ │ ├── InAppBrowser.qml │ │ │ │ ├── InAppBrowser_escapeScript.js │ │ │ │ ├── close.png │ │ │ │ ├── inappbrowser.cpp │ │ │ │ └── inappbrowser.h │ │ │ ├── windows │ │ │ │ └── InAppBrowserProxy.js │ │ │ └── wp │ │ │ │ └── InAppBrowser.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ ├── resources │ │ │ │ ├── inject.css │ │ │ │ ├── inject.html │ │ │ │ ├── inject.js │ │ │ │ ├── local.html │ │ │ │ ├── local.pdf │ │ │ │ └── video.html │ │ │ └── tests.js │ │ └── www │ │ │ ├── inappbrowser.css │ │ │ ├── inappbrowser.js │ │ │ └── windows8 │ │ │ └── InAppBrowserProxy.js │ ├── cordova-plugin-splashscreen │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── SplashScreen.java │ │ │ ├── blackberry10 │ │ │ │ └── index.js │ │ │ ├── browser │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVSplashScreen.h │ │ │ │ ├── CDVSplashScreen.m │ │ │ │ ├── CDVViewController+SplashScreen.h │ │ │ │ └── CDVViewController+SplashScreen.m │ │ │ ├── tizen │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ubuntu │ │ │ │ ├── splashscreen.cpp │ │ │ │ └── splashscreen.h │ │ │ └── wp │ │ │ │ ├── ResolutionHelper.cs │ │ │ │ └── SplashScreen.cs │ │ ├── tests │ │ │ ├── ios │ │ │ │ ├── CDVSplashScreenTest.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── CDVSplashScreenTest.xccheckout │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ │ ├── CDVSplashScreenTest │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CDVSplashScreenLibTests │ │ │ │ │ │ ├── ImageNameTest.m │ │ │ │ │ │ ├── ImageNameTestDelegates.h │ │ │ │ │ │ ├── ImageNameTestDelegates.m │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── CDVSplashScreenTest.xcodeproj │ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── CDVSplashScreenTest.xccheckout │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── CDVSplashScreenLib.xcscheme │ │ │ │ │ │ └── CDVSplashScreenLibTests.xcscheme │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ │ ├── de │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── es │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── fr │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── it │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ja │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ko │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── pl │ │ │ │ │ │ └── README.md │ │ │ │ │ └── zh │ │ │ │ │ │ └── README.md │ │ │ │ └── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ ├── splashscreen.js │ │ │ └── windows │ │ │ └── SplashScreenProxy.js │ ├── cordova-plugin-statusbar │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ ├── android │ │ │ │ └── StatusBar.java │ │ │ ├── browser │ │ │ │ └── statusbar.js │ │ │ ├── ios │ │ │ │ ├── CDVStatusBar.h │ │ │ │ └── CDVStatusBar.m │ │ │ ├── windows │ │ │ │ └── StatusBarProxy.js │ │ │ └── wp │ │ │ │ └── StatusBar.cs │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ └── statusbar.js │ ├── cordova-plugin-whitelist │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ └── README.md │ │ │ ├── es │ │ │ │ └── README.md │ │ │ ├── fr │ │ │ │ └── README.md │ │ │ ├── it │ │ │ │ └── README.md │ │ │ ├── ja │ │ │ │ └── README.md │ │ │ ├── ko │ │ │ │ └── README.md │ │ │ ├── pl │ │ │ │ └── README.md │ │ │ └── zh │ │ │ │ └── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ └── android │ │ │ │ └── WhitelistPlugin.java │ │ └── whitelist.js │ ├── cordova-sqlite-storage │ │ ├── AUTHORS.md │ │ ├── CHANGES.md │ │ ├── HISTORY.md │ │ ├── LICENSE.md │ │ ├── Lawnchair-adapter │ │ │ ├── Lawnchair-sqlitePlugin.js │ │ │ └── test-www │ │ │ │ ├── Lawnchair-sqlitePlugin.js │ │ │ │ ├── index.html │ │ │ │ ├── lawnchair-spec.js │ │ │ │ └── lib │ │ │ │ ├── json2.js │ │ │ │ ├── lawnchair.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ ├── README.md │ │ ├── SQLitePlugin.coffee.md │ │ ├── bin │ │ │ ├── test.ps1 │ │ │ └── test.sh │ │ ├── circle.yml │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── scripts │ │ │ └── beforePluginInstall.js │ │ ├── spec │ │ │ ├── .cordova │ │ │ │ └── config.json │ │ │ ├── config.xml │ │ │ ├── plugins │ │ │ │ └── .npmignore │ │ │ └── www │ │ │ │ ├── index.html │ │ │ │ ├── lib │ │ │ │ └── jasmine-2.4.1 │ │ │ │ │ ├── boot.js │ │ │ │ │ ├── console.js │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ ├── jasmine.js │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ └── spec │ │ │ │ ├── basic-misc-test.js │ │ │ │ ├── browser-check-startup.js │ │ │ │ ├── db-open-close-delete-test.js │ │ │ │ ├── db-simultaneous-tx-access-test.js │ │ │ │ ├── db-tx-sql-results.js │ │ │ │ ├── db-tx-string-test.js │ │ │ │ ├── db-tx-value-bindings-test.js │ │ │ │ ├── ext-tx-blob-test.js │ │ │ │ ├── misc-tx-legacy.js │ │ │ │ ├── regexp-test.js │ │ │ │ ├── self-test.js │ │ │ │ ├── sql-batch-test.js │ │ │ │ └── tx-semantics-test.js │ │ ├── src │ │ │ ├── android │ │ │ │ └── io │ │ │ │ │ └── sqlc │ │ │ │ │ ├── SQLiteAndroidDatabase.java │ │ │ │ │ ├── SQLiteConnectorDatabase.java │ │ │ │ │ └── SQLitePlugin.java │ │ │ ├── ios │ │ │ │ ├── SQLitePlugin.h │ │ │ │ └── SQLitePlugin.m │ │ │ └── windows │ │ │ │ ├── SQLite3-Win-RT │ │ │ │ ├── SQLite3 │ │ │ │ │ ├── Constants.cpp │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── Database.cpp │ │ │ │ │ ├── Database.h │ │ │ │ │ ├── SQLite3.Shared.vcxitems │ │ │ │ │ ├── SQLite3.UWP │ │ │ │ │ │ └── SQLite3.UWP.vcxproj │ │ │ │ │ ├── SQLite3.Windows │ │ │ │ │ │ └── SQLite3.Windows.vcxproj │ │ │ │ │ ├── SQLite3.WindowsPhone │ │ │ │ │ │ └── SQLite3.WindowsPhone.vcxproj │ │ │ │ │ ├── SQLite3.sln │ │ │ │ │ ├── Statement.cpp │ │ │ │ │ ├── Statement.h │ │ │ │ │ ├── pch.cpp │ │ │ │ │ └── pch.h │ │ │ │ └── SQLite3JS │ │ │ │ │ └── js │ │ │ │ │ └── SQLite3.js │ │ │ │ └── sqlite-proxy.js │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www │ │ │ └── SQLitePlugin.js │ ├── fetch.json │ └── ionic-plugin-keyboard │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ ├── android │ │ │ └── IonicKeyboard.java │ │ ├── blackberry10 │ │ │ ├── index.js │ │ │ └── native │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── device │ │ │ │ ├── libKeyboard.so │ │ │ │ ├── public │ │ │ │ │ ├── json_reader.o │ │ │ │ │ ├── json_value.o │ │ │ │ │ ├── json_writer.o │ │ │ │ │ ├── plugin.o │ │ │ │ │ └── tokenizer.o │ │ │ │ └── src │ │ │ │ │ ├── CallKeyboard.o │ │ │ │ │ ├── Logger.o │ │ │ │ │ ├── keyboard_js.o │ │ │ │ │ └── keyboard_ndk.o │ │ │ │ ├── public │ │ │ │ ├── json │ │ │ │ │ ├── autolink.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── forwards.h │ │ │ │ │ ├── json.h │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── value.h │ │ │ │ │ └── writer.h │ │ │ │ ├── json_batchallocator.h │ │ │ │ ├── json_internalarray.inl │ │ │ │ ├── json_internalmap.inl │ │ │ │ ├── json_reader.cpp │ │ │ │ ├── json_value.cpp │ │ │ │ ├── json_valueiterator.inl │ │ │ │ ├── json_writer.cpp │ │ │ │ ├── plugin.cpp │ │ │ │ ├── plugin.h │ │ │ │ ├── tokenizer.cpp │ │ │ │ └── tokenizer.h │ │ │ │ ├── simulator │ │ │ │ ├── libKeyboard.so │ │ │ │ ├── public │ │ │ │ │ ├── json_reader.o │ │ │ │ │ ├── json_value.o │ │ │ │ │ ├── json_writer.o │ │ │ │ │ ├── plugin.o │ │ │ │ │ └── tokenizer.o │ │ │ │ └── src │ │ │ │ │ ├── CallKeyboard.o │ │ │ │ │ ├── Logger.o │ │ │ │ │ ├── keyboard_js.o │ │ │ │ │ └── keyboard_ndk.o │ │ │ │ └── src │ │ │ │ ├── Logger.cpp │ │ │ │ ├── Logger.hpp │ │ │ │ ├── keyboard_js.cpp │ │ │ │ ├── keyboard_js.hpp │ │ │ │ ├── keyboard_ndk.cpp │ │ │ │ └── keyboard_ndk.hpp │ │ ├── ios │ │ │ ├── IonicKeyboard.h │ │ │ ├── IonicKeyboard.m │ │ │ ├── UIWebViewExtension.h │ │ │ └── UIWebViewExtension.m │ │ └── windows │ │ │ └── KeyboardProxy.js │ │ └── www │ │ ├── android │ │ └── keyboard.js │ │ └── ios │ │ └── keyboard.js ├── resources │ ├── android │ │ ├── icon │ │ │ ├── drawable-hdpi-icon.png │ │ │ ├── drawable-ldpi-icon.png │ │ │ ├── drawable-mdpi-icon.png │ │ │ ├── drawable-xhdpi-icon.png │ │ │ ├── drawable-xxhdpi-icon.png │ │ │ └── drawable-xxxhdpi-icon.png │ │ └── splash │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ ├── hugh.png │ ├── icon.png │ ├── ios │ │ ├── icon │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default-568h@2x~iphone.png │ │ │ ├── Default-667h.png │ │ │ ├── Default-736h.png │ │ │ ├── Default-Landscape-736h.png │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default@2x~iphone.png │ │ │ └── Default~iphone.png │ └── splash.png └── www │ └── index.html ├── Ionic2 ├── .editorconfig ├── .gitignore ├── _bckp │ ├── android.json │ └── android0.json ├── config.xml ├── ionic.config.json ├── package.json ├── resources │ ├── android │ │ ├── icon │ │ │ ├── drawable-hdpi-icon.png │ │ │ ├── drawable-ldpi-icon.png │ │ │ ├── drawable-mdpi-icon.png │ │ │ ├── drawable-xhdpi-icon.png │ │ │ ├── drawable-xxhdpi-icon.png │ │ │ └── drawable-xxxhdpi-icon.png │ │ └── splash │ │ │ ├── drawable-land-hdpi-screen.png │ │ │ ├── drawable-land-ldpi-screen.png │ │ │ ├── drawable-land-mdpi-screen.png │ │ │ ├── drawable-land-xhdpi-screen.png │ │ │ ├── drawable-land-xxhdpi-screen.png │ │ │ ├── drawable-land-xxxhdpi-screen.png │ │ │ ├── drawable-port-hdpi-screen.png │ │ │ ├── drawable-port-ldpi-screen.png │ │ │ ├── drawable-port-mdpi-screen.png │ │ │ ├── drawable-port-xhdpi-screen.png │ │ │ ├── drawable-port-xxhdpi-screen.png │ │ │ └── drawable-port-xxxhdpi-screen.png │ ├── icon.png │ ├── ios │ │ ├── icon │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ ├── icon-small.png │ │ │ ├── icon-small@2x.png │ │ │ ├── icon-small@3x.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default-568h@2x~iphone.png │ │ │ ├── Default-667h.png │ │ │ ├── Default-736h.png │ │ │ ├── Default-Landscape-736h.png │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default@2x~iphone.png │ │ │ └── Default~iphone.png │ └── splash.png ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.html │ │ ├── app.module.ts │ │ ├── main.dev.ts │ │ └── main.prod.ts │ ├── assets │ │ ├── icon │ │ │ └── favicon.ico │ │ ├── img │ │ │ └── hugh.png │ │ └── manifest.json │ ├── components │ │ ├── chatBubble │ │ │ ├── chatBubble.scss │ │ │ └── chatBubble.ts │ │ ├── elasticTextarea.ts │ │ └── profileHeader.ts │ ├── index.html │ ├── manifest.json │ ├── models │ │ ├── IFirebaseObject.ts │ │ ├── chatMessageModel.ts │ │ └── contactModel.ts │ ├── pages │ │ ├── chatPage │ │ │ ├── chatPage.html │ │ │ ├── chatPage.scss │ │ │ └── chatPage.ts │ │ ├── contactPage │ │ │ ├── contactPage.html │ │ │ ├── contactPage.scss │ │ │ └── contactPage.ts │ │ ├── contactsPage │ │ │ ├── contactsPage.html │ │ │ ├── contactsPage.scss │ │ │ └── contactsPage.ts │ │ ├── discoverUsersPage │ │ │ ├── discoverUsersPage.html │ │ │ ├── discoverUsersPage.scss │ │ │ └── discoverUsersPage.ts │ │ ├── loginPage │ │ │ ├── loginPage.html │ │ │ ├── loginPage.scss │ │ │ └── loginPage.ts │ │ ├── pendingInvitesPage │ │ │ ├── pendingInvitesPage.html │ │ │ ├── pendingInvitesPage.scss │ │ │ └── pendingInvitesPage.ts │ │ ├── profilePage │ │ │ ├── profilePage.html │ │ │ ├── profilePage.scss │ │ │ └── profilePage.ts │ │ └── settingsPage │ │ │ ├── settingsPage.html │ │ │ ├── settingsPage.scss │ │ │ └── settingsPage.ts │ ├── service-worker.js │ ├── services │ │ ├── auth.service.ts │ │ ├── firebase.service.ts │ │ ├── math.service.ts │ │ ├── preferences.service.ts │ │ ├── storage.service.ts │ │ └── userInfo.service.ts │ └── theme │ │ ├── global.scss │ │ └── variables.scss ├── tsconfig.json └── tslint.json ├── LICENSE ├── Other ├── Imgs │ ├── Atom.png │ ├── Atom_2.png │ ├── Initial_Project_State.png │ ├── Market_Share.png │ ├── Project_Schaffolding.png │ ├── Resources.txt │ ├── android-adding-library-1.png │ ├── android-adding-library-2.png │ ├── android-adding-library-3.png │ ├── android-chat-activity-1.png │ ├── android-chat-activity-2.png │ ├── android-content-navigation.png │ ├── android-discover-users.png │ ├── android-login-2.png │ ├── android-menu-header-style.png │ ├── android-menu.png │ ├── android-new-activity.png │ ├── android-new-icons.png │ ├── android-new-login-activity.png │ ├── android-profile-contact-page-layout.png │ ├── android-profile-header.png │ ├── android-profile-page-layout.png │ ├── android-settings-2.png │ ├── android-settings-3.png │ ├── android-settings.png │ ├── android-studio-project-view-2.png │ ├── android-studio-project-view.png │ ├── android-theme-editor.png │ ├── android-theme-new.png │ ├── android-theme.png │ ├── both-login.png │ ├── build-simplified.png │ ├── droid-contacts-list.png │ ├── droid-pending-invites.png │ ├── hello-world-droid-avd.png │ ├── in_message_bg.9.png │ ├── ionic-chat-bubble.png │ ├── ionic-contacts-list.png │ ├── ionic-emulator.png │ ├── ionic-hello-world-2.png │ ├── ionic-hello-world.png │ ├── ionic-login.png │ ├── ionic-menu-icons.png │ ├── ionic-menu.png │ ├── ionic-pending-invites.png │ ├── ionic-profile-contact-page-layout.png │ ├── ionic-profile-header.png │ ├── ionic-settings-2.png │ ├── ionic-settings.png │ ├── ionic-theme-new.png │ ├── ionic-theme.png │ ├── ninepatch_raw.png │ ├── out_message_bg.9.png │ └── target-sdk-version-n-error.png └── Mockups │ └── v1 │ ├── Chat1.png │ ├── Chat2.png │ ├── Contact.png │ ├── Contacts.png │ ├── Discover.png │ ├── Groups.png │ ├── Login Page.png │ ├── Menu.png │ ├── Pending.png │ ├── Profile.png │ └── Settings.png └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.gitignore -------------------------------------------------------------------------------- /Android/.idea/.name: -------------------------------------------------------------------------------- 1 | Native -------------------------------------------------------------------------------- /Android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/compiler.xml -------------------------------------------------------------------------------- /Android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Android/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /Android/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/misc.xml -------------------------------------------------------------------------------- /Android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/modules.xml -------------------------------------------------------------------------------- /Android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/build.gradle -------------------------------------------------------------------------------- /Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/app/src/androidTest/java/com/thesis/smukov/anative/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/androidTest/java/com/thesis/smukov/anative/ApplicationTest.java -------------------------------------------------------------------------------- /Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Adapters/ChatAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Adapters/ChatAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Adapters/ContactsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Adapters/ContactsAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Adapters/PendingInvitesAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Adapters/PendingInvitesAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/ChatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/ChatActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsers/DiscoverUserFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsers/DiscoverUserFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsers/DiscoverUsersPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsers/DiscoverUsersPagerAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsers/NoMoreUsersFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsers/NoMoreUsersFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsersSliderActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/DiscoverUsersSliderActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/LoginActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Models/AccessToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Models/AccessToken.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Models/ChatMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Models/ChatMessage.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Models/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Models/Contact.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Models/IFirebaseObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Models/IFirebaseObject.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Models/UserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Models/UserInfo.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/BaseNavigationFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/BaseNavigationFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/ContactFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/ContactFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/ContactsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/ContactsFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/INavigationFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/INavigationFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/PendingInvitesFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/PendingInvitesFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/ProfileFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/ProfileFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/SettingsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/NavigationFragment/SettingsFragment.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Store/AccessTokenStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Store/AccessTokenStore.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Store/ChatStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Store/ChatStore.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Store/ConnectionsStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Store/ConnectionsStore.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Store/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Store/Constants.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Store/UserInfoStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Store/UserInfoStore.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/thesis/smukov/anative/Utils/DownloadImageTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/java/com/thesis/smukov/anative/Utils/DownloadImageTask.java -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-hdpi/appicon.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-hdpi/background.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-mdpi/appicon.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-mdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-mdpi/background.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-xhdpi/appicon.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-xhdpi/background.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-xxhdpi/appicon.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-xxhdpi/background.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-xxxhdpi/appicon.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable-xxxhdpi/background.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/hugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/hugh.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_close_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_close_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_create_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_create_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_done_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_done_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_forum_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_forum_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_group_add_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_group_add_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_menu_camera.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_menu_gallery.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_menu_manage.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_menu_send.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_menu_share.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_people_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_people_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_person_add_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_person_add_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_person_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_person_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_settings_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/ic_settings_black_24dp.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/in_message_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/in_message_bg.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/out_message_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/out_message_bg.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/activity_chat.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_discover_users_slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/activity_discover_users_slider.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/activity_navigation.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/app_bar_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/app_bar_navigation.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/contact_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/contact_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/contacts_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/contacts_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/content_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/content_navigation.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/discover_contact_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/discover_contact_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/list_item_chat_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/list_item_chat_message.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/list_item_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/list_item_contact.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/nav_header_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/nav_header_navigation.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/no_more_users_discover_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/no_more_users_discover_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/pending_invites_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/pending_invites_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/profile_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/profile_header.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/profile_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/profile_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/row_swipe_left_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/row_swipe_left_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/row_swipe_right_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/row_swipe_right_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/settings_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/layout/settings_layout.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/menu/activity_navigation_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/menu/activity_navigation_drawer.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/menu/navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/menu/navigation.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/values/values.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /Android/app/src/test/java/com/thesis/smukov/anative/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/app/src/test/java/com/thesis/smukov/anative/ExampleUnitTest.java -------------------------------------------------------------------------------- /Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/build.gradle -------------------------------------------------------------------------------- /Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/gradle.properties -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/gradlew -------------------------------------------------------------------------------- /Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Android/gradlew.bat -------------------------------------------------------------------------------- /Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ionic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/.gitignore -------------------------------------------------------------------------------- /Ionic/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/app.html -------------------------------------------------------------------------------- /Ionic/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/app.js -------------------------------------------------------------------------------- /Ionic/app/img/hugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/img/hugh.png -------------------------------------------------------------------------------- /Ionic/app/models/contactModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/models/contactModel.js -------------------------------------------------------------------------------- /Ionic/app/pages/chatPage/chatPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/chatPage/chatPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/chatPage/chatPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/chatPage/chatPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/chatPage/chatPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/chatPage/chatPage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/components/chatBubble/chatBubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/components/chatBubble/chatBubble.js -------------------------------------------------------------------------------- /Ionic/app/pages/components/chatBubble/chatBubble.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/components/chatBubble/chatBubble.scss -------------------------------------------------------------------------------- /Ionic/app/pages/components/elasticTextarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/components/elasticTextarea.js -------------------------------------------------------------------------------- /Ionic/app/pages/components/profileHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/components/profileHeader.js -------------------------------------------------------------------------------- /Ionic/app/pages/contactPage/contactPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/contactPage/contactPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/contactPage/contactPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/contactPage/contactPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/contactPage/contactPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/contactPage/contactPage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/contactsPage/contactsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/contactsPage/contactsPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/contactsPage/contactsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/contactsPage/contactsPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/contactsPage/contactsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/contactsPage/contactsPage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/discoverUsersPage/discoverUsersPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/discoverUsersPage/discoverUsersPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/discoverUsersPage/discoverUsersPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/discoverUsersPage/discoverUsersPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/discoverUsersPage/discoverUsersPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/discoverUsersPage/discoverUsersPage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/loginPage/loginPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/loginPage/loginPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/loginPage/loginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/loginPage/loginPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/loginPage/loginPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/loginPage/loginPage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/page1/page1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/page1/page1.html -------------------------------------------------------------------------------- /Ionic/app/pages/page1/page1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/page1/page1.js -------------------------------------------------------------------------------- /Ionic/app/pages/page1/page1.scss: -------------------------------------------------------------------------------- 1 | .page1 { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Ionic/app/pages/page3/page3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/page3/page3.html -------------------------------------------------------------------------------- /Ionic/app/pages/page3/page3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/page3/page3.js -------------------------------------------------------------------------------- /Ionic/app/pages/page3/page3.scss: -------------------------------------------------------------------------------- 1 | .page3 { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Ionic/app/pages/pendingInvitesPage/pendingInvitesPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/pendingInvitesPage/pendingInvitesPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/pendingInvitesPage/pendingInvitesPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/pendingInvitesPage/pendingInvitesPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/pendingInvitesPage/pendingInvitesPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/pendingInvitesPage/pendingInvitesPage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/profilePage/profilePage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/profilePage/profilePage.html -------------------------------------------------------------------------------- /Ionic/app/pages/profilePage/profilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/profilePage/profilePage.js -------------------------------------------------------------------------------- /Ionic/app/pages/profilePage/profilePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/profilePage/profilePage.scss -------------------------------------------------------------------------------- /Ionic/app/pages/settingsPage/settingsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/settingsPage/settingsPage.html -------------------------------------------------------------------------------- /Ionic/app/pages/settingsPage/settingsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/settingsPage/settingsPage.js -------------------------------------------------------------------------------- /Ionic/app/pages/settingsPage/settingsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/pages/settingsPage/settingsPage.scss -------------------------------------------------------------------------------- /Ionic/app/services/auth.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/services/auth.service.js -------------------------------------------------------------------------------- /Ionic/app/services/contacts.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/services/contacts.service.js -------------------------------------------------------------------------------- /Ionic/app/services/preferences.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/services/preferences.service.js -------------------------------------------------------------------------------- /Ionic/app/services/storage.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/services/storage.service.js -------------------------------------------------------------------------------- /Ionic/app/services/userInfo.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/services/userInfo.service.js -------------------------------------------------------------------------------- /Ionic/app/theme/app.core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/theme/app.core.scss -------------------------------------------------------------------------------- /Ionic/app/theme/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/theme/app.ios.scss -------------------------------------------------------------------------------- /Ionic/app/theme/app.md.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/theme/app.md.scss -------------------------------------------------------------------------------- /Ionic/app/theme/app.variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/theme/app.variables.scss -------------------------------------------------------------------------------- /Ionic/app/theme/app.wp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/app/theme/app.wp.scss -------------------------------------------------------------------------------- /Ionic/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/config.xml -------------------------------------------------------------------------------- /Ionic/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/gulpfile.js -------------------------------------------------------------------------------- /Ionic/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/hooks/README.md -------------------------------------------------------------------------------- /Ionic/hooks/after_prepare/010_add_platform_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/hooks/after_prepare/010_add_platform_class.js -------------------------------------------------------------------------------- /Ionic/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/ionic.config.json -------------------------------------------------------------------------------- /Ionic/ionic.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/ionic.project -------------------------------------------------------------------------------- /Ionic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/package.json -------------------------------------------------------------------------------- /Ionic/plugins/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/android.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/NOTICE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/RELEASENOTES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/de/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/es/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/fr/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/it/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/ja/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/ko/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/pl/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/ru/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/doc/zh/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/src/ios/CDVLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/src/ios/CDVLogger.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/src/ios/CDVLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/src/ios/CDVLogger.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/src/ubuntu/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/src/ubuntu/console.cpp -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/src/ubuntu/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/src/ubuntu/console.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/src/wp/DebugConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/src/wp/DebugConsole.cs -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/tests/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/tests/tests.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/www/console-via-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/www/console-via-logger.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-console/www/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-console/www/logger.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/NOTICE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/RELEASENOTES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/de/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/es/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/fr/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/it/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/ja/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/ko/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/pl/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/ru/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/doc/zh/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/android/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/android/Device.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/blackberry10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/blackberry10/index.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/browser/DeviceProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/browser/DeviceProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/firefoxos/DeviceProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/firefoxos/DeviceProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/ios/CDVDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/ios/CDVDevice.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/ios/CDVDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/ios/CDVDevice.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/osx/CDVDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/osx/CDVDevice.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/osx/CDVDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/osx/CDVDevice.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/tizen/DeviceProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/tizen/DeviceProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/ubuntu/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/ubuntu/device.cpp -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/ubuntu/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/ubuntu/device.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/ubuntu/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/ubuntu/device.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/windows/DeviceProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/windows/DeviceProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/src/wp/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/src/wp/Device.cs -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/tests/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/tests/tests.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-device/www/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-device/www/device.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/NOTICE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/RELEASENOTES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/de/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/es/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/fr/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/it/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/ja/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/ko/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/pl/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/ru/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/doc/zh/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/amazon/InAppBrowser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/amazon/InAppBrowser.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/amazon/InAppChromeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/amazon/InAppChromeClient.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/InAppBrowser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/InAppBrowser.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/InAppBrowserDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/InAppBrowserDialog.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/InAppChromeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/InAppChromeClient.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-hdpi/ic_action_remove.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-mdpi/ic_action_remove.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_previous_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_next_item.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/android/res/drawable-xxhdpi/ic_action_remove.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/blackberry10/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/browser/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/browser/InAppBrowserProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/firefoxos/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/firefoxos/InAppBrowserProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ios/CDVInAppBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ios/CDVInAppBrowser.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ios/CDVInAppBrowser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ios/CDVInAppBrowser.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/InAppBrowser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/InAppBrowser.qml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/InAppBrowser_escapeScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/InAppBrowser_escapeScript.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/close.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/inappbrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/inappbrowser.cpp -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/inappbrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/ubuntu/inappbrowser.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/windows/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/windows/InAppBrowserProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/src/wp/InAppBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/src/wp/InAppBrowser.cs -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/inject.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/inject.css -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/inject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/inject.html -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/inject.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/local.html -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/local.pdf -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/resources/video.html -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/tests/tests.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/www/inappbrowser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/www/inappbrowser.css -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/www/inappbrowser.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-inappbrowser/www/windows8/InAppBrowserProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-inappbrowser/www/windows8/InAppBrowserProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/NOTICE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/RELEASENOTES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/de/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/es/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/fr/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/it/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/ja/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/ko/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/pl/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/ru/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/doc/zh/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/android/SplashScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/android/SplashScreen.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/blackberry10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/blackberry10/index.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/browser/SplashScreenProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/browser/SplashScreenProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVSplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVSplashScreen.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVSplashScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVSplashScreen.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVViewController+SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVViewController+SplashScreen.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVViewController+SplashScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/ios/CDVViewController+SplashScreen.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/tizen/SplashScreenProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/tizen/SplashScreenProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/ubuntu/splashscreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/ubuntu/splashscreen.cpp -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/ubuntu/splashscreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/ubuntu/splashscreen.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/wp/ResolutionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/wp/ResolutionHelper.cs -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/src/wp/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/src/wp/SplashScreen.cs -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/CDVSplashScreenTest/.npmignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/ios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/ios/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/tests/tests.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/www/splashscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/www/splashscreen.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-splashscreen/www/windows/SplashScreenProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-splashscreen/www/windows/SplashScreenProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/NOTICE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/RELEASENOTES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/de/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/de/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/es/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/es/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/fr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/fr/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/it/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/it/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/ja/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/ja/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/ko/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/ko/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/pl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/pl/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/ru/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/ru/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/doc/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/doc/zh/index.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/src/android/StatusBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/src/android/StatusBar.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/src/browser/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/src/browser/statusbar.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/src/ios/CDVStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/src/ios/CDVStatusBar.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/src/ios/CDVStatusBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/src/ios/CDVStatusBar.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/src/windows/StatusBarProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/src/windows/StatusBarProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/src/wp/StatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/src/wp/StatusBar.cs -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/tests/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/tests/tests.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-statusbar/www/statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-statusbar/www/statusbar.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/NOTICE -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/RELEASENOTES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/de/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/de/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/es/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/fr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/fr/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/it/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/it/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/ja/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/ko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/ko/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/pl/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/doc/zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/doc/zh/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/src/android/WhitelistPlugin.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-plugin-whitelist/whitelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-plugin-whitelist/whitelist.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/AUTHORS.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/CHANGES.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/HISTORY.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/LICENSE.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/Lawnchair-sqlitePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/Lawnchair-sqlitePlugin.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/Lawnchair-sqlitePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/Lawnchair-sqlitePlugin.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/index.html -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lawnchair-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lawnchair-spec.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/json2.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/lawnchair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/lawnchair.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/qunit.css -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/Lawnchair-adapter/test-www/lib/qunit.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/README.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/SQLitePlugin.coffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/SQLitePlugin.coffee.md -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/bin/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/bin/test.ps1 -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/bin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/bin/test.sh -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/circle.yml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/package.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/scripts/beforePluginInstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/scripts/beforePluginInstall.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/.cordova/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/.cordova/config.json -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/config.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/plugins/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/plugins/.npmignore -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/index.html -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/boot.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/console.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine-html.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine.css -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.4.1/jasmine_favicon.png -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/basic-misc-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/basic-misc-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/browser-check-startup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/browser-check-startup.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-open-close-delete-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-open-close-delete-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-simultaneous-tx-access-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-simultaneous-tx-access-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-tx-sql-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-tx-sql-results.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-tx-string-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-tx-string-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-tx-value-bindings-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/db-tx-value-bindings-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/ext-tx-blob-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/ext-tx-blob-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/misc-tx-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/misc-tx-legacy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/regexp-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/regexp-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/self-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/self-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/sql-batch-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/sql-batch-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/spec/www/spec/tx-semantics-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/spec/www/spec/tx-semantics-test.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/android/io/sqlc/SQLiteAndroidDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/android/io/sqlc/SQLiteAndroidDatabase.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/android/io/sqlc/SQLiteConnectorDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/android/io/sqlc/SQLiteConnectorDatabase.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/android/io/sqlc/SQLitePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/android/io/sqlc/SQLitePlugin.java -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/ios/SQLitePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/ios/SQLitePlugin.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/ios/SQLitePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/ios/SQLitePlugin.m -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Constants.cpp: -------------------------------------------------------------------------------- 1 | #include "Constants.h" 2 | -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Constants.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Database.cpp -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Database.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/SQLite3.Shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/SQLite3.Shared.vcxitems -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/SQLite3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/SQLite3.sln -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Statement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Statement.cpp -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Statement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/Statement.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3/pch.h -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3JS/js/SQLite3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/SQLite3-Win-RT/SQLite3JS/js/SQLite3.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/src/windows/sqlite-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/src/windows/sqlite-proxy.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/tests/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/tests/tests.js -------------------------------------------------------------------------------- /Ionic/plugins/cordova-sqlite-storage/www/SQLitePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/cordova-sqlite-storage/www/SQLitePlugin.js -------------------------------------------------------------------------------- /Ionic/plugins/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/fetch.json -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/LICENSE -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/README.md -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/package.json -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/plugin.xml -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/android/IonicKeyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/android/IonicKeyboard.java -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/index.js -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/.cproject -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/.project -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/libKeyboard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/libKeyboard.so -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_reader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_reader.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_value.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_value.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_writer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/json_writer.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/plugin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/plugin.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/tokenizer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/public/tokenizer.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/CallKeyboard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/CallKeyboard.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/Logger.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/Logger.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_js.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_js.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_ndk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/device/src/keyboard_ndk.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/autolink.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/config.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/features.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/forwards.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/json.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/reader.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/value.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json/writer.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_batchallocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_batchallocator.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_internalarray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_internalarray.inl -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_internalmap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_internalmap.inl -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_reader.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_value.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_valueiterator.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_valueiterator.inl -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/json_writer.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/plugin.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/plugin.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/public/tokenizer.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/libKeyboard.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/libKeyboard.so -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_reader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_reader.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_value.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_value.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_writer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/json_writer.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/plugin.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/plugin.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/tokenizer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/public/tokenizer.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/CallKeyboard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/CallKeyboard.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/Logger.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/Logger.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_js.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_js.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_ndk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/simulator/src/keyboard_ndk.o -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/Logger.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/Logger.hpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_js.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_js.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_js.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_js.hpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_ndk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_ndk.cpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_ndk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/blackberry10/native/src/keyboard_ndk.hpp -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/ios/IonicKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/ios/IonicKeyboard.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/ios/IonicKeyboard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/ios/IonicKeyboard.m -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/ios/UIWebViewExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/ios/UIWebViewExtension.h -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/ios/UIWebViewExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/ios/UIWebViewExtension.m -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/src/windows/KeyboardProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/src/windows/KeyboardProxy.js -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/www/android/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/www/android/keyboard.js -------------------------------------------------------------------------------- /Ionic/plugins/ionic-plugin-keyboard/www/ios/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/plugins/ionic-plugin-keyboard/www/ios/keyboard.js -------------------------------------------------------------------------------- /Ionic/resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /Ionic/resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /Ionic/resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /Ionic/resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /Ionic/resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /Ionic/resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic/resources/hugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/hugh.png -------------------------------------------------------------------------------- /Ionic/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/icon.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /Ionic/resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /Ionic/resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /Ionic/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/resources/splash.png -------------------------------------------------------------------------------- /Ionic/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic/www/index.html -------------------------------------------------------------------------------- /Ionic2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/.editorconfig -------------------------------------------------------------------------------- /Ionic2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/.gitignore -------------------------------------------------------------------------------- /Ionic2/_bckp/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/_bckp/android.json -------------------------------------------------------------------------------- /Ionic2/_bckp/android0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/_bckp/android0.json -------------------------------------------------------------------------------- /Ionic2/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/config.xml -------------------------------------------------------------------------------- /Ionic2/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/ionic.config.json -------------------------------------------------------------------------------- /Ionic2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/package.json -------------------------------------------------------------------------------- /Ionic2/resources/android/icon/drawable-hdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/icon/drawable-hdpi-icon.png -------------------------------------------------------------------------------- /Ionic2/resources/android/icon/drawable-ldpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/icon/drawable-ldpi-icon.png -------------------------------------------------------------------------------- /Ionic2/resources/android/icon/drawable-mdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/icon/drawable-mdpi-icon.png -------------------------------------------------------------------------------- /Ionic2/resources/android/icon/drawable-xhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/icon/drawable-xhdpi-icon.png -------------------------------------------------------------------------------- /Ionic2/resources/android/icon/drawable-xxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/icon/drawable-xxhdpi-icon.png -------------------------------------------------------------------------------- /Ionic2/resources/android/icon/drawable-xxxhdpi-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/icon/drawable-xxxhdpi-icon.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-land-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-land-hdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-land-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-land-ldpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-land-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-land-mdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-land-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-land-xhdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-land-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-land-xxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-land-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-land-xxxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-port-hdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-port-hdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-port-ldpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-port-ldpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-port-mdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-port-mdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-port-xhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-port-xhdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-port-xxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-port-xxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/android/splash/drawable-port-xxxhdpi-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/android/splash/drawable-port-xxxhdpi-screen.png -------------------------------------------------------------------------------- /Ionic2/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/icon.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-40.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-40@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-50.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-50@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-60.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-60@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-60@3x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-72.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-72@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-76.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-76@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-small.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-small@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon-small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon-small@3x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/icon/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/icon/icon@2x.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-667h.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-736h.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-Landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-Landscape-736h.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /Ionic2/resources/ios/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/ios/splash/Default~iphone.png -------------------------------------------------------------------------------- /Ionic2/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/resources/splash.png -------------------------------------------------------------------------------- /Ionic2/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/app/app.component.ts -------------------------------------------------------------------------------- /Ionic2/src/app/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/app/app.html -------------------------------------------------------------------------------- /Ionic2/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/app/app.module.ts -------------------------------------------------------------------------------- /Ionic2/src/app/main.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/app/main.dev.ts -------------------------------------------------------------------------------- /Ionic2/src/app/main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/app/main.prod.ts -------------------------------------------------------------------------------- /Ionic2/src/assets/icon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/assets/icon/favicon.ico -------------------------------------------------------------------------------- /Ionic2/src/assets/img/hugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/assets/img/hugh.png -------------------------------------------------------------------------------- /Ionic2/src/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/assets/manifest.json -------------------------------------------------------------------------------- /Ionic2/src/components/chatBubble/chatBubble.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/components/chatBubble/chatBubble.scss -------------------------------------------------------------------------------- /Ionic2/src/components/chatBubble/chatBubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/components/chatBubble/chatBubble.ts -------------------------------------------------------------------------------- /Ionic2/src/components/elasticTextarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/components/elasticTextarea.ts -------------------------------------------------------------------------------- /Ionic2/src/components/profileHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/components/profileHeader.ts -------------------------------------------------------------------------------- /Ionic2/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/index.html -------------------------------------------------------------------------------- /Ionic2/src/manifest.json: -------------------------------------------------------------------------------- 1 | /* i added this to supress error on build */ 2 | -------------------------------------------------------------------------------- /Ionic2/src/models/IFirebaseObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/models/IFirebaseObject.ts -------------------------------------------------------------------------------- /Ionic2/src/models/chatMessageModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/models/chatMessageModel.ts -------------------------------------------------------------------------------- /Ionic2/src/models/contactModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/models/contactModel.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/chatPage/chatPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/chatPage/chatPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/chatPage/chatPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/chatPage/chatPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/chatPage/chatPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/chatPage/chatPage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/contactPage/contactPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/contactPage/contactPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/contactPage/contactPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/contactPage/contactPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/contactPage/contactPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/contactPage/contactPage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/contactsPage/contactsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/contactsPage/contactsPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/contactsPage/contactsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/contactsPage/contactsPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/contactsPage/contactsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/contactsPage/contactsPage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/discoverUsersPage/discoverUsersPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/discoverUsersPage/discoverUsersPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/discoverUsersPage/discoverUsersPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/discoverUsersPage/discoverUsersPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/discoverUsersPage/discoverUsersPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/discoverUsersPage/discoverUsersPage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/loginPage/loginPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/loginPage/loginPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/loginPage/loginPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/loginPage/loginPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/loginPage/loginPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/loginPage/loginPage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/pendingInvitesPage/pendingInvitesPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/pendingInvitesPage/pendingInvitesPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/pendingInvitesPage/pendingInvitesPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/pendingInvitesPage/pendingInvitesPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/pendingInvitesPage/pendingInvitesPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/pendingInvitesPage/pendingInvitesPage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/profilePage/profilePage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/profilePage/profilePage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/profilePage/profilePage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/profilePage/profilePage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/profilePage/profilePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/profilePage/profilePage.ts -------------------------------------------------------------------------------- /Ionic2/src/pages/settingsPage/settingsPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/settingsPage/settingsPage.html -------------------------------------------------------------------------------- /Ionic2/src/pages/settingsPage/settingsPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/settingsPage/settingsPage.scss -------------------------------------------------------------------------------- /Ionic2/src/pages/settingsPage/settingsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/pages/settingsPage/settingsPage.ts -------------------------------------------------------------------------------- /Ionic2/src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/service-worker.js -------------------------------------------------------------------------------- /Ionic2/src/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/services/auth.service.ts -------------------------------------------------------------------------------- /Ionic2/src/services/firebase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/services/firebase.service.ts -------------------------------------------------------------------------------- /Ionic2/src/services/math.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/services/math.service.ts -------------------------------------------------------------------------------- /Ionic2/src/services/preferences.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/services/preferences.service.ts -------------------------------------------------------------------------------- /Ionic2/src/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/services/storage.service.ts -------------------------------------------------------------------------------- /Ionic2/src/services/userInfo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/services/userInfo.service.ts -------------------------------------------------------------------------------- /Ionic2/src/theme/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/theme/global.scss -------------------------------------------------------------------------------- /Ionic2/src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/src/theme/variables.scss -------------------------------------------------------------------------------- /Ionic2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/tsconfig.json -------------------------------------------------------------------------------- /Ionic2/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Ionic2/tslint.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Imgs/Atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/Atom.png -------------------------------------------------------------------------------- /Other/Imgs/Atom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/Atom_2.png -------------------------------------------------------------------------------- /Other/Imgs/Initial_Project_State.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/Initial_Project_State.png -------------------------------------------------------------------------------- /Other/Imgs/Market_Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/Market_Share.png -------------------------------------------------------------------------------- /Other/Imgs/Project_Schaffolding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/Project_Schaffolding.png -------------------------------------------------------------------------------- /Other/Imgs/Resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/Resources.txt -------------------------------------------------------------------------------- /Other/Imgs/android-adding-library-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-adding-library-1.png -------------------------------------------------------------------------------- /Other/Imgs/android-adding-library-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-adding-library-2.png -------------------------------------------------------------------------------- /Other/Imgs/android-adding-library-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-adding-library-3.png -------------------------------------------------------------------------------- /Other/Imgs/android-chat-activity-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-chat-activity-1.png -------------------------------------------------------------------------------- /Other/Imgs/android-chat-activity-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-chat-activity-2.png -------------------------------------------------------------------------------- /Other/Imgs/android-content-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-content-navigation.png -------------------------------------------------------------------------------- /Other/Imgs/android-discover-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-discover-users.png -------------------------------------------------------------------------------- /Other/Imgs/android-login-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-login-2.png -------------------------------------------------------------------------------- /Other/Imgs/android-menu-header-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-menu-header-style.png -------------------------------------------------------------------------------- /Other/Imgs/android-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-menu.png -------------------------------------------------------------------------------- /Other/Imgs/android-new-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-new-activity.png -------------------------------------------------------------------------------- /Other/Imgs/android-new-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-new-icons.png -------------------------------------------------------------------------------- /Other/Imgs/android-new-login-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-new-login-activity.png -------------------------------------------------------------------------------- /Other/Imgs/android-profile-contact-page-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-profile-contact-page-layout.png -------------------------------------------------------------------------------- /Other/Imgs/android-profile-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-profile-header.png -------------------------------------------------------------------------------- /Other/Imgs/android-profile-page-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-profile-page-layout.png -------------------------------------------------------------------------------- /Other/Imgs/android-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-settings-2.png -------------------------------------------------------------------------------- /Other/Imgs/android-settings-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-settings-3.png -------------------------------------------------------------------------------- /Other/Imgs/android-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-settings.png -------------------------------------------------------------------------------- /Other/Imgs/android-studio-project-view-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-studio-project-view-2.png -------------------------------------------------------------------------------- /Other/Imgs/android-studio-project-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-studio-project-view.png -------------------------------------------------------------------------------- /Other/Imgs/android-theme-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-theme-editor.png -------------------------------------------------------------------------------- /Other/Imgs/android-theme-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-theme-new.png -------------------------------------------------------------------------------- /Other/Imgs/android-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/android-theme.png -------------------------------------------------------------------------------- /Other/Imgs/both-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/both-login.png -------------------------------------------------------------------------------- /Other/Imgs/build-simplified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/build-simplified.png -------------------------------------------------------------------------------- /Other/Imgs/droid-contacts-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/droid-contacts-list.png -------------------------------------------------------------------------------- /Other/Imgs/droid-pending-invites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/droid-pending-invites.png -------------------------------------------------------------------------------- /Other/Imgs/hello-world-droid-avd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/hello-world-droid-avd.png -------------------------------------------------------------------------------- /Other/Imgs/in_message_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/in_message_bg.9.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-chat-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-chat-bubble.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-contacts-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-contacts-list.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-emulator.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-hello-world-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-hello-world-2.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-hello-world.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-login.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-menu-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-menu-icons.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-menu.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-pending-invites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-pending-invites.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-profile-contact-page-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-profile-contact-page-layout.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-profile-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-profile-header.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-settings-2.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-settings.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-theme-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-theme-new.png -------------------------------------------------------------------------------- /Other/Imgs/ionic-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ionic-theme.png -------------------------------------------------------------------------------- /Other/Imgs/ninepatch_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/ninepatch_raw.png -------------------------------------------------------------------------------- /Other/Imgs/out_message_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/out_message_bg.9.png -------------------------------------------------------------------------------- /Other/Imgs/target-sdk-version-n-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Imgs/target-sdk-version-n-error.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Chat1.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Chat2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Chat2.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Contact.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Contacts.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Discover.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Groups.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Login Page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Login Page.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Menu.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Pending.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Profile.png -------------------------------------------------------------------------------- /Other/Mockups/v1/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/Other/Mockups/v1/Settings.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smukov/AvI/HEAD/README.md --------------------------------------------------------------------------------