├── .buckconfig ├── .eslintrc.js ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .vscode └── settings.json ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── actions ├── alarm.js └── index.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── alarmreduxapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-mdpi │ │ ├── node_modules_reactnativeratings_src_images_airbnbstar.png │ │ ├── node_modules_reactnativeratings_src_images_airbnbstarselected.png │ │ ├── node_modules_reactnativeratings_src_images_bell.png │ │ ├── node_modules_reactnativeratings_src_images_heart.png │ │ ├── node_modules_reactnativeratings_src_images_rocket.png │ │ └── node_modules_reactnativeratings_src_images_star.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── app.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_antdesign.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_entypo.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_evilicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_feather.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_fontawesome.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_foundation.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_ionicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_materialcommunityicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_materialicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_octicons.json │ │ ├── node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json │ │ └── node_modules_reactnativevectoricons_glyphmaps_zocial.json │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── components ├── ListAlarms.js └── TimePicker.js ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png ├── index.js ├── ios ├── AlarmReduxApp-tvOS │ └── Info.plist ├── AlarmReduxApp-tvOSTests │ └── Info.plist ├── AlarmReduxApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── AlarmReduxApp-tvOS.xcscheme │ │ └── AlarmReduxApp.xcscheme ├── AlarmReduxApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── AlarmReduxAppTests │ ├── AlarmReduxAppTests.m │ └── Info.plist └── Podfile ├── metro.config.js ├── package-lock.json ├── package.json ├── reducers └── alarmReducer.js └── store └── index.js /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["prettier"], 3 | "plugins": ["prettier"], 4 | "rules": { 5 | "prettier/prettier": ["error"] 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore polyfills 9 | node_modules/react-native/Libraries/polyfills/.* 10 | 11 | ; These should not be required directly 12 | ; require from fbjs/lib instead: require('fbjs/lib/warning') 13 | node_modules/warning/.* 14 | 15 | ; Flow doesn't support platforms 16 | .*/Libraries/Utilities/LoadingView.js 17 | 18 | [untyped] 19 | .*/node_modules/@react-native-community/cli/.*/.* 20 | 21 | [include] 22 | 23 | [libs] 24 | node_modules/react-native/Libraries/react-native/react-native-interface.js 25 | node_modules/react-native/flow/ 26 | 27 | [options] 28 | emoji=true 29 | 30 | esproposal.optional_chaining=enable 31 | esproposal.nullish_coalescing=enable 32 | 33 | module.file_ext=.js 34 | module.file_ext=.json 35 | module.file_ext=.ios.js 36 | 37 | munge_underscores=true 38 | 39 | module.name_mapper='^react-native$' -> '/node_modules/react-native/Libraries/react-native/react-native-implementation' 40 | module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' 41 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 51 | 52 | [lints] 53 | sketchy-null-number=warn 54 | sketchy-null-mixed=warn 55 | sketchy-number=warn 56 | untyped-type-import=warn 57 | nonstrict-import=warn 58 | deprecated-type=warn 59 | unsafe-getters-setters=warn 60 | inexact-spread=warn 61 | unnecessary-invariant=warn 62 | signature-verification-failure=warn 63 | deprecated-utility=error 64 | 65 | [strict] 66 | deprecated-type 67 | nonstrict-import 68 | sketchy-null 69 | unclear-type 70 | unsafe-getters-setters 71 | untyped-import 72 | untyped-type-import 73 | 74 | [version] 75 | ^0.105.0 76 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | 24 | # Android/IntelliJ 25 | # 26 | build/ 27 | .idea 28 | .gradle 29 | local.properties 30 | *.iml 31 | 32 | # node.js 33 | # 34 | node_modules/ 35 | npm-debug.log 36 | yarn-error.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | *.keystore 42 | !debug.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | 58 | # CocoaPods 59 | /ios/Pods/ 60 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSpacing: false, 3 | jsxBracketSameLine: true, 4 | singleQuote: true, 5 | trailingComma: 'all', 6 | }; 7 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.configuration.updateBuildConfiguration": "interactive" 3 | } -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import {StyleSheet, View, Button, Text, SafeAreaView} from 'react-native'; 3 | import TimePicker from './components/TimePicker'; 4 | import ListAlarms from './components/ListAlarms'; 5 | 6 | class App extends Component { 7 | render() { 8 | return ( 9 | 10 | Alarm App 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | ); 20 | } 21 | } 22 | 23 | const styles = StyleSheet.create({ 24 | mainContainer: { 25 | flex: 1, 26 | alignItems: 'center', 27 | // justifyContent: 'center', 28 | }, 29 | heading: { 30 | // fontWeight: "bold", 31 | fontSize: 25, 32 | padding: 20, 33 | }, 34 | timePicker: { 35 | paddingTop: '10%', 36 | width: '50%', 37 | // right: '10%', 38 | bottom: 20, 39 | }, 40 | listAlarms: { 41 | flex: 1, 42 | width: '100%', 43 | }, 44 | }); 45 | 46 | export default App; 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Walkthrough 2 | 3 | # WatchOnYoutube["https://www.youtube.com/watch?v=4-N2zDAtEGc&list=PLAhJRLQdfo1WKZteiGGvEFVti3qzlrOTZ"] 4 | 5 | ![New Project (2) (1)](https://user-images.githubusercontent.com/77012663/130591658-dbc3f931-b40a-4bd3-bb4c-fdcca8b0c1ff.jpg) 6 | -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import 'react-native'; 6 | import React from 'react'; 7 | import App from '../App'; 8 | 9 | // Note: test renderer must be required after react-native. 10 | import renderer from 'react-test-renderer'; 11 | 12 | it('renders correctly', () => { 13 | renderer.create(); 14 | }); 15 | -------------------------------------------------------------------------------- /actions/alarm.js: -------------------------------------------------------------------------------- 1 | import {ADD_ALARM, DELETE_ALARM} from './index'; 2 | 3 | export const addAlarm = time => { 4 | return { 5 | type: ADD_ALARM, 6 | payload: time, 7 | }; 8 | }; 9 | 10 | export const deleteAlarm = time => { 11 | return { 12 | type: DELETE_ALARM, 13 | payload: time, 14 | }; 15 | }; 16 | -------------------------------------------------------------------------------- /actions/index.js: -------------------------------------------------------------------------------- 1 | export const ADD_ALARM = 'ADD_ALARM'; 2 | export const DELETE_ALARM = 'DELETE_ALARM'; 3 | -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | android 4 | Project android created by Buildship. 5 | 6 | 7 | 8 | 9 | org.eclipse.buildship.core.gradleprojectbuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.buildship.core.gradleprojectnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | connection.project.dir= 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.alarmreduxapp", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.alarmreduxapp", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format 22 | * bundleCommand: "ram-bundle", 23 | * 24 | * // whether to bundle JS and assets in debug mode 25 | * bundleInDebug: false, 26 | * 27 | * // whether to bundle JS and assets in release mode 28 | * bundleInRelease: true, 29 | * 30 | * // whether to bundle JS and assets in another build variant (if configured). 31 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 32 | * // The configuration property can be in the following formats 33 | * // 'bundleIn${productFlavor}${buildType}' 34 | * // 'bundleIn${buildType}' 35 | * // bundleInFreeDebug: true, 36 | * // bundleInPaidRelease: true, 37 | * // bundleInBeta: true, 38 | * 39 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 40 | * // for example: to disable dev mode in the staging build type (if configured) 41 | * devDisabledInStaging: true, 42 | * // The configuration property can be in the following formats 43 | * // 'devDisabledIn${productFlavor}${buildType}' 44 | * // 'devDisabledIn${buildType}' 45 | * 46 | * // the root of your project, i.e. where "package.json" lives 47 | * root: "../../", 48 | * 49 | * // where to put the JS bundle asset in debug mode 50 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 51 | * 52 | * // where to put the JS bundle asset in release mode 53 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 54 | * 55 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 56 | * // require('./image.png')), in debug mode 57 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 58 | * 59 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 60 | * // require('./image.png')), in release mode 61 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 62 | * 63 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 64 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 65 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 66 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 67 | * // for example, you might want to remove it from here. 68 | * inputExcludes: ["android/**", "ios/**"], 69 | * 70 | * // override which node gets called and with what additional arguments 71 | * nodeExecutableAndArgs: ["node"], 72 | * 73 | * // supply additional arguments to the packager 74 | * extraPackagerArgs: [] 75 | * ] 76 | */ 77 | 78 | project.ext.react = [ 79 | entryFile: "index.js", 80 | enableHermes: false, // clean and rebuild if changing 81 | ] 82 | 83 | apply from: "../../node_modules/react-native/react.gradle" 84 | 85 | /** 86 | * Set this to true to create two separate APKs instead of one: 87 | * - An APK that only works on ARM devices 88 | * - An APK that only works on x86 devices 89 | * The advantage is the size of the APK is reduced by about 4MB. 90 | * Upload all the APKs to the Play Store and people will download 91 | * the correct one based on the CPU architecture of their device. 92 | */ 93 | def enableSeparateBuildPerCPUArchitecture = false 94 | 95 | /** 96 | * Run Proguard to shrink the Java bytecode in release builds. 97 | */ 98 | def enableProguardInReleaseBuilds = false 99 | 100 | /** 101 | * The preferred build flavor of JavaScriptCore. 102 | * 103 | * For example, to use the international variant, you can use: 104 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 105 | * 106 | * The international variant includes ICU i18n library and necessary data 107 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 108 | * give correct results when using with locales other than en-US. Note that 109 | * this variant is about 6MiB larger per architecture than default. 110 | */ 111 | def jscFlavor = 'org.webkit:android-jsc:+' 112 | 113 | /** 114 | * Whether to enable the Hermes VM. 115 | * 116 | * This should be set on project.ext.react and mirrored here. If it is not set 117 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 118 | * and the benefits of using Hermes will therefore be sharply reduced. 119 | */ 120 | def enableHermes = project.ext.react.get("enableHermes", false); 121 | 122 | android { 123 | compileSdkVersion rootProject.ext.compileSdkVersion 124 | 125 | compileOptions { 126 | sourceCompatibility JavaVersion.VERSION_1_8 127 | targetCompatibility JavaVersion.VERSION_1_8 128 | } 129 | 130 | defaultConfig { 131 | applicationId "com.alarmreduxapp" 132 | minSdkVersion rootProject.ext.minSdkVersion 133 | targetSdkVersion rootProject.ext.targetSdkVersion 134 | versionCode 1 135 | versionName "1.0" 136 | } 137 | splits { 138 | abi { 139 | reset() 140 | enable enableSeparateBuildPerCPUArchitecture 141 | universalApk false // If true, also generate a universal APK 142 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 143 | } 144 | } 145 | signingConfigs { 146 | debug { 147 | storeFile file('debug.keystore') 148 | storePassword 'android' 149 | keyAlias 'androiddebugkey' 150 | keyPassword 'android' 151 | } 152 | } 153 | buildTypes { 154 | debug { 155 | signingConfig signingConfigs.debug 156 | } 157 | release { 158 | // Caution! In production, you need to generate your own keystore file. 159 | // see https://facebook.github.io/react-native/docs/signed-apk-android. 160 | signingConfig signingConfigs.debug 161 | minifyEnabled enableProguardInReleaseBuilds 162 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 163 | } 164 | } 165 | // applicationVariants are e.g. debug, release 166 | applicationVariants.all { variant -> 167 | variant.outputs.each { output -> 168 | // For each separate APK per architecture, set a unique version code as described here: 169 | // https://developer.android.com/studio/build/configure-apk-splits.html 170 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] 171 | def abi = output.getFilter(OutputFile.ABI) 172 | if (abi != null) { // null for the universal-debug, universal-release variants 173 | output.versionCodeOverride = 174 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 175 | } 176 | 177 | } 178 | } 179 | } 180 | 181 | dependencies { 182 | implementation fileTree(dir: "libs", include: ["*.jar"]) 183 | implementation "com.facebook.react:react-native:+" // From node_modules 184 | 185 | if (enableHermes) { 186 | def hermesPath = "../../node_modules/hermes-engine/android/"; 187 | debugImplementation files(hermesPath + "hermes-debug.aar") 188 | releaseImplementation files(hermesPath + "hermes-release.aar") 189 | } else { 190 | implementation jscFlavor 191 | } 192 | } 193 | 194 | // Run this once to be able to run the application with BUCK 195 | // puts all compile dependencies into folder libs for BUCK to use 196 | task copyDownloadableDepsToLibs(type: Copy) { 197 | from configurations.compile 198 | into 'libs' 199 | } 200 | 201 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 202 | -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/alarmreduxapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.alarmreduxapp; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. This is used to schedule 9 | * rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "AlarmReduxApp"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/alarmreduxapp/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.alarmreduxapp; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | import com.facebook.react.PackageList; 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactNativeHost; 8 | import android.app.NotificationManager; 9 | import android.app.NotificationChannel; 10 | import android.content.Context; 11 | import android.graphics.Color; 12 | import android.os.Build; 13 | import com.facebook.react.ReactPackage; 14 | import com.facebook.soloader.SoLoader; 15 | import java.lang.reflect.InvocationTargetException; 16 | import java.util.List; 17 | 18 | public class MainApplication extends Application implements ReactApplication { 19 | 20 | private final ReactNativeHost mReactNativeHost = 21 | new ReactNativeHost(this) { 22 | @Override 23 | public boolean getUseDeveloperSupport() { 24 | return BuildConfig.DEBUG; 25 | } 26 | 27 | @Override 28 | protected List getPackages() { 29 | @SuppressWarnings("UnnecessaryLocalVariable") 30 | List packages = new PackageList(this).getPackages(); 31 | // Packages that cannot be autolinked yet can be added manually here, for example: 32 | // packages.add(new MyReactNativePackage()); 33 | return packages; 34 | } 35 | 36 | @Override 37 | protected String getJSMainModuleName() { 38 | return "index"; 39 | } 40 | }; 41 | 42 | @Override 43 | public ReactNativeHost getReactNativeHost() { 44 | return mReactNativeHost; 45 | } 46 | 47 | @Override 48 | public void onCreate() { 49 | super.onCreate(); 50 | SoLoader.init(this, /* native exopackage */ false); 51 | initializeFlipper(this); // Remove this line if you don't want Flipper enabled 52 | String id = "alarm-channel"; // The id of the channel. 53 | CharSequence name = "alarm-channel"; // The user-visible name of the channel. 54 | String description = "channel for redux alarm app"; // The user-visible description of the channel. 55 | 56 | if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 57 | NotificationChannel mChannel = new NotificationChannel(id, name, NotificationManager.IMPORTANCE_DEFAULT); 58 | 59 | // Configure the notification channel. 60 | mChannel.setDescription(description); 61 | 62 | mChannel.enableLights(true); 63 | // Sets the notification light color for notifications posted to this 64 | // channel, if the device supports this feature. 65 | mChannel.setLightColor(Color.RED); 66 | 67 | mChannel.enableVibration(true); 68 | mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400}); 69 | 70 | NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE); 71 | mNotificationManager.createNotificationChannel(mChannel); 72 | } 73 | } 74 | 75 | /** 76 | * Loads Flipper in React Native templates. 77 | * 78 | * @param context 79 | */ 80 | private static void initializeFlipper(Context context) { 81 | if (BuildConfig.DEBUG) { 82 | try { 83 | /* 84 | We use reflection here to pick up the class that initializes Flipper, 85 | since Flipper library is not available in release mode 86 | */ 87 | Class aClass = Class.forName("com.facebook.flipper.ReactNativeFlipper"); 88 | aClass.getMethod("initializeFlipper", Context.class).invoke(null, context); 89 | } catch (ClassNotFoundException e) { 90 | e.printStackTrace(); 91 | } catch (NoSuchMethodException e) { 92 | e.printStackTrace(); 93 | } catch (IllegalAccessException e) { 94 | e.printStackTrace(); 95 | } catch (InvocationTargetException e) { 96 | e.printStackTrace(); 97 | } 98 | } 99 | } 100 | } 101 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstar.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstarselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_airbnbstarselected.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_bell.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_heart.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_rocket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/drawable-mdpi/node_modules_reactnativeratings_src_images_star.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/raw/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AlarmReduxApp", 3 | "displayName": "AlarmReduxApp" 4 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_antdesign.json: -------------------------------------------------------------------------------- 1 | { 2 | "stepforward": 58880, 3 | "stepbackward": 58881, 4 | "forward": 58882, 5 | "banckward": 58883, 6 | "caretright": 58884, 7 | "caretleft": 58885, 8 | "caretdown": 58886, 9 | "caretup": 58887, 10 | "rightcircle": 58888, 11 | "leftcircle": 58889, 12 | "upcircle": 58890, 13 | "downcircle": 58891, 14 | "rightcircleo": 58892, 15 | "leftcircleo": 58893, 16 | "upcircleo": 58894, 17 | "downcircleo": 58895, 18 | "verticleleft": 58896, 19 | "verticleright": 58897, 20 | "back": 58898, 21 | "retweet": 58899, 22 | "shrink": 58900, 23 | "arrowsalt": 58901, 24 | "doubleright": 58903, 25 | "doubleleft": 58904, 26 | "arrowdown": 58905, 27 | "arrowup": 58906, 28 | "arrowright": 58907, 29 | "arrowleft": 58908, 30 | "down": 58909, 31 | "up": 58910, 32 | "right": 58911, 33 | "left": 58912, 34 | "minussquareo": 58913, 35 | "minuscircle": 58914, 36 | "minuscircleo": 58915, 37 | "minus": 58916, 38 | "pluscircleo": 58917, 39 | "pluscircle": 58918, 40 | "plus": 58919, 41 | "infocirlce": 58920, 42 | "infocirlceo": 58921, 43 | "info": 58922, 44 | "exclamation": 58923, 45 | "exclamationcircle": 58924, 46 | "exclamationcircleo": 58925, 47 | "closecircle": 58926, 48 | "closecircleo": 58927, 49 | "checkcircle": 58928, 50 | "checkcircleo": 58929, 51 | "check": 58930, 52 | "close": 58931, 53 | "customerservice": 58932, 54 | "creditcard": 58933, 55 | "codesquareo": 58934, 56 | "book": 58935, 57 | "barschart": 58936, 58 | "bars": 58937, 59 | "question": 58938, 60 | "questioncircle": 58939, 61 | "questioncircleo": 58940, 62 | "pause": 58941, 63 | "pausecircle": 58942, 64 | "pausecircleo": 58943, 65 | "clockcircle": 58944, 66 | "clockcircleo": 58945, 67 | "swap": 58946, 68 | "swapleft": 58947, 69 | "swapright": 58948, 70 | "plussquareo": 58949, 71 | "frown": 58950, 72 | "menufold": 58968, 73 | "mail": 58969, 74 | "link": 58971, 75 | "areachart": 58972, 76 | "linechart": 58973, 77 | "home": 58974, 78 | "laptop": 58975, 79 | "star": 58976, 80 | "staro": 58977, 81 | "filter": 58979, 82 | "meho": 58982, 83 | "meh": 58983, 84 | "shoppingcart": 58984, 85 | "save": 58985, 86 | "user": 58986, 87 | "videocamera": 58987, 88 | "totop": 58988, 89 | "team": 58989, 90 | "sharealt": 58993, 91 | "setting": 58994, 92 | "picture": 58996, 93 | "phone": 58997, 94 | "paperclip": 58998, 95 | "notification": 58999, 96 | "menuunfold": 59001, 97 | "inbox": 59002, 98 | "lock": 59003, 99 | "qrcode": 59004, 100 | "tags": 59005, 101 | "tagso": 59006, 102 | "cloudo": 59007, 103 | "cloud": 59008, 104 | "cloudupload": 59009, 105 | "clouddownload": 59010, 106 | "clouddownloado": 59011, 107 | "clouduploado": 59012, 108 | "enviroment": 59013, 109 | "enviromento": 59014, 110 | "eye": 59015, 111 | "eyeo": 59016, 112 | "camera": 59017, 113 | "camerao": 59018, 114 | "windows": 59019, 115 | "export2": 59024, 116 | "export": 59025, 117 | "circledowno": 59027, 118 | "circledown": 59028, 119 | "hdd": 59034, 120 | "ie": 59035, 121 | "delete": 59039, 122 | "enter": 59040, 123 | "pushpino": 59041, 124 | "pushpin": 59042, 125 | "heart": 59043, 126 | "hearto": 59044, 127 | "smile-circle": 59047, 128 | "smileo": 59048, 129 | "frowno": 59049, 130 | "calculator": 59050, 131 | "chrome": 59052, 132 | "github": 59053, 133 | "iconfontdesktop": 59060, 134 | "caretcircleoup": 59061, 135 | "upload": 59062, 136 | "download": 59063, 137 | "piechart": 59064, 138 | "lock1": 59065, 139 | "unlock": 59066, 140 | "windowso": 59068, 141 | "dotchart": 59069, 142 | "barchart": 59070, 143 | "codesquare": 59071, 144 | "plussquare": 59072, 145 | "minussquare": 59073, 146 | "closesquare": 59074, 147 | "closesquareo": 59075, 148 | "checksquare": 59076, 149 | "checksquareo": 59077, 150 | "fastbackward": 59078, 151 | "fastforward": 59079, 152 | "upsquare": 59080, 153 | "downsquare": 59081, 154 | "leftsquare": 59082, 155 | "rightsquare": 59083, 156 | "rightsquareo": 59084, 157 | "leftsquareo": 59085, 158 | "down-square-o": 59086, 159 | "up-square-o": 59087, 160 | "play": 59088, 161 | "playcircleo": 59089, 162 | "tag": 59090, 163 | "tago": 59091, 164 | "addfile": 59664, 165 | "folder1": 58978, 166 | "file1": 58980, 167 | "switcher": 59667, 168 | "addfolder": 59668, 169 | "folderopen": 59033, 170 | "search1": 58992, 171 | "ellipsis1": 58951, 172 | "calendar": 59067, 173 | "filetext1": 59032, 174 | "copy1": 58952, 175 | "jpgfile1": 59036, 176 | "pdffile1": 59059, 177 | "exclefile1": 59056, 178 | "pptfile1": 59057, 179 | "unknowfile1": 59055, 180 | "wordfile1": 59058, 181 | "dingding": 59683, 182 | "dingding-o": 59685, 183 | "mobile1": 59000, 184 | "tablet1": 58990, 185 | "bells": 58958, 186 | "disconnect": 58959, 187 | "database": 58960, 188 | "barcode": 58962, 189 | "hourglass": 58963, 190 | "key": 58964, 191 | "flag": 58965, 192 | "layout": 58966, 193 | "printer": 58995, 194 | "USB": 59095, 195 | "skin": 59096, 196 | "tool": 59097, 197 | "car": 59100, 198 | "addusergroup": 59101, 199 | "carryout": 59103, 200 | "deleteuser": 59104, 201 | "deleteusergroup": 59105, 202 | "man": 59106, 203 | "isv": 59107, 204 | "gift": 59108, 205 | "idcard": 59109, 206 | "medicinebox": 59110, 207 | "redenvelopes": 59111, 208 | "rest": 59112, 209 | "Safety": 59114, 210 | "wallet": 59115, 211 | "woman": 59116, 212 | "adduser": 59117, 213 | "bank": 59118, 214 | "Trophy": 59119, 215 | "loading1": 59054, 216 | "loading2": 58957, 217 | "like2": 59037, 218 | "dislike2": 59038, 219 | "like1": 58956, 220 | "dislike1": 58955, 221 | "bulb1": 58953, 222 | "rocket1": 59663, 223 | "select1": 58954, 224 | "apple1": 59020, 225 | "apple-o": 59092, 226 | "android1": 59704, 227 | "android": 59021, 228 | "aliwangwang-o1": 59023, 229 | "aliwangwang": 59022, 230 | "pay-circle1": 59045, 231 | "pay-circle-o1": 59046, 232 | "poweroff": 59093, 233 | "trademark": 58961, 234 | "find": 59099, 235 | "copyright": 59102, 236 | "sound": 59113, 237 | "earth": 59121, 238 | "wifi": 59094, 239 | "sync": 59098, 240 | "login": 58967, 241 | "logout": 58970, 242 | "reload1": 58902, 243 | "message1": 59051, 244 | "shake": 59727, 245 | "API": 59729, 246 | "appstore-o": 59029, 247 | "appstore1": 59030, 248 | "scan1": 59031, 249 | "exception1": 58981, 250 | "contacts": 59120, 251 | "solution1": 58991, 252 | "fork": 59122, 253 | "edit": 59026, 254 | "form": 59798, 255 | "warning": 59799, 256 | "table": 59800, 257 | "profile": 59801, 258 | "dashboard": 59802, 259 | "indent-left": 59814, 260 | "indent-right": 59815, 261 | "menu-unfold": 59820, 262 | "menu-fold": 59821, 263 | "antdesign": 59826, 264 | "alipay-square": 59827, 265 | "codepen-circle": 59828, 266 | "google": 59829, 267 | "amazon": 59830, 268 | "codepen": 59831, 269 | "facebook-square": 59832, 270 | "dropbox": 59833, 271 | "googleplus": 59834, 272 | "linkedin-square": 59835, 273 | "medium-monogram": 59836, 274 | "gitlab": 59837, 275 | "medium-wordmark": 59838, 276 | "QQ": 59839, 277 | "skype": 59840, 278 | "taobao-square": 59841, 279 | "alipay-circle": 59842, 280 | "youtube": 59843, 281 | "wechat": 59844, 282 | "twitter": 59845, 283 | "weibo": 59846, 284 | "HTML": 59847, 285 | "taobao-circle": 59123, 286 | "weibo-circle": 59124, 287 | "weibo-square": 59125, 288 | "CodeSandbox": 59860, 289 | "aliyun": 59892, 290 | "zhihu": 59139, 291 | "behance": 59143, 292 | "dribbble": 59145, 293 | "dribbble-square": 59146, 294 | "behance-square": 59144, 295 | "file-markdown": 59140, 296 | "instagram": 59147, 297 | "yuque": 59148, 298 | "slack": 59141, 299 | "slack-square": 59142 300 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_entypo.json: -------------------------------------------------------------------------------- 1 | { 2 | "500px": 61696, 3 | "500px-with-circle": 61697, 4 | "add-to-list": 61698, 5 | "add-user": 61699, 6 | "address": 61700, 7 | "adjust": 61701, 8 | "air": 61702, 9 | "aircraft": 61703, 10 | "aircraft-landing": 61704, 11 | "aircraft-take-off": 61705, 12 | "align-bottom": 61706, 13 | "align-horizontal-middle": 61707, 14 | "align-left": 61708, 15 | "align-right": 61709, 16 | "align-top": 61710, 17 | "align-vertical-middle": 61711, 18 | "app-store": 61712, 19 | "archive": 61713, 20 | "area-graph": 61714, 21 | "arrow-bold-down": 61715, 22 | "arrow-bold-left": 61716, 23 | "arrow-bold-right": 61717, 24 | "arrow-bold-up": 61718, 25 | "arrow-down": 61719, 26 | "arrow-left": 61720, 27 | "arrow-long-down": 61721, 28 | "arrow-long-left": 61722, 29 | "arrow-long-right": 61723, 30 | "arrow-long-up": 61724, 31 | "arrow-right": 61725, 32 | "arrow-up": 61726, 33 | "arrow-with-circle-down": 61727, 34 | "arrow-with-circle-left": 61728, 35 | "arrow-with-circle-right": 61729, 36 | "arrow-with-circle-up": 61730, 37 | "attachment": 61731, 38 | "awareness-ribbon": 61732, 39 | "back": 61733, 40 | "back-in-time": 61734, 41 | "baidu": 61735, 42 | "bar-graph": 61736, 43 | "basecamp": 61737, 44 | "battery": 61738, 45 | "beamed-note": 61739, 46 | "behance": 61740, 47 | "bell": 61741, 48 | "blackboard": 61742, 49 | "block": 61743, 50 | "book": 61744, 51 | "bookmark": 61745, 52 | "bookmarks": 61746, 53 | "bowl": 61747, 54 | "box": 61748, 55 | "briefcase": 61749, 56 | "browser": 61750, 57 | "brush": 61751, 58 | "bucket": 61752, 59 | "bug": 61753, 60 | "cake": 61754, 61 | "calculator": 61755, 62 | "calendar": 61756, 63 | "camera": 61757, 64 | "ccw": 61758, 65 | "chat": 61759, 66 | "check": 61760, 67 | "chevron-down": 61761, 68 | "chevron-left": 61762, 69 | "chevron-right": 61763, 70 | "chevron-small-down": 61764, 71 | "chevron-small-left": 61765, 72 | "chevron-small-right": 61766, 73 | "chevron-small-up": 61767, 74 | "chevron-thin-down": 61768, 75 | "chevron-thin-left": 61769, 76 | "chevron-thin-right": 61770, 77 | "chevron-thin-up": 61771, 78 | "chevron-up": 61772, 79 | "chevron-with-circle-down": 61773, 80 | "chevron-with-circle-left": 61774, 81 | "chevron-with-circle-right": 61775, 82 | "chevron-with-circle-up": 61776, 83 | "circle": 61777, 84 | "circle-with-cross": 61778, 85 | "circle-with-minus": 61779, 86 | "circle-with-plus": 61780, 87 | "circular-graph": 61781, 88 | "clapperboard": 61782, 89 | "classic-computer": 61783, 90 | "clipboard": 61784, 91 | "clock": 61785, 92 | "cloud": 61786, 93 | "code": 61787, 94 | "cog": 61788, 95 | "colours": 61789, 96 | "compass": 61790, 97 | "controller-fast-backward": 61791, 98 | "controller-fast-forward": 61792, 99 | "controller-jump-to-start": 61793, 100 | "controller-next": 61794, 101 | "controller-paus": 61795, 102 | "controller-play": 61796, 103 | "controller-record": 61797, 104 | "controller-stop": 61798, 105 | "controller-volume": 61799, 106 | "copy": 61800, 107 | "creative-cloud": 61801, 108 | "creative-commons": 61802, 109 | "creative-commons-attribution": 61803, 110 | "creative-commons-noderivs": 61804, 111 | "creative-commons-noncommercial-eu": 61805, 112 | "creative-commons-noncommercial-us": 61806, 113 | "creative-commons-public-domain": 61807, 114 | "creative-commons-remix": 61808, 115 | "creative-commons-share": 61809, 116 | "creative-commons-sharealike": 61810, 117 | "credit": 61811, 118 | "credit-card": 61812, 119 | "crop": 61813, 120 | "cross": 61814, 121 | "cup": 61815, 122 | "cw": 61816, 123 | "cycle": 61817, 124 | "database": 61818, 125 | "dial-pad": 61819, 126 | "direction": 61820, 127 | "document": 61821, 128 | "document-landscape": 61822, 129 | "documents": 61823, 130 | "dot-single": 61824, 131 | "dots-three-horizontal": 61825, 132 | "dots-three-vertical": 61826, 133 | "dots-two-horizontal": 61827, 134 | "dots-two-vertical": 61828, 135 | "download": 61829, 136 | "dribbble": 61830, 137 | "dribbble-with-circle": 61831, 138 | "drink": 61832, 139 | "drive": 61833, 140 | "drop": 61834, 141 | "dropbox": 61835, 142 | "edit": 61836, 143 | "email": 61837, 144 | "emoji-flirt": 61838, 145 | "emoji-happy": 61839, 146 | "emoji-neutral": 61840, 147 | "emoji-sad": 61841, 148 | "erase": 61842, 149 | "eraser": 61843, 150 | "evernote": 61844, 151 | "export": 61845, 152 | "eye": 61846, 153 | "eye-with-line": 61847, 154 | "facebook": 61848, 155 | "facebook-with-circle": 61849, 156 | "feather": 61850, 157 | "fingerprint": 61851, 158 | "flag": 61852, 159 | "flash": 61853, 160 | "flashlight": 61854, 161 | "flat-brush": 61855, 162 | "flattr": 61856, 163 | "flickr": 61857, 164 | "flickr-with-circle": 61858, 165 | "flow-branch": 61859, 166 | "flow-cascade": 61860, 167 | "flow-line": 61861, 168 | "flow-parallel": 61862, 169 | "flow-tree": 61863, 170 | "flower": 61864, 171 | "folder": 61865, 172 | "folder-images": 61866, 173 | "folder-music": 61867, 174 | "folder-video": 61868, 175 | "forward": 61869, 176 | "foursquare": 61870, 177 | "funnel": 61871, 178 | "game-controller": 61872, 179 | "gauge": 61873, 180 | "github": 61874, 181 | "github-with-circle": 61875, 182 | "globe": 61876, 183 | "google-": 61877, 184 | "google--with-circle": 61878, 185 | "google-drive": 61879, 186 | "google-hangouts": 61880, 187 | "google-play": 61881, 188 | "graduation-cap": 61882, 189 | "grid": 61883, 190 | "grooveshark": 61884, 191 | "hair-cross": 61885, 192 | "hand": 61886, 193 | "heart": 61887, 194 | "heart-outlined": 61888, 195 | "help": 61889, 196 | "help-with-circle": 61890, 197 | "home": 61891, 198 | "hour-glass": 61892, 199 | "houzz": 61893, 200 | "icloud": 61894, 201 | "image": 61895, 202 | "image-inverted": 61896, 203 | "images": 61897, 204 | "inbox": 61898, 205 | "infinity": 61899, 206 | "info": 61900, 207 | "info-with-circle": 61901, 208 | "instagram": 61902, 209 | "instagram-with-circle": 61903, 210 | "install": 61904, 211 | "key": 61905, 212 | "keyboard": 61906, 213 | "lab-flask": 61907, 214 | "landline": 61908, 215 | "language": 61909, 216 | "laptop": 61910, 217 | "lastfm": 61911, 218 | "lastfm-with-circle": 61912, 219 | "layers": 61913, 220 | "leaf": 61914, 221 | "level-down": 61915, 222 | "level-up": 61916, 223 | "lifebuoy": 61917, 224 | "light-bulb": 61918, 225 | "light-down": 61919, 226 | "light-up": 61920, 227 | "line-graph": 61921, 228 | "link": 61922, 229 | "linkedin": 61923, 230 | "linkedin-with-circle": 61924, 231 | "list": 61925, 232 | "location": 61926, 233 | "location-pin": 61927, 234 | "lock": 61928, 235 | "lock-open": 61929, 236 | "log-out": 61930, 237 | "login": 61931, 238 | "loop": 61932, 239 | "magnet": 61933, 240 | "magnifying-glass": 61934, 241 | "mail": 61935, 242 | "mail-with-circle": 61936, 243 | "man": 61937, 244 | "map": 61938, 245 | "mask": 61939, 246 | "medal": 61940, 247 | "medium": 61941, 248 | "medium-with-circle": 61942, 249 | "megaphone": 61943, 250 | "menu": 61944, 251 | "merge": 61945, 252 | "message": 61946, 253 | "mic": 61947, 254 | "minus": 61948, 255 | "mixi": 61949, 256 | "mobile": 61950, 257 | "modern-mic": 61951, 258 | "moon": 61952, 259 | "mouse": 61953, 260 | "mouse-pointer": 61954, 261 | "music": 61955, 262 | "network": 61956, 263 | "new": 61957, 264 | "new-message": 61958, 265 | "news": 61959, 266 | "newsletter": 61960, 267 | "note": 61961, 268 | "notification": 61962, 269 | "notifications-off": 61963, 270 | "old-mobile": 61964, 271 | "old-phone": 61965, 272 | "onedrive": 61966, 273 | "open-book": 61967, 274 | "palette": 61968, 275 | "paper-plane": 61969, 276 | "paypal": 61970, 277 | "pencil": 61971, 278 | "phone": 61972, 279 | "picasa": 61973, 280 | "pie-chart": 61974, 281 | "pin": 61975, 282 | "pinterest": 61976, 283 | "pinterest-with-circle": 61977, 284 | "plus": 61978, 285 | "popup": 61979, 286 | "power-plug": 61980, 287 | "price-ribbon": 61981, 288 | "price-tag": 61982, 289 | "print": 61983, 290 | "progress-empty": 61984, 291 | "progress-full": 61985, 292 | "progress-one": 61986, 293 | "progress-two": 61987, 294 | "publish": 61988, 295 | "qq": 61989, 296 | "qq-with-circle": 61990, 297 | "quote": 61991, 298 | "radio": 61992, 299 | "raft": 61993, 300 | "raft-with-circle": 61994, 301 | "rainbow": 61995, 302 | "rdio": 61996, 303 | "rdio-with-circle": 61997, 304 | "remove-user": 61998, 305 | "renren": 61999, 306 | "reply": 62000, 307 | "reply-all": 62001, 308 | "resize-100-": 62002, 309 | "resize-full-screen": 62003, 310 | "retweet": 62004, 311 | "rocket": 62005, 312 | "round-brush": 62006, 313 | "rss": 62007, 314 | "ruler": 62008, 315 | "save": 62009, 316 | "scissors": 62010, 317 | "scribd": 62011, 318 | "select-arrows": 62012, 319 | "share": 62013, 320 | "share-alternative": 62014, 321 | "shareable": 62015, 322 | "shield": 62016, 323 | "shop": 62017, 324 | "shopping-bag": 62018, 325 | "shopping-basket": 62019, 326 | "shopping-cart": 62020, 327 | "shuffle": 62021, 328 | "signal": 62022, 329 | "sina-weibo": 62023, 330 | "skype": 62024, 331 | "skype-with-circle": 62025, 332 | "slideshare": 62026, 333 | "smashing": 62027, 334 | "sound": 62028, 335 | "sound-mix": 62029, 336 | "sound-mute": 62030, 337 | "soundcloud": 62031, 338 | "sports-club": 62032, 339 | "spotify": 62033, 340 | "spotify-with-circle": 62034, 341 | "spreadsheet": 62035, 342 | "squared-cross": 62036, 343 | "squared-minus": 62037, 344 | "squared-plus": 62038, 345 | "star": 62039, 346 | "star-outlined": 62040, 347 | "stopwatch": 62041, 348 | "stumbleupon": 62042, 349 | "stumbleupon-with-circle": 62043, 350 | "suitcase": 62044, 351 | "swap": 62045, 352 | "swarm": 62046, 353 | "sweden": 62047, 354 | "switch": 62048, 355 | "tablet": 62049, 356 | "tablet-mobile-combo": 62050, 357 | "tag": 62051, 358 | "text": 62052, 359 | "text-document": 62053, 360 | "text-document-inverted": 62054, 361 | "thermometer": 62055, 362 | "thumbs-down": 62056, 363 | "thumbs-up": 62057, 364 | "thunder-cloud": 62058, 365 | "ticket": 62059, 366 | "time-slot": 62060, 367 | "tools": 62061, 368 | "traffic-cone": 62062, 369 | "trash": 62063, 370 | "tree": 62064, 371 | "triangle-down": 62065, 372 | "triangle-left": 62066, 373 | "triangle-right": 62067, 374 | "triangle-up": 62068, 375 | "tripadvisor": 62069, 376 | "trophy": 62070, 377 | "tumblr": 62071, 378 | "tumblr-with-circle": 62072, 379 | "tv": 62073, 380 | "twitter": 62074, 381 | "twitter-with-circle": 62075, 382 | "typing": 62076, 383 | "uninstall": 62077, 384 | "unread": 62078, 385 | "untag": 62079, 386 | "upload": 62080, 387 | "upload-to-cloud": 62081, 388 | "user": 62082, 389 | "users": 62083, 390 | "v-card": 62084, 391 | "video": 62085, 392 | "video-camera": 62086, 393 | "vimeo": 62087, 394 | "vimeo-with-circle": 62088, 395 | "vine": 62089, 396 | "vine-with-circle": 62090, 397 | "vinyl": 62091, 398 | "vk": 62092, 399 | "vk-alternitive": 62093, 400 | "vk-with-circle": 62094, 401 | "voicemail": 62095, 402 | "wallet": 62096, 403 | "warning": 62097, 404 | "water": 62098, 405 | "windows-store": 62099, 406 | "xing": 62100, 407 | "xing-with-circle": 62101, 408 | "yelp": 62102, 409 | "youko": 62103, 410 | "youko-with-circle": 62104, 411 | "youtube": 62105, 412 | "youtube-with-circle": 62106 413 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_evilicons.json: -------------------------------------------------------------------------------- 1 | { 2 | "archive": 61696, 3 | "arrow-down": 61697, 4 | "arrow-left": 61698, 5 | "arrow-right": 61699, 6 | "arrow-up": 61700, 7 | "bell": 61701, 8 | "calendar": 61702, 9 | "camera": 61703, 10 | "cart": 61704, 11 | "chart": 61705, 12 | "check": 61706, 13 | "chevron-down": 61707, 14 | "chevron-left": 61708, 15 | "chevron-right": 61709, 16 | "chevron-up": 61710, 17 | "clock": 61711, 18 | "close": 61712, 19 | "close-o": 61713, 20 | "comment": 61714, 21 | "credit-card": 61715, 22 | "envelope": 61716, 23 | "exclamation": 61717, 24 | "external-link": 61718, 25 | "eye": 61719, 26 | "gear": 61720, 27 | "heart": 61721, 28 | "image": 61722, 29 | "like": 61723, 30 | "link": 61724, 31 | "location": 61725, 32 | "lock": 61726, 33 | "minus": 61727, 34 | "navicon": 61728, 35 | "paperclip": 61729, 36 | "pencil": 61730, 37 | "play": 61731, 38 | "plus": 61732, 39 | "pointer": 61733, 40 | "question": 61734, 41 | "redo": 61735, 42 | "refresh": 61736, 43 | "retweet": 61737, 44 | "sc-facebook": 61738, 45 | "sc-github": 61739, 46 | "sc-google-plus": 61740, 47 | "sc-instagram": 61741, 48 | "sc-linkedin": 61742, 49 | "sc-odnoklassniki": 61743, 50 | "sc-pinterest": 61744, 51 | "sc-skype": 61745, 52 | "sc-soundcloud": 61746, 53 | "sc-telegram": 61747, 54 | "sc-tumblr": 61748, 55 | "sc-twitter": 61749, 56 | "sc-vimeo": 61750, 57 | "sc-vk": 61751, 58 | "sc-youtube": 61752, 59 | "search": 61753, 60 | "share-apple": 61754, 61 | "share-google": 61755, 62 | "spinner": 61756, 63 | "spinner-2": 61757, 64 | "spinner-3": 61758, 65 | "star": 61759, 66 | "tag": 61760, 67 | "trash": 61761, 68 | "trophy": 61762, 69 | "undo": 61763, 70 | "unlock": 61764, 71 | "user": 61765 72 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json: -------------------------------------------------------------------------------- 1 | { 2 | "activity": 61696, 3 | "airplay": 61697, 4 | "alert-circle": 61698, 5 | "alert-octagon": 61699, 6 | "alert-triangle": 61700, 7 | "align-center": 61701, 8 | "align-justify": 61702, 9 | "align-left": 61703, 10 | "align-right": 61704, 11 | "anchor": 61705, 12 | "aperture": 61706, 13 | "archive": 61707, 14 | "arrow-down": 61708, 15 | "arrow-down-circle": 61709, 16 | "arrow-down-left": 61710, 17 | "arrow-down-right": 61711, 18 | "arrow-left": 61712, 19 | "arrow-left-circle": 61713, 20 | "arrow-right": 61714, 21 | "arrow-right-circle": 61715, 22 | "arrow-up": 61716, 23 | "arrow-up-circle": 61717, 24 | "arrow-up-left": 61718, 25 | "arrow-up-right": 61719, 26 | "at-sign": 61720, 27 | "award": 61721, 28 | "bar-chart": 61722, 29 | "bar-chart-2": 61723, 30 | "battery": 61724, 31 | "battery-charging": 61725, 32 | "bell": 61726, 33 | "bell-off": 61727, 34 | "bluetooth": 61728, 35 | "bold": 61729, 36 | "book": 61730, 37 | "book-open": 61731, 38 | "bookmark": 61732, 39 | "box": 61733, 40 | "briefcase": 61734, 41 | "calendar": 61735, 42 | "camera": 61736, 43 | "camera-off": 61737, 44 | "cast": 61738, 45 | "check": 61739, 46 | "check-circle": 61740, 47 | "check-square": 61741, 48 | "chevron-down": 61742, 49 | "chevron-left": 61743, 50 | "chevron-right": 61744, 51 | "chevron-up": 61745, 52 | "chevrons-down": 61746, 53 | "chevrons-left": 61747, 54 | "chevrons-right": 61748, 55 | "chevrons-up": 61749, 56 | "chrome": 61750, 57 | "circle": 61751, 58 | "clipboard": 61752, 59 | "clock": 61753, 60 | "cloud": 61754, 61 | "cloud-drizzle": 61755, 62 | "cloud-lightning": 61756, 63 | "cloud-off": 61757, 64 | "cloud-rain": 61758, 65 | "cloud-snow": 61759, 66 | "code": 61760, 67 | "codepen": 61761, 68 | "codesandbox": 61972, 69 | "coffee": 61762, 70 | "columns": 61973, 71 | "command": 61763, 72 | "compass": 61764, 73 | "copy": 61765, 74 | "corner-down-left": 61766, 75 | "corner-down-right": 61767, 76 | "corner-left-down": 61768, 77 | "corner-left-up": 61769, 78 | "corner-right-down": 61770, 79 | "corner-right-up": 61771, 80 | "corner-up-left": 61772, 81 | "corner-up-right": 61773, 82 | "cpu": 61774, 83 | "credit-card": 61775, 84 | "crop": 61776, 85 | "crosshair": 61777, 86 | "database": 61778, 87 | "delete": 61779, 88 | "disc": 61780, 89 | "dollar-sign": 61781, 90 | "download": 61782, 91 | "download-cloud": 61783, 92 | "droplet": 61784, 93 | "edit": 61785, 94 | "edit-2": 61786, 95 | "edit-3": 61787, 96 | "external-link": 61788, 97 | "eye": 61789, 98 | "eye-off": 61790, 99 | "facebook": 61791, 100 | "fast-forward": 61792, 101 | "feather": 61793, 102 | "figma": 61970, 103 | "file": 61794, 104 | "file-minus": 61795, 105 | "file-plus": 61796, 106 | "file-text": 61797, 107 | "film": 61798, 108 | "filter": 61799, 109 | "flag": 61800, 110 | "folder": 61801, 111 | "folder-minus": 61802, 112 | "folder-plus": 61803, 113 | "frown": 61804, 114 | "gift": 61805, 115 | "git-branch": 61806, 116 | "git-commit": 61807, 117 | "git-merge": 61808, 118 | "git-pull-request": 61809, 119 | "github": 61810, 120 | "gitlab": 61811, 121 | "globe": 61812, 122 | "grid": 61813, 123 | "hard-drive": 61814, 124 | "hash": 61815, 125 | "headphones": 61816, 126 | "heart": 61817, 127 | "help-circle": 61818, 128 | "hexagon": 61974, 129 | "home": 61819, 130 | "image": 61820, 131 | "inbox": 61821, 132 | "info": 61822, 133 | "instagram": 61823, 134 | "italic": 61824, 135 | "key": 61967, 136 | "layers": 61825, 137 | "layout": 61826, 138 | "life-buoy": 61827, 139 | "link": 61828, 140 | "link-2": 61829, 141 | "linkedin": 61830, 142 | "list": 61831, 143 | "loader": 61832, 144 | "lock": 61833, 145 | "log-in": 61834, 146 | "log-out": 61835, 147 | "mail": 61836, 148 | "map": 61837, 149 | "map-pin": 61838, 150 | "maximize": 61839, 151 | "maximize-2": 61840, 152 | "meh": 61841, 153 | "menu": 61842, 154 | "message-circle": 61843, 155 | "message-square": 61844, 156 | "mic": 61845, 157 | "mic-off": 61846, 158 | "minimize": 61847, 159 | "minimize-2": 61848, 160 | "minus": 61849, 161 | "minus-circle": 61850, 162 | "minus-square": 61851, 163 | "monitor": 61852, 164 | "moon": 61853, 165 | "more-horizontal": 61854, 166 | "more-vertical": 61855, 167 | "mouse-pointer": 61968, 168 | "move": 61856, 169 | "music": 61857, 170 | "navigation": 61858, 171 | "navigation-2": 61859, 172 | "octagon": 61860, 173 | "package": 61861, 174 | "paperclip": 61862, 175 | "pause": 61863, 176 | "pause-circle": 61864, 177 | "pen-tool": 61969, 178 | "percent": 61865, 179 | "phone": 61866, 180 | "phone-call": 61867, 181 | "phone-forwarded": 61868, 182 | "phone-incoming": 61869, 183 | "phone-missed": 61870, 184 | "phone-off": 61871, 185 | "phone-outgoing": 61872, 186 | "pie-chart": 61873, 187 | "play": 61874, 188 | "play-circle": 61875, 189 | "plus": 61876, 190 | "plus-circle": 61877, 191 | "plus-square": 61878, 192 | "pocket": 61879, 193 | "power": 61880, 194 | "printer": 61881, 195 | "radio": 61882, 196 | "refresh-ccw": 61883, 197 | "refresh-cw": 61884, 198 | "repeat": 61885, 199 | "rewind": 61886, 200 | "rotate-ccw": 61887, 201 | "rotate-cw": 61888, 202 | "rss": 61889, 203 | "save": 61890, 204 | "scissors": 61891, 205 | "search": 61892, 206 | "send": 61893, 207 | "server": 61894, 208 | "settings": 61895, 209 | "share": 61896, 210 | "share-2": 61897, 211 | "shield": 61898, 212 | "shield-off": 61899, 213 | "shopping-bag": 61900, 214 | "shopping-cart": 61901, 215 | "shuffle": 61902, 216 | "sidebar": 61903, 217 | "skip-back": 61904, 218 | "skip-forward": 61905, 219 | "slack": 61906, 220 | "slash": 61907, 221 | "sliders": 61908, 222 | "smartphone": 61909, 223 | "smile": 61910, 224 | "speaker": 61911, 225 | "square": 61912, 226 | "star": 61913, 227 | "stop-circle": 61914, 228 | "sun": 61915, 229 | "sunrise": 61916, 230 | "sunset": 61917, 231 | "tablet": 61975, 232 | "tag": 61919, 233 | "target": 61920, 234 | "terminal": 61921, 235 | "thermometer": 61922, 236 | "thumbs-down": 61923, 237 | "thumbs-up": 61924, 238 | "toggle-left": 61925, 239 | "toggle-right": 61926, 240 | "trash": 61927, 241 | "trash-2": 61928, 242 | "trello": 61929, 243 | "trending-down": 61930, 244 | "trending-up": 61931, 245 | "triangle": 61932, 246 | "truck": 61933, 247 | "tv": 61934, 248 | "twitter": 61935, 249 | "type": 61936, 250 | "umbrella": 61937, 251 | "underline": 61938, 252 | "unlock": 61939, 253 | "upload": 61940, 254 | "upload-cloud": 61941, 255 | "user": 61942, 256 | "user-check": 61943, 257 | "user-minus": 61944, 258 | "user-plus": 61945, 259 | "user-x": 61946, 260 | "users": 61947, 261 | "video": 61948, 262 | "video-off": 61949, 263 | "voicemail": 61950, 264 | "volume": 61951, 265 | "volume-1": 61952, 266 | "volume-2": 61953, 267 | "volume-x": 61954, 268 | "watch": 61955, 269 | "wifi": 61956, 270 | "wifi-off": 61957, 271 | "wind": 61958, 272 | "x": 61959, 273 | "x-circle": 61960, 274 | "x-octagon": 61971, 275 | "x-square": 61961, 276 | "youtube": 61962, 277 | "zap": 61963, 278 | "zap-off": 61964, 279 | "zoom-in": 61965, 280 | "zoom-out": 61966 281 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome.json: -------------------------------------------------------------------------------- 1 | { 2 | "glass": 61440, 3 | "music": 61441, 4 | "search": 61442, 5 | "envelope-o": 61443, 6 | "heart": 61444, 7 | "star": 61445, 8 | "star-o": 61446, 9 | "user": 61447, 10 | "film": 61448, 11 | "th-large": 61449, 12 | "th": 61450, 13 | "th-list": 61451, 14 | "check": 61452, 15 | "remove": 61453, 16 | "close": 61453, 17 | "times": 61453, 18 | "search-plus": 61454, 19 | "search-minus": 61456, 20 | "power-off": 61457, 21 | "signal": 61458, 22 | "gear": 61459, 23 | "cog": 61459, 24 | "trash-o": 61460, 25 | "home": 61461, 26 | "file-o": 61462, 27 | "clock-o": 61463, 28 | "road": 61464, 29 | "download": 61465, 30 | "arrow-circle-o-down": 61466, 31 | "arrow-circle-o-up": 61467, 32 | "inbox": 61468, 33 | "play-circle-o": 61469, 34 | "rotate-right": 61470, 35 | "repeat": 61470, 36 | "refresh": 61473, 37 | "list-alt": 61474, 38 | "lock": 61475, 39 | "flag": 61476, 40 | "headphones": 61477, 41 | "volume-off": 61478, 42 | "volume-down": 61479, 43 | "volume-up": 61480, 44 | "qrcode": 61481, 45 | "barcode": 61482, 46 | "tag": 61483, 47 | "tags": 61484, 48 | "book": 61485, 49 | "bookmark": 61486, 50 | "print": 61487, 51 | "camera": 61488, 52 | "font": 61489, 53 | "bold": 61490, 54 | "italic": 61491, 55 | "text-height": 61492, 56 | "text-width": 61493, 57 | "align-left": 61494, 58 | "align-center": 61495, 59 | "align-right": 61496, 60 | "align-justify": 61497, 61 | "list": 61498, 62 | "dedent": 61499, 63 | "outdent": 61499, 64 | "indent": 61500, 65 | "video-camera": 61501, 66 | "photo": 61502, 67 | "image": 61502, 68 | "picture-o": 61502, 69 | "pencil": 61504, 70 | "map-marker": 61505, 71 | "adjust": 61506, 72 | "tint": 61507, 73 | "edit": 61508, 74 | "pencil-square-o": 61508, 75 | "share-square-o": 61509, 76 | "check-square-o": 61510, 77 | "arrows": 61511, 78 | "step-backward": 61512, 79 | "fast-backward": 61513, 80 | "backward": 61514, 81 | "play": 61515, 82 | "pause": 61516, 83 | "stop": 61517, 84 | "forward": 61518, 85 | "fast-forward": 61520, 86 | "step-forward": 61521, 87 | "eject": 61522, 88 | "chevron-left": 61523, 89 | "chevron-right": 61524, 90 | "plus-circle": 61525, 91 | "minus-circle": 61526, 92 | "times-circle": 61527, 93 | "check-circle": 61528, 94 | "question-circle": 61529, 95 | "info-circle": 61530, 96 | "crosshairs": 61531, 97 | "times-circle-o": 61532, 98 | "check-circle-o": 61533, 99 | "ban": 61534, 100 | "arrow-left": 61536, 101 | "arrow-right": 61537, 102 | "arrow-up": 61538, 103 | "arrow-down": 61539, 104 | "mail-forward": 61540, 105 | "share": 61540, 106 | "expand": 61541, 107 | "compress": 61542, 108 | "plus": 61543, 109 | "minus": 61544, 110 | "asterisk": 61545, 111 | "exclamation-circle": 61546, 112 | "gift": 61547, 113 | "leaf": 61548, 114 | "fire": 61549, 115 | "eye": 61550, 116 | "eye-slash": 61552, 117 | "warning": 61553, 118 | "exclamation-triangle": 61553, 119 | "plane": 61554, 120 | "calendar": 61555, 121 | "random": 61556, 122 | "comment": 61557, 123 | "magnet": 61558, 124 | "chevron-up": 61559, 125 | "chevron-down": 61560, 126 | "retweet": 61561, 127 | "shopping-cart": 61562, 128 | "folder": 61563, 129 | "folder-open": 61564, 130 | "arrows-v": 61565, 131 | "arrows-h": 61566, 132 | "bar-chart-o": 61568, 133 | "bar-chart": 61568, 134 | "twitter-square": 61569, 135 | "facebook-square": 61570, 136 | "camera-retro": 61571, 137 | "key": 61572, 138 | "gears": 61573, 139 | "cogs": 61573, 140 | "comments": 61574, 141 | "thumbs-o-up": 61575, 142 | "thumbs-o-down": 61576, 143 | "star-half": 61577, 144 | "heart-o": 61578, 145 | "sign-out": 61579, 146 | "linkedin-square": 61580, 147 | "thumb-tack": 61581, 148 | "external-link": 61582, 149 | "sign-in": 61584, 150 | "trophy": 61585, 151 | "github-square": 61586, 152 | "upload": 61587, 153 | "lemon-o": 61588, 154 | "phone": 61589, 155 | "square-o": 61590, 156 | "bookmark-o": 61591, 157 | "phone-square": 61592, 158 | "twitter": 61593, 159 | "facebook-f": 61594, 160 | "facebook": 61594, 161 | "github": 61595, 162 | "unlock": 61596, 163 | "credit-card": 61597, 164 | "feed": 61598, 165 | "rss": 61598, 166 | "hdd-o": 61600, 167 | "bullhorn": 61601, 168 | "bell": 61683, 169 | "certificate": 61603, 170 | "hand-o-right": 61604, 171 | "hand-o-left": 61605, 172 | "hand-o-up": 61606, 173 | "hand-o-down": 61607, 174 | "arrow-circle-left": 61608, 175 | "arrow-circle-right": 61609, 176 | "arrow-circle-up": 61610, 177 | "arrow-circle-down": 61611, 178 | "globe": 61612, 179 | "wrench": 61613, 180 | "tasks": 61614, 181 | "filter": 61616, 182 | "briefcase": 61617, 183 | "arrows-alt": 61618, 184 | "group": 61632, 185 | "users": 61632, 186 | "chain": 61633, 187 | "link": 61633, 188 | "cloud": 61634, 189 | "flask": 61635, 190 | "cut": 61636, 191 | "scissors": 61636, 192 | "copy": 61637, 193 | "files-o": 61637, 194 | "paperclip": 61638, 195 | "save": 61639, 196 | "floppy-o": 61639, 197 | "square": 61640, 198 | "navicon": 61641, 199 | "reorder": 61641, 200 | "bars": 61641, 201 | "list-ul": 61642, 202 | "list-ol": 61643, 203 | "strikethrough": 61644, 204 | "underline": 61645, 205 | "table": 61646, 206 | "magic": 61648, 207 | "truck": 61649, 208 | "pinterest": 61650, 209 | "pinterest-square": 61651, 210 | "google-plus-square": 61652, 211 | "google-plus": 61653, 212 | "money": 61654, 213 | "caret-down": 61655, 214 | "caret-up": 61656, 215 | "caret-left": 61657, 216 | "caret-right": 61658, 217 | "columns": 61659, 218 | "unsorted": 61660, 219 | "sort": 61660, 220 | "sort-down": 61661, 221 | "sort-desc": 61661, 222 | "sort-up": 61662, 223 | "sort-asc": 61662, 224 | "envelope": 61664, 225 | "linkedin": 61665, 226 | "rotate-left": 61666, 227 | "undo": 61666, 228 | "legal": 61667, 229 | "gavel": 61667, 230 | "dashboard": 61668, 231 | "tachometer": 61668, 232 | "comment-o": 61669, 233 | "comments-o": 61670, 234 | "flash": 61671, 235 | "bolt": 61671, 236 | "sitemap": 61672, 237 | "umbrella": 61673, 238 | "paste": 61674, 239 | "clipboard": 61674, 240 | "lightbulb-o": 61675, 241 | "exchange": 61676, 242 | "cloud-download": 61677, 243 | "cloud-upload": 61678, 244 | "user-md": 61680, 245 | "stethoscope": 61681, 246 | "suitcase": 61682, 247 | "bell-o": 61602, 248 | "coffee": 61684, 249 | "cutlery": 61685, 250 | "file-text-o": 61686, 251 | "building-o": 61687, 252 | "hospital-o": 61688, 253 | "ambulance": 61689, 254 | "medkit": 61690, 255 | "fighter-jet": 61691, 256 | "beer": 61692, 257 | "h-square": 61693, 258 | "plus-square": 61694, 259 | "angle-double-left": 61696, 260 | "angle-double-right": 61697, 261 | "angle-double-up": 61698, 262 | "angle-double-down": 61699, 263 | "angle-left": 61700, 264 | "angle-right": 61701, 265 | "angle-up": 61702, 266 | "angle-down": 61703, 267 | "desktop": 61704, 268 | "laptop": 61705, 269 | "tablet": 61706, 270 | "mobile-phone": 61707, 271 | "mobile": 61707, 272 | "circle-o": 61708, 273 | "quote-left": 61709, 274 | "quote-right": 61710, 275 | "spinner": 61712, 276 | "circle": 61713, 277 | "mail-reply": 61714, 278 | "reply": 61714, 279 | "github-alt": 61715, 280 | "folder-o": 61716, 281 | "folder-open-o": 61717, 282 | "smile-o": 61720, 283 | "frown-o": 61721, 284 | "meh-o": 61722, 285 | "gamepad": 61723, 286 | "keyboard-o": 61724, 287 | "flag-o": 61725, 288 | "flag-checkered": 61726, 289 | "terminal": 61728, 290 | "code": 61729, 291 | "mail-reply-all": 61730, 292 | "reply-all": 61730, 293 | "star-half-empty": 61731, 294 | "star-half-full": 61731, 295 | "star-half-o": 61731, 296 | "location-arrow": 61732, 297 | "crop": 61733, 298 | "code-fork": 61734, 299 | "unlink": 61735, 300 | "chain-broken": 61735, 301 | "question": 61736, 302 | "info": 61737, 303 | "exclamation": 61738, 304 | "superscript": 61739, 305 | "subscript": 61740, 306 | "eraser": 61741, 307 | "puzzle-piece": 61742, 308 | "microphone": 61744, 309 | "microphone-slash": 61745, 310 | "shield": 61746, 311 | "calendar-o": 61747, 312 | "fire-extinguisher": 61748, 313 | "rocket": 61749, 314 | "maxcdn": 61750, 315 | "chevron-circle-left": 61751, 316 | "chevron-circle-right": 61752, 317 | "chevron-circle-up": 61753, 318 | "chevron-circle-down": 61754, 319 | "html5": 61755, 320 | "css3": 61756, 321 | "anchor": 61757, 322 | "unlock-alt": 61758, 323 | "bullseye": 61760, 324 | "ellipsis-h": 61761, 325 | "ellipsis-v": 61762, 326 | "rss-square": 61763, 327 | "play-circle": 61764, 328 | "ticket": 61765, 329 | "minus-square": 61766, 330 | "minus-square-o": 61767, 331 | "level-up": 61768, 332 | "level-down": 61769, 333 | "check-square": 61770, 334 | "pencil-square": 61771, 335 | "external-link-square": 61772, 336 | "share-square": 61773, 337 | "compass": 61774, 338 | "toggle-down": 61776, 339 | "caret-square-o-down": 61776, 340 | "toggle-up": 61777, 341 | "caret-square-o-up": 61777, 342 | "toggle-right": 61778, 343 | "caret-square-o-right": 61778, 344 | "euro": 61779, 345 | "eur": 61779, 346 | "gbp": 61780, 347 | "dollar": 61781, 348 | "usd": 61781, 349 | "rupee": 61782, 350 | "inr": 61782, 351 | "cny": 61783, 352 | "rmb": 61783, 353 | "yen": 61783, 354 | "jpy": 61783, 355 | "ruble": 61784, 356 | "rouble": 61784, 357 | "rub": 61784, 358 | "won": 61785, 359 | "krw": 61785, 360 | "bitcoin": 61786, 361 | "btc": 61786, 362 | "file": 61787, 363 | "file-text": 61788, 364 | "sort-alpha-asc": 61789, 365 | "sort-alpha-desc": 61790, 366 | "sort-amount-asc": 61792, 367 | "sort-amount-desc": 61793, 368 | "sort-numeric-asc": 61794, 369 | "sort-numeric-desc": 61795, 370 | "thumbs-up": 61796, 371 | "thumbs-down": 61797, 372 | "youtube-square": 61798, 373 | "youtube": 61799, 374 | "xing": 61800, 375 | "xing-square": 61801, 376 | "youtube-play": 61802, 377 | "dropbox": 61803, 378 | "stack-overflow": 61804, 379 | "instagram": 61805, 380 | "flickr": 61806, 381 | "adn": 61808, 382 | "bitbucket": 61809, 383 | "bitbucket-square": 61810, 384 | "tumblr": 61811, 385 | "tumblr-square": 61812, 386 | "long-arrow-down": 61813, 387 | "long-arrow-up": 61814, 388 | "long-arrow-left": 61815, 389 | "long-arrow-right": 61816, 390 | "apple": 61817, 391 | "windows": 61818, 392 | "android": 61819, 393 | "linux": 61820, 394 | "dribbble": 61821, 395 | "skype": 61822, 396 | "foursquare": 61824, 397 | "trello": 61825, 398 | "female": 61826, 399 | "male": 61827, 400 | "gittip": 61828, 401 | "gratipay": 61828, 402 | "sun-o": 61829, 403 | "moon-o": 61830, 404 | "archive": 61831, 405 | "bug": 61832, 406 | "vk": 61833, 407 | "weibo": 61834, 408 | "renren": 61835, 409 | "pagelines": 61836, 410 | "stack-exchange": 61837, 411 | "arrow-circle-o-right": 61838, 412 | "arrow-circle-o-left": 61840, 413 | "toggle-left": 61841, 414 | "caret-square-o-left": 61841, 415 | "dot-circle-o": 61842, 416 | "wheelchair": 61843, 417 | "vimeo-square": 61844, 418 | "turkish-lira": 61845, 419 | "try": 61845, 420 | "plus-square-o": 61846, 421 | "space-shuttle": 61847, 422 | "slack": 61848, 423 | "envelope-square": 61849, 424 | "wordpress": 61850, 425 | "openid": 61851, 426 | "institution": 61852, 427 | "bank": 61852, 428 | "university": 61852, 429 | "mortar-board": 61853, 430 | "graduation-cap": 61853, 431 | "yahoo": 61854, 432 | "google": 61856, 433 | "reddit": 61857, 434 | "reddit-square": 61858, 435 | "stumbleupon-circle": 61859, 436 | "stumbleupon": 61860, 437 | "delicious": 61861, 438 | "digg": 61862, 439 | "pied-piper-pp": 61863, 440 | "pied-piper-alt": 61864, 441 | "drupal": 61865, 442 | "joomla": 61866, 443 | "language": 61867, 444 | "fax": 61868, 445 | "building": 61869, 446 | "child": 61870, 447 | "paw": 61872, 448 | "spoon": 61873, 449 | "cube": 61874, 450 | "cubes": 61875, 451 | "behance": 61876, 452 | "behance-square": 61877, 453 | "steam": 61878, 454 | "steam-square": 61879, 455 | "recycle": 61880, 456 | "automobile": 61881, 457 | "car": 61881, 458 | "cab": 61882, 459 | "taxi": 61882, 460 | "tree": 61883, 461 | "spotify": 61884, 462 | "deviantart": 61885, 463 | "soundcloud": 61886, 464 | "database": 61888, 465 | "file-pdf-o": 61889, 466 | "file-word-o": 61890, 467 | "file-excel-o": 61891, 468 | "file-powerpoint-o": 61892, 469 | "file-photo-o": 61893, 470 | "file-picture-o": 61893, 471 | "file-image-o": 61893, 472 | "file-zip-o": 61894, 473 | "file-archive-o": 61894, 474 | "file-sound-o": 61895, 475 | "file-audio-o": 61895, 476 | "file-movie-o": 61896, 477 | "file-video-o": 61896, 478 | "file-code-o": 61897, 479 | "vine": 61898, 480 | "codepen": 61899, 481 | "jsfiddle": 61900, 482 | "life-bouy": 61901, 483 | "life-buoy": 61901, 484 | "life-saver": 61901, 485 | "support": 61901, 486 | "life-ring": 61901, 487 | "circle-o-notch": 61902, 488 | "ra": 61904, 489 | "resistance": 61904, 490 | "rebel": 61904, 491 | "ge": 61905, 492 | "empire": 61905, 493 | "git-square": 61906, 494 | "git": 61907, 495 | "y-combinator-square": 61908, 496 | "yc-square": 61908, 497 | "hacker-news": 61908, 498 | "tencent-weibo": 61909, 499 | "qq": 61910, 500 | "wechat": 61911, 501 | "weixin": 61911, 502 | "send": 61912, 503 | "paper-plane": 61912, 504 | "send-o": 61913, 505 | "paper-plane-o": 61913, 506 | "history": 61914, 507 | "circle-thin": 61915, 508 | "header": 61916, 509 | "paragraph": 61917, 510 | "sliders": 61918, 511 | "share-alt": 61920, 512 | "share-alt-square": 61921, 513 | "bomb": 61922, 514 | "soccer-ball-o": 61923, 515 | "futbol-o": 61923, 516 | "tty": 61924, 517 | "binoculars": 61925, 518 | "plug": 61926, 519 | "slideshare": 61927, 520 | "twitch": 61928, 521 | "yelp": 61929, 522 | "newspaper-o": 61930, 523 | "wifi": 61931, 524 | "calculator": 61932, 525 | "paypal": 61933, 526 | "google-wallet": 61934, 527 | "cc-visa": 61936, 528 | "cc-mastercard": 61937, 529 | "cc-discover": 61938, 530 | "cc-amex": 61939, 531 | "cc-paypal": 61940, 532 | "cc-stripe": 61941, 533 | "bell-slash": 61942, 534 | "bell-slash-o": 61943, 535 | "trash": 61944, 536 | "copyright": 61945, 537 | "at": 61946, 538 | "eyedropper": 61947, 539 | "paint-brush": 61948, 540 | "birthday-cake": 61949, 541 | "area-chart": 61950, 542 | "pie-chart": 61952, 543 | "line-chart": 61953, 544 | "lastfm": 61954, 545 | "lastfm-square": 61955, 546 | "toggle-off": 61956, 547 | "toggle-on": 61957, 548 | "bicycle": 61958, 549 | "bus": 61959, 550 | "ioxhost": 61960, 551 | "angellist": 61961, 552 | "cc": 61962, 553 | "shekel": 61963, 554 | "sheqel": 61963, 555 | "ils": 61963, 556 | "meanpath": 61964, 557 | "buysellads": 61965, 558 | "connectdevelop": 61966, 559 | "dashcube": 61968, 560 | "forumbee": 61969, 561 | "leanpub": 61970, 562 | "sellsy": 61971, 563 | "shirtsinbulk": 61972, 564 | "simplybuilt": 61973, 565 | "skyatlas": 61974, 566 | "cart-plus": 61975, 567 | "cart-arrow-down": 61976, 568 | "diamond": 61977, 569 | "ship": 61978, 570 | "user-secret": 61979, 571 | "motorcycle": 61980, 572 | "street-view": 61981, 573 | "heartbeat": 61982, 574 | "venus": 61985, 575 | "mars": 61986, 576 | "mercury": 61987, 577 | "intersex": 61988, 578 | "transgender": 61988, 579 | "transgender-alt": 61989, 580 | "venus-double": 61990, 581 | "mars-double": 61991, 582 | "venus-mars": 61992, 583 | "mars-stroke": 61993, 584 | "mars-stroke-v": 61994, 585 | "mars-stroke-h": 61995, 586 | "neuter": 61996, 587 | "genderless": 61997, 588 | "facebook-official": 62000, 589 | "pinterest-p": 62001, 590 | "whatsapp": 62002, 591 | "server": 62003, 592 | "user-plus": 62004, 593 | "user-times": 62005, 594 | "hotel": 62006, 595 | "bed": 62006, 596 | "viacoin": 62007, 597 | "train": 62008, 598 | "subway": 62009, 599 | "medium": 62010, 600 | "yc": 62011, 601 | "y-combinator": 62011, 602 | "optin-monster": 62012, 603 | "opencart": 62013, 604 | "expeditedssl": 62014, 605 | "battery-4": 62016, 606 | "battery": 62016, 607 | "battery-full": 62016, 608 | "battery-3": 62017, 609 | "battery-three-quarters": 62017, 610 | "battery-2": 62018, 611 | "battery-half": 62018, 612 | "battery-1": 62019, 613 | "battery-quarter": 62019, 614 | "battery-0": 62020, 615 | "battery-empty": 62020, 616 | "mouse-pointer": 62021, 617 | "i-cursor": 62022, 618 | "object-group": 62023, 619 | "object-ungroup": 62024, 620 | "sticky-note": 62025, 621 | "sticky-note-o": 62026, 622 | "cc-jcb": 62027, 623 | "cc-diners-club": 62028, 624 | "clone": 62029, 625 | "balance-scale": 62030, 626 | "hourglass-o": 62032, 627 | "hourglass-1": 62033, 628 | "hourglass-start": 62033, 629 | "hourglass-2": 62034, 630 | "hourglass-half": 62034, 631 | "hourglass-3": 62035, 632 | "hourglass-end": 62035, 633 | "hourglass": 62036, 634 | "hand-grab-o": 62037, 635 | "hand-rock-o": 62037, 636 | "hand-stop-o": 62038, 637 | "hand-paper-o": 62038, 638 | "hand-scissors-o": 62039, 639 | "hand-lizard-o": 62040, 640 | "hand-spock-o": 62041, 641 | "hand-pointer-o": 62042, 642 | "hand-peace-o": 62043, 643 | "trademark": 62044, 644 | "registered": 62045, 645 | "creative-commons": 62046, 646 | "gg": 62048, 647 | "gg-circle": 62049, 648 | "tripadvisor": 62050, 649 | "odnoklassniki": 62051, 650 | "odnoklassniki-square": 62052, 651 | "get-pocket": 62053, 652 | "wikipedia-w": 62054, 653 | "safari": 62055, 654 | "chrome": 62056, 655 | "firefox": 62057, 656 | "opera": 62058, 657 | "internet-explorer": 62059, 658 | "tv": 62060, 659 | "television": 62060, 660 | "contao": 62061, 661 | "500px": 62062, 662 | "amazon": 62064, 663 | "calendar-plus-o": 62065, 664 | "calendar-minus-o": 62066, 665 | "calendar-times-o": 62067, 666 | "calendar-check-o": 62068, 667 | "industry": 62069, 668 | "map-pin": 62070, 669 | "map-signs": 62071, 670 | "map-o": 62072, 671 | "map": 62073, 672 | "commenting": 62074, 673 | "commenting-o": 62075, 674 | "houzz": 62076, 675 | "vimeo": 62077, 676 | "black-tie": 62078, 677 | "fonticons": 62080, 678 | "reddit-alien": 62081, 679 | "edge": 62082, 680 | "credit-card-alt": 62083, 681 | "codiepie": 62084, 682 | "modx": 62085, 683 | "fort-awesome": 62086, 684 | "usb": 62087, 685 | "product-hunt": 62088, 686 | "mixcloud": 62089, 687 | "scribd": 62090, 688 | "pause-circle": 62091, 689 | "pause-circle-o": 62092, 690 | "stop-circle": 62093, 691 | "stop-circle-o": 62094, 692 | "shopping-bag": 62096, 693 | "shopping-basket": 62097, 694 | "hashtag": 62098, 695 | "bluetooth": 62099, 696 | "bluetooth-b": 62100, 697 | "percent": 62101, 698 | "gitlab": 62102, 699 | "wpbeginner": 62103, 700 | "wpforms": 62104, 701 | "envira": 62105, 702 | "universal-access": 62106, 703 | "wheelchair-alt": 62107, 704 | "question-circle-o": 62108, 705 | "blind": 62109, 706 | "audio-description": 62110, 707 | "volume-control-phone": 62112, 708 | "braille": 62113, 709 | "assistive-listening-systems": 62114, 710 | "asl-interpreting": 62115, 711 | "american-sign-language-interpreting": 62115, 712 | "deafness": 62116, 713 | "hard-of-hearing": 62116, 714 | "deaf": 62116, 715 | "glide": 62117, 716 | "glide-g": 62118, 717 | "signing": 62119, 718 | "sign-language": 62119, 719 | "low-vision": 62120, 720 | "viadeo": 62121, 721 | "viadeo-square": 62122, 722 | "snapchat": 62123, 723 | "snapchat-ghost": 62124, 724 | "snapchat-square": 62125, 725 | "pied-piper": 62126, 726 | "first-order": 62128, 727 | "yoast": 62129, 728 | "themeisle": 62130, 729 | "google-plus-circle": 62131, 730 | "google-plus-official": 62131, 731 | "fa": 62132, 732 | "font-awesome": 62132, 733 | "handshake-o": 62133, 734 | "envelope-open": 62134, 735 | "envelope-open-o": 62135, 736 | "linode": 62136, 737 | "address-book": 62137, 738 | "address-book-o": 62138, 739 | "vcard": 62139, 740 | "address-card": 62139, 741 | "vcard-o": 62140, 742 | "address-card-o": 62140, 743 | "user-circle": 62141, 744 | "user-circle-o": 62142, 745 | "user-o": 62144, 746 | "id-badge": 62145, 747 | "drivers-license": 62146, 748 | "id-card": 62146, 749 | "drivers-license-o": 62147, 750 | "id-card-o": 62147, 751 | "quora": 62148, 752 | "free-code-camp": 62149, 753 | "telegram": 62150, 754 | "thermometer-4": 62151, 755 | "thermometer": 62151, 756 | "thermometer-full": 62151, 757 | "thermometer-3": 62152, 758 | "thermometer-three-quarters": 62152, 759 | "thermometer-2": 62153, 760 | "thermometer-half": 62153, 761 | "thermometer-1": 62154, 762 | "thermometer-quarter": 62154, 763 | "thermometer-0": 62155, 764 | "thermometer-empty": 62155, 765 | "shower": 62156, 766 | "bathtub": 62157, 767 | "s15": 62157, 768 | "bath": 62157, 769 | "podcast": 62158, 770 | "window-maximize": 62160, 771 | "window-minimize": 62161, 772 | "window-restore": 62162, 773 | "times-rectangle": 62163, 774 | "window-close": 62163, 775 | "times-rectangle-o": 62164, 776 | "window-close-o": 62164, 777 | "bandcamp": 62165, 778 | "grav": 62166, 779 | "etsy": 62167, 780 | "imdb": 62168, 781 | "ravelry": 62169, 782 | "eercast": 62170, 783 | "microchip": 62171, 784 | "snowflake-o": 62172, 785 | "superpowers": 62173, 786 | "wpexplorer": 62174, 787 | "meetup": 62176 788 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_foundation.json: -------------------------------------------------------------------------------- 1 | { 2 | "address-book": 61696, 3 | "alert": 61697, 4 | "align-center": 61698, 5 | "align-justify": 61699, 6 | "align-left": 61700, 7 | "align-right": 61701, 8 | "anchor": 61702, 9 | "annotate": 61703, 10 | "archive": 61704, 11 | "arrow-down": 61705, 12 | "arrow-left": 61706, 13 | "arrow-right": 61707, 14 | "arrow-up": 61708, 15 | "arrows-compress": 61709, 16 | "arrows-expand": 61710, 17 | "arrows-in": 61711, 18 | "arrows-out": 61712, 19 | "asl": 61713, 20 | "asterisk": 61714, 21 | "at-sign": 61715, 22 | "background-color": 61716, 23 | "battery-empty": 61717, 24 | "battery-full": 61718, 25 | "battery-half": 61719, 26 | "bitcoin-circle": 61720, 27 | "bitcoin": 61721, 28 | "blind": 61722, 29 | "bluetooth": 61723, 30 | "bold": 61724, 31 | "book-bookmark": 61725, 32 | "book": 61726, 33 | "bookmark": 61727, 34 | "braille": 61728, 35 | "burst-new": 61729, 36 | "burst-sale": 61730, 37 | "burst": 61731, 38 | "calendar": 61732, 39 | "camera": 61733, 40 | "check": 61734, 41 | "checkbox": 61735, 42 | "clipboard-notes": 61736, 43 | "clipboard-pencil": 61737, 44 | "clipboard": 61738, 45 | "clock": 61739, 46 | "closed-caption": 61740, 47 | "cloud": 61741, 48 | "comment-minus": 61742, 49 | "comment-quotes": 61743, 50 | "comment-video": 61744, 51 | "comment": 61745, 52 | "comments": 61746, 53 | "compass": 61747, 54 | "contrast": 61748, 55 | "credit-card": 61749, 56 | "crop": 61750, 57 | "crown": 61751, 58 | "css3": 61752, 59 | "database": 61753, 60 | "die-five": 61754, 61 | "die-four": 61755, 62 | "die-one": 61756, 63 | "die-six": 61757, 64 | "die-three": 61758, 65 | "die-two": 61759, 66 | "dislike": 61760, 67 | "dollar-bill": 61761, 68 | "dollar": 61762, 69 | "download": 61763, 70 | "eject": 61764, 71 | "elevator": 61765, 72 | "euro": 61766, 73 | "eye": 61767, 74 | "fast-forward": 61768, 75 | "female-symbol": 61769, 76 | "female": 61770, 77 | "filter": 61771, 78 | "first-aid": 61772, 79 | "flag": 61773, 80 | "folder-add": 61774, 81 | "folder-lock": 61775, 82 | "folder": 61776, 83 | "foot": 61777, 84 | "foundation": 61778, 85 | "graph-bar": 61779, 86 | "graph-horizontal": 61780, 87 | "graph-pie": 61781, 88 | "graph-trend": 61782, 89 | "guide-dog": 61783, 90 | "hearing-aid": 61784, 91 | "heart": 61785, 92 | "home": 61786, 93 | "html5": 61787, 94 | "indent-less": 61788, 95 | "indent-more": 61789, 96 | "info": 61790, 97 | "italic": 61791, 98 | "key": 61792, 99 | "laptop": 61793, 100 | "layout": 61794, 101 | "lightbulb": 61795, 102 | "like": 61796, 103 | "link": 61797, 104 | "list-bullet": 61798, 105 | "list-number": 61799, 106 | "list-thumbnails": 61800, 107 | "list": 61801, 108 | "lock": 61802, 109 | "loop": 61803, 110 | "magnifying-glass": 61804, 111 | "mail": 61805, 112 | "male-female": 61806, 113 | "male-symbol": 61807, 114 | "male": 61808, 115 | "map": 61809, 116 | "marker": 61810, 117 | "megaphone": 61811, 118 | "microphone": 61812, 119 | "minus-circle": 61813, 120 | "minus": 61814, 121 | "mobile-signal": 61815, 122 | "mobile": 61816, 123 | "monitor": 61817, 124 | "mountains": 61818, 125 | "music": 61819, 126 | "next": 61820, 127 | "no-dogs": 61821, 128 | "no-smoking": 61822, 129 | "page-add": 61823, 130 | "page-copy": 61824, 131 | "page-csv": 61825, 132 | "page-delete": 61826, 133 | "page-doc": 61827, 134 | "page-edit": 61828, 135 | "page-export-csv": 61829, 136 | "page-export-doc": 61830, 137 | "page-export-pdf": 61831, 138 | "page-export": 61832, 139 | "page-filled": 61833, 140 | "page-multiple": 61834, 141 | "page-pdf": 61835, 142 | "page-remove": 61836, 143 | "page-search": 61837, 144 | "page": 61838, 145 | "paint-bucket": 61839, 146 | "paperclip": 61840, 147 | "pause": 61841, 148 | "paw": 61842, 149 | "paypal": 61843, 150 | "pencil": 61844, 151 | "photo": 61845, 152 | "play-circle": 61846, 153 | "play-video": 61847, 154 | "play": 61848, 155 | "plus": 61849, 156 | "pound": 61850, 157 | "power": 61851, 158 | "previous": 61852, 159 | "price-tag": 61853, 160 | "pricetag-multiple": 61854, 161 | "print": 61855, 162 | "prohibited": 61856, 163 | "projection-screen": 61857, 164 | "puzzle": 61858, 165 | "quote": 61859, 166 | "record": 61860, 167 | "refresh": 61861, 168 | "results-demographics": 61862, 169 | "results": 61863, 170 | "rewind-ten": 61864, 171 | "rewind": 61865, 172 | "rss": 61866, 173 | "safety-cone": 61867, 174 | "save": 61868, 175 | "share": 61869, 176 | "sheriff-badge": 61870, 177 | "shield": 61871, 178 | "shopping-bag": 61872, 179 | "shopping-cart": 61873, 180 | "shuffle": 61874, 181 | "skull": 61875, 182 | "social-500px": 61876, 183 | "social-adobe": 61877, 184 | "social-amazon": 61878, 185 | "social-android": 61879, 186 | "social-apple": 61880, 187 | "social-behance": 61881, 188 | "social-bing": 61882, 189 | "social-blogger": 61883, 190 | "social-delicious": 61884, 191 | "social-designer-news": 61885, 192 | "social-deviant-art": 61886, 193 | "social-digg": 61887, 194 | "social-dribbble": 61888, 195 | "social-drive": 61889, 196 | "social-dropbox": 61890, 197 | "social-evernote": 61891, 198 | "social-facebook": 61892, 199 | "social-flickr": 61893, 200 | "social-forrst": 61894, 201 | "social-foursquare": 61895, 202 | "social-game-center": 61896, 203 | "social-github": 61897, 204 | "social-google-plus": 61898, 205 | "social-hacker-news": 61899, 206 | "social-hi5": 61900, 207 | "social-instagram": 61901, 208 | "social-joomla": 61902, 209 | "social-lastfm": 61903, 210 | "social-linkedin": 61904, 211 | "social-medium": 61905, 212 | "social-myspace": 61906, 213 | "social-orkut": 61907, 214 | "social-path": 61908, 215 | "social-picasa": 61909, 216 | "social-pinterest": 61910, 217 | "social-rdio": 61911, 218 | "social-reddit": 61912, 219 | "social-skillshare": 61913, 220 | "social-skype": 61914, 221 | "social-smashing-mag": 61915, 222 | "social-snapchat": 61916, 223 | "social-spotify": 61917, 224 | "social-squidoo": 61918, 225 | "social-stack-overflow": 61919, 226 | "social-steam": 61920, 227 | "social-stumbleupon": 61921, 228 | "social-treehouse": 61922, 229 | "social-tumblr": 61923, 230 | "social-twitter": 61924, 231 | "social-vimeo": 61925, 232 | "social-windows": 61926, 233 | "social-xbox": 61927, 234 | "social-yahoo": 61928, 235 | "social-yelp": 61929, 236 | "social-youtube": 61930, 237 | "social-zerply": 61931, 238 | "social-zurb": 61932, 239 | "sound": 61933, 240 | "star": 61934, 241 | "stop": 61935, 242 | "strikethrough": 61936, 243 | "subscript": 61937, 244 | "superscript": 61938, 245 | "tablet-landscape": 61939, 246 | "tablet-portrait": 61940, 247 | "target-two": 61941, 248 | "target": 61942, 249 | "telephone-accessible": 61943, 250 | "telephone": 61944, 251 | "text-color": 61945, 252 | "thumbnails": 61946, 253 | "ticket": 61947, 254 | "torso-business": 61948, 255 | "torso-female": 61949, 256 | "torso": 61950, 257 | "torsos-all-female": 61951, 258 | "torsos-all": 61952, 259 | "torsos-female-male": 61953, 260 | "torsos-male-female": 61954, 261 | "torsos": 61955, 262 | "trash": 61956, 263 | "trees": 61957, 264 | "trophy": 61958, 265 | "underline": 61959, 266 | "universal-access": 61960, 267 | "unlink": 61961, 268 | "unlock": 61962, 269 | "upload-cloud": 61963, 270 | "upload": 61964, 271 | "usb": 61965, 272 | "video": 61966, 273 | "volume-none": 61967, 274 | "volume-strike": 61968, 275 | "volume": 61969, 276 | "web": 61970, 277 | "wheelchair": 61971, 278 | "widget": 61972, 279 | "wrench": 61973, 280 | "x-circle": 61974, 281 | "x": 61975, 282 | "yen": 61976, 283 | "zoom-in": 61977, 284 | "zoom-out": 61978 285 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_ionicons.json: -------------------------------------------------------------------------------- 1 | { 2 | "ios-add": 61698, 3 | "ios-add-circle": 61697, 4 | "ios-add-circle-outline": 61696, 5 | "ios-airplane": 61751, 6 | "ios-alarm": 62408, 7 | "ios-albums": 62410, 8 | "ios-alert": 61700, 9 | "ios-american-football": 61702, 10 | "ios-analytics": 62414, 11 | "ios-aperture": 61704, 12 | "ios-apps": 61706, 13 | "ios-appstore": 61708, 14 | "ios-archive": 61710, 15 | "ios-arrow-back": 62415, 16 | "ios-arrow-down": 62416, 17 | "ios-arrow-dropdown": 61712, 18 | "ios-arrow-dropdown-circle": 61733, 19 | "ios-arrow-dropleft": 61714, 20 | "ios-arrow-dropleft-circle": 61737, 21 | "ios-arrow-dropright": 61716, 22 | "ios-arrow-dropright-circle": 61739, 23 | "ios-arrow-dropup": 61718, 24 | "ios-arrow-dropup-circle": 61741, 25 | "ios-arrow-forward": 62417, 26 | "ios-arrow-round-back": 61719, 27 | "ios-arrow-round-down": 61720, 28 | "ios-arrow-round-forward": 61721, 29 | "ios-arrow-round-up": 61722, 30 | "ios-arrow-up": 62424, 31 | "ios-at": 62426, 32 | "ios-attach": 61723, 33 | "ios-backspace": 61725, 34 | "ios-barcode": 62428, 35 | "ios-baseball": 62430, 36 | "ios-basket": 61727, 37 | "ios-basketball": 62432, 38 | "ios-battery-charging": 61728, 39 | "ios-battery-dead": 61729, 40 | "ios-battery-full": 61730, 41 | "ios-beaker": 61732, 42 | "ios-bed": 61753, 43 | "ios-beer": 61734, 44 | "ios-bicycle": 61735, 45 | "ios-bluetooth": 61736, 46 | "ios-boat": 61738, 47 | "ios-body": 62436, 48 | "ios-bonfire": 61740, 49 | "ios-book": 62440, 50 | "ios-bookmark": 61742, 51 | "ios-bookmarks": 62442, 52 | "ios-bowtie": 61744, 53 | "ios-briefcase": 62446, 54 | "ios-browsers": 62448, 55 | "ios-brush": 61746, 56 | "ios-bug": 61748, 57 | "ios-build": 61750, 58 | "ios-bulb": 61752, 59 | "ios-bus": 61754, 60 | "ios-business": 61859, 61 | "ios-cafe": 61756, 62 | "ios-calculator": 62450, 63 | "ios-calendar": 62452, 64 | "ios-call": 61758, 65 | "ios-camera": 62454, 66 | "ios-car": 61760, 67 | "ios-card": 61762, 68 | "ios-cart": 62456, 69 | "ios-cash": 61764, 70 | "ios-cellular": 61757, 71 | "ios-chatboxes": 62458, 72 | "ios-chatbubbles": 61766, 73 | "ios-checkbox": 61768, 74 | "ios-checkbox-outline": 61767, 75 | "ios-checkmark": 62463, 76 | "ios-checkmark-circle": 61770, 77 | "ios-checkmark-circle-outline": 61769, 78 | "ios-clipboard": 61772, 79 | "ios-clock": 62467, 80 | "ios-close": 62470, 81 | "ios-close-circle": 61774, 82 | "ios-close-circle-outline": 61773, 83 | "ios-cloud": 62476, 84 | "ios-cloud-circle": 61778, 85 | "ios-cloud-done": 61780, 86 | "ios-cloud-download": 62472, 87 | "ios-cloud-outline": 62473, 88 | "ios-cloud-upload": 62475, 89 | "ios-cloudy": 62480, 90 | "ios-cloudy-night": 62478, 91 | "ios-code": 61783, 92 | "ios-code-download": 61781, 93 | "ios-code-working": 61782, 94 | "ios-cog": 62482, 95 | "ios-color-fill": 61785, 96 | "ios-color-filter": 62484, 97 | "ios-color-palette": 61787, 98 | "ios-color-wand": 62486, 99 | "ios-compass": 61789, 100 | "ios-construct": 61791, 101 | "ios-contact": 62490, 102 | "ios-contacts": 61793, 103 | "ios-contract": 61794, 104 | "ios-contrast": 61795, 105 | "ios-copy": 62492, 106 | "ios-create": 61797, 107 | "ios-crop": 62494, 108 | "ios-cube": 61800, 109 | "ios-cut": 61802, 110 | "ios-desktop": 61804, 111 | "ios-disc": 61806, 112 | "ios-document": 61808, 113 | "ios-done-all": 61809, 114 | "ios-download": 62496, 115 | "ios-easel": 61811, 116 | "ios-egg": 61813, 117 | "ios-exit": 61815, 118 | "ios-expand": 61816, 119 | "ios-eye": 62501, 120 | "ios-eye-off": 61818, 121 | "ios-fastforward": 62503, 122 | "ios-female": 61819, 123 | "ios-filing": 62505, 124 | "ios-film": 62507, 125 | "ios-finger-print": 61820, 126 | "ios-fitness": 61867, 127 | "ios-flag": 62509, 128 | "ios-flame": 62511, 129 | "ios-flash": 61822, 130 | "ios-flash-off": 61743, 131 | "ios-flashlight": 61761, 132 | "ios-flask": 62513, 133 | "ios-flower": 62515, 134 | "ios-folder": 62517, 135 | "ios-folder-open": 61824, 136 | "ios-football": 62519, 137 | "ios-funnel": 61826, 138 | "ios-gift": 61841, 139 | "ios-git-branch": 61827, 140 | "ios-git-commit": 61828, 141 | "ios-git-compare": 61829, 142 | "ios-git-merge": 61830, 143 | "ios-git-network": 61831, 144 | "ios-git-pull-request": 61832, 145 | "ios-glasses": 62527, 146 | "ios-globe": 61834, 147 | "ios-grid": 61836, 148 | "ios-hammer": 61838, 149 | "ios-hand": 61840, 150 | "ios-happy": 61842, 151 | "ios-headset": 61844, 152 | "ios-heart": 62531, 153 | "ios-heart-dislike": 61759, 154 | "ios-heart-empty": 61851, 155 | "ios-heart-half": 61853, 156 | "ios-help": 62534, 157 | "ios-help-buoy": 61846, 158 | "ios-help-circle": 61848, 159 | "ios-help-circle-outline": 61847, 160 | "ios-home": 62536, 161 | "ios-hourglass": 61699, 162 | "ios-ice-cream": 61850, 163 | "ios-image": 61852, 164 | "ios-images": 61854, 165 | "ios-infinite": 62538, 166 | "ios-information": 62541, 167 | "ios-information-circle": 61856, 168 | "ios-information-circle-outline": 61855, 169 | "ios-jet": 61861, 170 | "ios-journal": 61833, 171 | "ios-key": 61863, 172 | "ios-keypad": 62544, 173 | "ios-laptop": 61864, 174 | "ios-leaf": 61866, 175 | "ios-link": 61994, 176 | "ios-list": 62548, 177 | "ios-list-box": 61763, 178 | "ios-locate": 61870, 179 | "ios-lock": 61872, 180 | "ios-log-in": 61873, 181 | "ios-log-out": 61874, 182 | "ios-magnet": 61876, 183 | "ios-mail": 61880, 184 | "ios-mail-open": 61878, 185 | "ios-mail-unread": 61765, 186 | "ios-male": 61881, 187 | "ios-man": 61883, 188 | "ios-map": 61885, 189 | "ios-medal": 61887, 190 | "ios-medical": 62556, 191 | "ios-medkit": 62558, 192 | "ios-megaphone": 61889, 193 | "ios-menu": 61891, 194 | "ios-mic": 62561, 195 | "ios-mic-off": 62559, 196 | "ios-microphone": 61894, 197 | "ios-moon": 62568, 198 | "ios-more": 61896, 199 | "ios-move": 61899, 200 | "ios-musical-note": 62571, 201 | "ios-musical-notes": 62572, 202 | "ios-navigate": 62574, 203 | "ios-notifications": 61907, 204 | "ios-notifications-off": 61905, 205 | "ios-notifications-outline": 61747, 206 | "ios-nuclear": 61909, 207 | "ios-nutrition": 62576, 208 | "ios-open": 61911, 209 | "ios-options": 61913, 210 | "ios-outlet": 61915, 211 | "ios-paper": 62578, 212 | "ios-paper-plane": 61917, 213 | "ios-partly-sunny": 61919, 214 | "ios-pause": 62584, 215 | "ios-paw": 62586, 216 | "ios-people": 62588, 217 | "ios-person": 62590, 218 | "ios-person-add": 61921, 219 | "ios-phone-landscape": 61922, 220 | "ios-phone-portrait": 61923, 221 | "ios-photos": 62594, 222 | "ios-pie": 62596, 223 | "ios-pin": 61925, 224 | "ios-pint": 62598, 225 | "ios-pizza": 61927, 226 | "ios-planet": 61931, 227 | "ios-play": 62600, 228 | "ios-play-circle": 61715, 229 | "ios-podium": 61933, 230 | "ios-power": 61935, 231 | "ios-pricetag": 62605, 232 | "ios-pricetags": 62607, 233 | "ios-print": 61937, 234 | "ios-pulse": 62611, 235 | "ios-qr-scanner": 61939, 236 | "ios-quote": 61941, 237 | "ios-radio": 61945, 238 | "ios-radio-button-off": 61942, 239 | "ios-radio-button-on": 61943, 240 | "ios-rainy": 62613, 241 | "ios-recording": 62615, 242 | "ios-redo": 62617, 243 | "ios-refresh": 62620, 244 | "ios-refresh-circle": 61749, 245 | "ios-remove": 61948, 246 | "ios-remove-circle": 61947, 247 | "ios-remove-circle-outline": 61946, 248 | "ios-reorder": 61949, 249 | "ios-repeat": 61950, 250 | "ios-resize": 61951, 251 | "ios-restaurant": 61953, 252 | "ios-return-left": 61954, 253 | "ios-return-right": 61955, 254 | "ios-reverse-camera": 62623, 255 | "ios-rewind": 62625, 256 | "ios-ribbon": 61957, 257 | "ios-rocket": 61771, 258 | "ios-rose": 62627, 259 | "ios-sad": 61959, 260 | "ios-save": 61862, 261 | "ios-school": 61961, 262 | "ios-search": 62629, 263 | "ios-send": 61964, 264 | "ios-settings": 62631, 265 | "ios-share": 61969, 266 | "ios-share-alt": 61967, 267 | "ios-shirt": 61971, 268 | "ios-shuffle": 62633, 269 | "ios-skip-backward": 61973, 270 | "ios-skip-forward": 61975, 271 | "ios-snow": 61976, 272 | "ios-speedometer": 62640, 273 | "ios-square": 61978, 274 | "ios-square-outline": 61788, 275 | "ios-star": 62643, 276 | "ios-star-half": 62641, 277 | "ios-star-outline": 62642, 278 | "ios-stats": 61980, 279 | "ios-stopwatch": 62645, 280 | "ios-subway": 61982, 281 | "ios-sunny": 62647, 282 | "ios-swap": 61983, 283 | "ios-switch": 61985, 284 | "ios-sync": 61986, 285 | "ios-tablet-landscape": 61987, 286 | "ios-tablet-portrait": 62030, 287 | "ios-tennisball": 62651, 288 | "ios-text": 62032, 289 | "ios-thermometer": 62034, 290 | "ios-thumbs-down": 62036, 291 | "ios-thumbs-up": 62038, 292 | "ios-thunderstorm": 62653, 293 | "ios-time": 62655, 294 | "ios-timer": 62657, 295 | "ios-today": 61775, 296 | "ios-train": 62040, 297 | "ios-transgender": 62041, 298 | "ios-trash": 62661, 299 | "ios-trending-down": 62042, 300 | "ios-trending-up": 62043, 301 | "ios-trophy": 62045, 302 | "ios-tv": 61717, 303 | "ios-umbrella": 62047, 304 | "ios-undo": 62663, 305 | "ios-unlock": 62049, 306 | "ios-videocam": 62669, 307 | "ios-volume-high": 61724, 308 | "ios-volume-low": 61726, 309 | "ios-volume-mute": 62051, 310 | "ios-volume-off": 62052, 311 | "ios-walk": 62054, 312 | "ios-wallet": 61835, 313 | "ios-warning": 62056, 314 | "ios-watch": 62057, 315 | "ios-water": 62059, 316 | "ios-wifi": 62061, 317 | "ios-wine": 62063, 318 | "ios-woman": 62065, 319 | "logo-android": 61989, 320 | "logo-angular": 61991, 321 | "logo-apple": 61993, 322 | "logo-bitbucket": 61843, 323 | "logo-bitcoin": 61995, 324 | "logo-buffer": 61997, 325 | "logo-chrome": 61999, 326 | "logo-closed-captioning": 61701, 327 | "logo-codepen": 62000, 328 | "logo-css3": 62001, 329 | "logo-designernews": 62002, 330 | "logo-dribbble": 62003, 331 | "logo-dropbox": 62004, 332 | "logo-euro": 62005, 333 | "logo-facebook": 62006, 334 | "logo-flickr": 61703, 335 | "logo-foursquare": 62007, 336 | "logo-freebsd-devil": 62008, 337 | "logo-game-controller-a": 61755, 338 | "logo-game-controller-b": 61825, 339 | "logo-github": 62009, 340 | "logo-google": 62010, 341 | "logo-googleplus": 62011, 342 | "logo-hackernews": 62012, 343 | "logo-html5": 62013, 344 | "logo-instagram": 62014, 345 | "logo-ionic": 61776, 346 | "logo-ionitron": 61777, 347 | "logo-javascript": 62015, 348 | "logo-linkedin": 62016, 349 | "logo-markdown": 62017, 350 | "logo-model-s": 61779, 351 | "logo-no-smoking": 61705, 352 | "logo-nodejs": 62018, 353 | "logo-npm": 61845, 354 | "logo-octocat": 62019, 355 | "logo-pinterest": 62020, 356 | "logo-playstation": 62021, 357 | "logo-polymer": 61790, 358 | "logo-python": 62022, 359 | "logo-reddit": 62023, 360 | "logo-rss": 62024, 361 | "logo-sass": 62025, 362 | "logo-skype": 62026, 363 | "logo-slack": 61707, 364 | "logo-snapchat": 62027, 365 | "logo-steam": 62028, 366 | "logo-tumblr": 62029, 367 | "logo-tux": 62126, 368 | "logo-twitch": 62127, 369 | "logo-twitter": 62128, 370 | "logo-usd": 62129, 371 | "logo-vimeo": 62148, 372 | "logo-vk": 61709, 373 | "logo-whatsapp": 62149, 374 | "logo-windows": 62255, 375 | "logo-wordpress": 62256, 376 | "logo-xbox": 62284, 377 | "logo-xing": 61711, 378 | "logo-yahoo": 62285, 379 | "logo-yen": 62286, 380 | "logo-youtube": 62287, 381 | "md-add": 62067, 382 | "md-add-circle": 62066, 383 | "md-add-circle-outline": 61784, 384 | "md-airplane": 61786, 385 | "md-alarm": 62068, 386 | "md-albums": 62069, 387 | "md-alert": 62070, 388 | "md-american-football": 62071, 389 | "md-analytics": 62072, 390 | "md-aperture": 62073, 391 | "md-apps": 62074, 392 | "md-appstore": 62075, 393 | "md-archive": 62076, 394 | "md-arrow-back": 62077, 395 | "md-arrow-down": 62078, 396 | "md-arrow-dropdown": 62080, 397 | "md-arrow-dropdown-circle": 62079, 398 | "md-arrow-dropleft": 62082, 399 | "md-arrow-dropleft-circle": 62081, 400 | "md-arrow-dropright": 62084, 401 | "md-arrow-dropright-circle": 62083, 402 | "md-arrow-dropup": 62086, 403 | "md-arrow-dropup-circle": 62085, 404 | "md-arrow-forward": 62087, 405 | "md-arrow-round-back": 62088, 406 | "md-arrow-round-down": 62089, 407 | "md-arrow-round-forward": 62090, 408 | "md-arrow-round-up": 62091, 409 | "md-arrow-up": 62092, 410 | "md-at": 62093, 411 | "md-attach": 62094, 412 | "md-backspace": 62095, 413 | "md-barcode": 62096, 414 | "md-baseball": 62097, 415 | "md-basket": 62098, 416 | "md-basketball": 62099, 417 | "md-battery-charging": 62100, 418 | "md-battery-dead": 62101, 419 | "md-battery-full": 62102, 420 | "md-beaker": 62103, 421 | "md-bed": 61792, 422 | "md-beer": 62104, 423 | "md-bicycle": 62105, 424 | "md-bluetooth": 62106, 425 | "md-boat": 62107, 426 | "md-body": 62108, 427 | "md-bonfire": 62109, 428 | "md-book": 62110, 429 | "md-bookmark": 62111, 430 | "md-bookmarks": 62112, 431 | "md-bowtie": 62113, 432 | "md-briefcase": 62114, 433 | "md-browsers": 62115, 434 | "md-brush": 62116, 435 | "md-bug": 62117, 436 | "md-build": 62118, 437 | "md-bulb": 62119, 438 | "md-bus": 62120, 439 | "md-business": 61860, 440 | "md-cafe": 62121, 441 | "md-calculator": 62122, 442 | "md-calendar": 62123, 443 | "md-call": 62124, 444 | "md-camera": 62125, 445 | "md-car": 62130, 446 | "md-card": 62131, 447 | "md-cart": 62132, 448 | "md-cash": 62133, 449 | "md-cellular": 61796, 450 | "md-chatboxes": 62134, 451 | "md-chatbubbles": 62135, 452 | "md-checkbox": 62137, 453 | "md-checkbox-outline": 62136, 454 | "md-checkmark": 62140, 455 | "md-checkmark-circle": 62139, 456 | "md-checkmark-circle-outline": 62138, 457 | "md-clipboard": 62141, 458 | "md-clock": 62142, 459 | "md-close": 62144, 460 | "md-close-circle": 62143, 461 | "md-close-circle-outline": 61798, 462 | "md-cloud": 62153, 463 | "md-cloud-circle": 62146, 464 | "md-cloud-done": 62147, 465 | "md-cloud-download": 62150, 466 | "md-cloud-outline": 62151, 467 | "md-cloud-upload": 62152, 468 | "md-cloudy": 62155, 469 | "md-cloudy-night": 62154, 470 | "md-code": 62158, 471 | "md-code-download": 62156, 472 | "md-code-working": 62157, 473 | "md-cog": 62159, 474 | "md-color-fill": 62160, 475 | "md-color-filter": 62161, 476 | "md-color-palette": 62162, 477 | "md-color-wand": 62163, 478 | "md-compass": 62164, 479 | "md-construct": 62165, 480 | "md-contact": 62166, 481 | "md-contacts": 62167, 482 | "md-contract": 62168, 483 | "md-contrast": 62169, 484 | "md-copy": 62170, 485 | "md-create": 62171, 486 | "md-crop": 62172, 487 | "md-cube": 62173, 488 | "md-cut": 62174, 489 | "md-desktop": 62175, 490 | "md-disc": 62176, 491 | "md-document": 62177, 492 | "md-done-all": 62178, 493 | "md-download": 62179, 494 | "md-easel": 62180, 495 | "md-egg": 62181, 496 | "md-exit": 62182, 497 | "md-expand": 62183, 498 | "md-eye": 62185, 499 | "md-eye-off": 62184, 500 | "md-fastforward": 62186, 501 | "md-female": 62187, 502 | "md-filing": 62188, 503 | "md-film": 62189, 504 | "md-finger-print": 62190, 505 | "md-fitness": 61868, 506 | "md-flag": 62191, 507 | "md-flame": 62192, 508 | "md-flash": 62193, 509 | "md-flash-off": 61801, 510 | "md-flashlight": 61803, 511 | "md-flask": 62194, 512 | "md-flower": 62195, 513 | "md-folder": 62197, 514 | "md-folder-open": 62196, 515 | "md-football": 62198, 516 | "md-funnel": 62199, 517 | "md-gift": 61849, 518 | "md-git-branch": 62202, 519 | "md-git-commit": 62203, 520 | "md-git-compare": 62204, 521 | "md-git-merge": 62205, 522 | "md-git-network": 62206, 523 | "md-git-pull-request": 62207, 524 | "md-glasses": 62208, 525 | "md-globe": 62209, 526 | "md-grid": 62210, 527 | "md-hammer": 62211, 528 | "md-hand": 62212, 529 | "md-happy": 62213, 530 | "md-headset": 62214, 531 | "md-heart": 62216, 532 | "md-heart-dislike": 61799, 533 | "md-heart-empty": 61857, 534 | "md-heart-half": 61858, 535 | "md-help": 62219, 536 | "md-help-buoy": 62217, 537 | "md-help-circle": 62218, 538 | "md-help-circle-outline": 61805, 539 | "md-home": 62220, 540 | "md-hourglass": 61713, 541 | "md-ice-cream": 62221, 542 | "md-image": 62222, 543 | "md-images": 62223, 544 | "md-infinite": 62224, 545 | "md-information": 62226, 546 | "md-information-circle": 62225, 547 | "md-information-circle-outline": 61807, 548 | "md-jet": 62229, 549 | "md-journal": 61837, 550 | "md-key": 62230, 551 | "md-keypad": 62231, 552 | "md-laptop": 62232, 553 | "md-leaf": 62233, 554 | "md-link": 61998, 555 | "md-list": 62235, 556 | "md-list-box": 62234, 557 | "md-locate": 62236, 558 | "md-lock": 62237, 559 | "md-log-in": 62238, 560 | "md-log-out": 62239, 561 | "md-magnet": 62240, 562 | "md-mail": 62242, 563 | "md-mail-open": 62241, 564 | "md-mail-unread": 61810, 565 | "md-male": 62243, 566 | "md-man": 62244, 567 | "md-map": 62245, 568 | "md-medal": 62246, 569 | "md-medical": 62247, 570 | "md-medkit": 62248, 571 | "md-megaphone": 62249, 572 | "md-menu": 62250, 573 | "md-mic": 62252, 574 | "md-mic-off": 62251, 575 | "md-microphone": 62253, 576 | "md-moon": 62254, 577 | "md-more": 61897, 578 | "md-move": 62257, 579 | "md-musical-note": 62258, 580 | "md-musical-notes": 62259, 581 | "md-navigate": 62260, 582 | "md-notifications": 62264, 583 | "md-notifications-off": 62262, 584 | "md-notifications-outline": 62263, 585 | "md-nuclear": 62265, 586 | "md-nutrition": 62266, 587 | "md-open": 62267, 588 | "md-options": 62268, 589 | "md-outlet": 62269, 590 | "md-paper": 62271, 591 | "md-paper-plane": 62270, 592 | "md-partly-sunny": 62272, 593 | "md-pause": 62273, 594 | "md-paw": 62274, 595 | "md-people": 62275, 596 | "md-person": 62277, 597 | "md-person-add": 62276, 598 | "md-phone-landscape": 62278, 599 | "md-phone-portrait": 62279, 600 | "md-photos": 62280, 601 | "md-pie": 62281, 602 | "md-pin": 62282, 603 | "md-pint": 62283, 604 | "md-pizza": 62292, 605 | "md-planet": 62294, 606 | "md-play": 62295, 607 | "md-play-circle": 61812, 608 | "md-podium": 62296, 609 | "md-power": 62297, 610 | "md-pricetag": 62298, 611 | "md-pricetags": 62299, 612 | "md-print": 62300, 613 | "md-pulse": 62301, 614 | "md-qr-scanner": 62302, 615 | "md-quote": 62303, 616 | "md-radio": 62306, 617 | "md-radio-button-off": 62304, 618 | "md-radio-button-on": 62305, 619 | "md-rainy": 62307, 620 | "md-recording": 62308, 621 | "md-redo": 62309, 622 | "md-refresh": 62310, 623 | "md-refresh-circle": 61992, 624 | "md-remove": 62312, 625 | "md-remove-circle": 62311, 626 | "md-remove-circle-outline": 61814, 627 | "md-reorder": 62313, 628 | "md-repeat": 62314, 629 | "md-resize": 62315, 630 | "md-restaurant": 62316, 631 | "md-return-left": 62317, 632 | "md-return-right": 62318, 633 | "md-reverse-camera": 62319, 634 | "md-rewind": 62320, 635 | "md-ribbon": 62321, 636 | "md-rocket": 61817, 637 | "md-rose": 62322, 638 | "md-sad": 62323, 639 | "md-save": 61865, 640 | "md-school": 62324, 641 | "md-search": 62325, 642 | "md-send": 62326, 643 | "md-settings": 62327, 644 | "md-share": 62329, 645 | "md-share-alt": 62328, 646 | "md-shirt": 62330, 647 | "md-shuffle": 62331, 648 | "md-skip-backward": 62332, 649 | "md-skip-forward": 62333, 650 | "md-snow": 62334, 651 | "md-speedometer": 62335, 652 | "md-square": 62337, 653 | "md-square-outline": 62336, 654 | "md-star": 62340, 655 | "md-star-half": 62338, 656 | "md-star-outline": 62339, 657 | "md-stats": 62341, 658 | "md-stopwatch": 62342, 659 | "md-subway": 62343, 660 | "md-sunny": 62344, 661 | "md-swap": 62345, 662 | "md-switch": 62346, 663 | "md-sync": 62347, 664 | "md-tablet-landscape": 62348, 665 | "md-tablet-portrait": 62349, 666 | "md-tennisball": 62350, 667 | "md-text": 62351, 668 | "md-thermometer": 62352, 669 | "md-thumbs-down": 62353, 670 | "md-thumbs-up": 62354, 671 | "md-thunderstorm": 62355, 672 | "md-time": 62356, 673 | "md-timer": 62357, 674 | "md-today": 61821, 675 | "md-train": 62358, 676 | "md-transgender": 62359, 677 | "md-trash": 62360, 678 | "md-trending-down": 62361, 679 | "md-trending-up": 62362, 680 | "md-trophy": 62363, 681 | "md-tv": 61823, 682 | "md-umbrella": 62364, 683 | "md-undo": 62365, 684 | "md-unlock": 62366, 685 | "md-videocam": 62367, 686 | "md-volume-high": 61731, 687 | "md-volume-low": 61745, 688 | "md-volume-mute": 62369, 689 | "md-volume-off": 62370, 690 | "md-walk": 62372, 691 | "md-wallet": 61839, 692 | "md-warning": 62373, 693 | "md-watch": 62374, 694 | "md-water": 62375, 695 | "md-wifi": 62376, 696 | "md-wine": 62377, 697 | "md-woman": 62378 698 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_materialicons.json: -------------------------------------------------------------------------------- 1 | { 2 | "3d-rotation": 59469, 3 | "ac-unit": 60219, 4 | "access-alarm": 57744, 5 | "access-alarms": 57745, 6 | "access-time": 57746, 7 | "accessibility": 59470, 8 | "accessible": 59668, 9 | "account-balance": 59471, 10 | "account-balance-wallet": 59472, 11 | "account-box": 59473, 12 | "account-circle": 59475, 13 | "adb": 58894, 14 | "add": 57669, 15 | "add-a-photo": 58425, 16 | "add-alarm": 57747, 17 | "add-alert": 57347, 18 | "add-box": 57670, 19 | "add-circle": 57671, 20 | "add-circle-outline": 57672, 21 | "add-location": 58727, 22 | "add-shopping-cart": 59476, 23 | "add-to-photos": 58269, 24 | "add-to-queue": 57436, 25 | "adjust": 58270, 26 | "airline-seat-flat": 58928, 27 | "airline-seat-flat-angled": 58929, 28 | "airline-seat-individual-suite": 58930, 29 | "airline-seat-legroom-extra": 58931, 30 | "airline-seat-legroom-normal": 58932, 31 | "airline-seat-legroom-reduced": 58933, 32 | "airline-seat-recline-extra": 58934, 33 | "airline-seat-recline-normal": 58935, 34 | "airplanemode-active": 57749, 35 | "airplanemode-inactive": 57748, 36 | "airplay": 57429, 37 | "airport-shuttle": 60220, 38 | "alarm": 59477, 39 | "alarm-add": 59478, 40 | "alarm-off": 59479, 41 | "alarm-on": 59480, 42 | "album": 57369, 43 | "all-inclusive": 60221, 44 | "all-out": 59659, 45 | "android": 59481, 46 | "announcement": 59482, 47 | "apps": 58819, 48 | "archive": 57673, 49 | "arrow-back": 58820, 50 | "arrow-downward": 58843, 51 | "arrow-drop-down": 58821, 52 | "arrow-drop-down-circle": 58822, 53 | "arrow-drop-up": 58823, 54 | "arrow-forward": 58824, 55 | "arrow-upward": 58840, 56 | "art-track": 57440, 57 | "aspect-ratio": 59483, 58 | "assessment": 59484, 59 | "assignment": 59485, 60 | "assignment-ind": 59486, 61 | "assignment-late": 59487, 62 | "assignment-return": 59488, 63 | "assignment-returned": 59489, 64 | "assignment-turned-in": 59490, 65 | "assistant": 58271, 66 | "assistant-photo": 58272, 67 | "attach-file": 57894, 68 | "attach-money": 57895, 69 | "attachment": 58044, 70 | "audiotrack": 58273, 71 | "autorenew": 59491, 72 | "av-timer": 57371, 73 | "backspace": 57674, 74 | "backup": 59492, 75 | "battery-alert": 57756, 76 | "battery-charging-full": 57763, 77 | "battery-full": 57764, 78 | "battery-std": 57765, 79 | "battery-unknown": 57766, 80 | "beach-access": 60222, 81 | "beenhere": 58669, 82 | "block": 57675, 83 | "bluetooth": 57767, 84 | "bluetooth-audio": 58895, 85 | "bluetooth-connected": 57768, 86 | "bluetooth-disabled": 57769, 87 | "bluetooth-searching": 57770, 88 | "blur-circular": 58274, 89 | "blur-linear": 58275, 90 | "blur-off": 58276, 91 | "blur-on": 58277, 92 | "book": 59493, 93 | "bookmark": 59494, 94 | "bookmark-border": 59495, 95 | "border-all": 57896, 96 | "border-bottom": 57897, 97 | "border-clear": 57898, 98 | "border-color": 57899, 99 | "border-horizontal": 57900, 100 | "border-inner": 57901, 101 | "border-left": 57902, 102 | "border-outer": 57903, 103 | "border-right": 57904, 104 | "border-style": 57905, 105 | "border-top": 57906, 106 | "border-vertical": 57907, 107 | "branding-watermark": 57451, 108 | "brightness-1": 58278, 109 | "brightness-2": 58279, 110 | "brightness-3": 58280, 111 | "brightness-4": 58281, 112 | "brightness-5": 58282, 113 | "brightness-6": 58283, 114 | "brightness-7": 58284, 115 | "brightness-auto": 57771, 116 | "brightness-high": 57772, 117 | "brightness-low": 57773, 118 | "brightness-medium": 57774, 119 | "broken-image": 58285, 120 | "brush": 58286, 121 | "bubble-chart": 59101, 122 | "bug-report": 59496, 123 | "build": 59497, 124 | "burst-mode": 58428, 125 | "business": 57519, 126 | "business-center": 60223, 127 | "cached": 59498, 128 | "cake": 59369, 129 | "call": 57520, 130 | "call-end": 57521, 131 | "call-made": 57522, 132 | "call-merge": 57523, 133 | "call-missed": 57524, 134 | "call-missed-outgoing": 57572, 135 | "call-received": 57525, 136 | "call-split": 57526, 137 | "call-to-action": 57452, 138 | "camera": 58287, 139 | "camera-alt": 58288, 140 | "camera-enhance": 59644, 141 | "camera-front": 58289, 142 | "camera-rear": 58290, 143 | "camera-roll": 58291, 144 | "cancel": 58825, 145 | "card-giftcard": 59638, 146 | "card-membership": 59639, 147 | "card-travel": 59640, 148 | "casino": 60224, 149 | "cast": 58119, 150 | "cast-connected": 58120, 151 | "center-focus-strong": 58292, 152 | "center-focus-weak": 58293, 153 | "change-history": 59499, 154 | "chat": 57527, 155 | "chat-bubble": 57546, 156 | "chat-bubble-outline": 57547, 157 | "check": 58826, 158 | "check-box": 59444, 159 | "check-box-outline-blank": 59445, 160 | "check-circle": 59500, 161 | "chevron-left": 58827, 162 | "chevron-right": 58828, 163 | "child-care": 60225, 164 | "child-friendly": 60226, 165 | "chrome-reader-mode": 59501, 166 | "class": 59502, 167 | "clear": 57676, 168 | "clear-all": 57528, 169 | "close": 58829, 170 | "closed-caption": 57372, 171 | "cloud": 58045, 172 | "cloud-circle": 58046, 173 | "cloud-done": 58047, 174 | "cloud-download": 58048, 175 | "cloud-off": 58049, 176 | "cloud-queue": 58050, 177 | "cloud-upload": 58051, 178 | "code": 59503, 179 | "collections": 58294, 180 | "collections-bookmark": 58417, 181 | "color-lens": 58295, 182 | "colorize": 58296, 183 | "comment": 57529, 184 | "compare": 58297, 185 | "compare-arrows": 59669, 186 | "computer": 58122, 187 | "confirmation-number": 58936, 188 | "contact-mail": 57552, 189 | "contact-phone": 57551, 190 | "contacts": 57530, 191 | "content-copy": 57677, 192 | "content-cut": 57678, 193 | "content-paste": 57679, 194 | "control-point": 58298, 195 | "control-point-duplicate": 58299, 196 | "copyright": 59660, 197 | "create": 57680, 198 | "create-new-folder": 58060, 199 | "credit-card": 59504, 200 | "crop": 58302, 201 | "crop-16-9": 58300, 202 | "crop-3-2": 58301, 203 | "crop-5-4": 58303, 204 | "crop-7-5": 58304, 205 | "crop-din": 58305, 206 | "crop-free": 58306, 207 | "crop-landscape": 58307, 208 | "crop-original": 58308, 209 | "crop-portrait": 58309, 210 | "crop-rotate": 58423, 211 | "crop-square": 58310, 212 | "dashboard": 59505, 213 | "data-usage": 57775, 214 | "date-range": 59670, 215 | "dehaze": 58311, 216 | "delete": 59506, 217 | "delete-forever": 59691, 218 | "delete-sweep": 57708, 219 | "description": 59507, 220 | "desktop-mac": 58123, 221 | "desktop-windows": 58124, 222 | "details": 58312, 223 | "developer-board": 58125, 224 | "developer-mode": 57776, 225 | "device-hub": 58165, 226 | "devices": 57777, 227 | "devices-other": 58167, 228 | "dialer-sip": 57531, 229 | "dialpad": 57532, 230 | "directions": 58670, 231 | "directions-bike": 58671, 232 | "directions-boat": 58674, 233 | "directions-bus": 58672, 234 | "directions-car": 58673, 235 | "directions-railway": 58676, 236 | "directions-run": 58726, 237 | "directions-subway": 58675, 238 | "directions-transit": 58677, 239 | "directions-walk": 58678, 240 | "disc-full": 58896, 241 | "dns": 59509, 242 | "do-not-disturb": 58898, 243 | "do-not-disturb-alt": 58897, 244 | "do-not-disturb-off": 58947, 245 | "do-not-disturb-on": 58948, 246 | "dock": 58126, 247 | "domain": 59374, 248 | "done": 59510, 249 | "done-all": 59511, 250 | "donut-large": 59671, 251 | "donut-small": 59672, 252 | "drafts": 57681, 253 | "drag-handle": 57949, 254 | "drive-eta": 58899, 255 | "dvr": 57778, 256 | "edit": 58313, 257 | "edit-location": 58728, 258 | "eject": 59643, 259 | "email": 57534, 260 | "enhanced-encryption": 58943, 261 | "equalizer": 57373, 262 | "error": 57344, 263 | "error-outline": 57345, 264 | "euro-symbol": 59686, 265 | "ev-station": 58733, 266 | "event": 59512, 267 | "event-available": 58900, 268 | "event-busy": 58901, 269 | "event-note": 58902, 270 | "event-seat": 59651, 271 | "exit-to-app": 59513, 272 | "expand-less": 58830, 273 | "expand-more": 58831, 274 | "explicit": 57374, 275 | "explore": 59514, 276 | "exposure": 58314, 277 | "exposure-neg-1": 58315, 278 | "exposure-neg-2": 58316, 279 | "exposure-plus-1": 58317, 280 | "exposure-plus-2": 58318, 281 | "exposure-zero": 58319, 282 | "extension": 59515, 283 | "face": 59516, 284 | "fast-forward": 57375, 285 | "fast-rewind": 57376, 286 | "favorite": 59517, 287 | "favorite-border": 59518, 288 | "featured-play-list": 57453, 289 | "featured-video": 57454, 290 | "feedback": 59519, 291 | "fiber-dvr": 57437, 292 | "fiber-manual-record": 57441, 293 | "fiber-new": 57438, 294 | "fiber-pin": 57450, 295 | "fiber-smart-record": 57442, 296 | "file-download": 58052, 297 | "file-upload": 58054, 298 | "filter": 58323, 299 | "filter-1": 58320, 300 | "filter-2": 58321, 301 | "filter-3": 58322, 302 | "filter-4": 58324, 303 | "filter-5": 58325, 304 | "filter-6": 58326, 305 | "filter-7": 58327, 306 | "filter-8": 58328, 307 | "filter-9": 58329, 308 | "filter-9-plus": 58330, 309 | "filter-b-and-w": 58331, 310 | "filter-center-focus": 58332, 311 | "filter-drama": 58333, 312 | "filter-frames": 58334, 313 | "filter-hdr": 58335, 314 | "filter-list": 57682, 315 | "filter-none": 58336, 316 | "filter-tilt-shift": 58338, 317 | "filter-vintage": 58339, 318 | "find-in-page": 59520, 319 | "find-replace": 59521, 320 | "fingerprint": 59661, 321 | "first-page": 58844, 322 | "fitness-center": 60227, 323 | "flag": 57683, 324 | "flare": 58340, 325 | "flash-auto": 58341, 326 | "flash-off": 58342, 327 | "flash-on": 58343, 328 | "flight": 58681, 329 | "flight-land": 59652, 330 | "flight-takeoff": 59653, 331 | "flip": 58344, 332 | "flip-to-back": 59522, 333 | "flip-to-front": 59523, 334 | "folder": 58055, 335 | "folder-open": 58056, 336 | "folder-shared": 58057, 337 | "folder-special": 58903, 338 | "font-download": 57703, 339 | "format-align-center": 57908, 340 | "format-align-justify": 57909, 341 | "format-align-left": 57910, 342 | "format-align-right": 57911, 343 | "format-bold": 57912, 344 | "format-clear": 57913, 345 | "format-color-fill": 57914, 346 | "format-color-reset": 57915, 347 | "format-color-text": 57916, 348 | "format-indent-decrease": 57917, 349 | "format-indent-increase": 57918, 350 | "format-italic": 57919, 351 | "format-line-spacing": 57920, 352 | "format-list-bulleted": 57921, 353 | "format-list-numbered": 57922, 354 | "format-paint": 57923, 355 | "format-quote": 57924, 356 | "format-shapes": 57950, 357 | "format-size": 57925, 358 | "format-strikethrough": 57926, 359 | "format-textdirection-l-to-r": 57927, 360 | "format-textdirection-r-to-l": 57928, 361 | "format-underlined": 57929, 362 | "forum": 57535, 363 | "forward": 57684, 364 | "forward-10": 57430, 365 | "forward-30": 57431, 366 | "forward-5": 57432, 367 | "free-breakfast": 60228, 368 | "fullscreen": 58832, 369 | "fullscreen-exit": 58833, 370 | "functions": 57930, 371 | "g-translate": 59687, 372 | "gamepad": 58127, 373 | "games": 57377, 374 | "gavel": 59662, 375 | "gesture": 57685, 376 | "get-app": 59524, 377 | "gif": 59656, 378 | "golf-course": 60229, 379 | "gps-fixed": 57779, 380 | "gps-not-fixed": 57780, 381 | "gps-off": 57781, 382 | "grade": 59525, 383 | "gradient": 58345, 384 | "grain": 58346, 385 | "graphic-eq": 57784, 386 | "grid-off": 58347, 387 | "grid-on": 58348, 388 | "group": 59375, 389 | "group-add": 59376, 390 | "group-work": 59526, 391 | "hd": 57426, 392 | "hdr-off": 58349, 393 | "hdr-on": 58350, 394 | "hdr-strong": 58353, 395 | "hdr-weak": 58354, 396 | "headset": 58128, 397 | "headset-mic": 58129, 398 | "healing": 58355, 399 | "hearing": 57379, 400 | "help": 59527, 401 | "help-outline": 59645, 402 | "high-quality": 57380, 403 | "highlight": 57951, 404 | "highlight-off": 59528, 405 | "history": 59529, 406 | "home": 59530, 407 | "hot-tub": 60230, 408 | "hotel": 58682, 409 | "hourglass-empty": 59531, 410 | "hourglass-full": 59532, 411 | "http": 59650, 412 | "https": 59533, 413 | "image": 58356, 414 | "image-aspect-ratio": 58357, 415 | "import-contacts": 57568, 416 | "import-export": 57539, 417 | "important-devices": 59666, 418 | "inbox": 57686, 419 | "indeterminate-check-box": 59657, 420 | "info": 59534, 421 | "info-outline": 59535, 422 | "input": 59536, 423 | "insert-chart": 57931, 424 | "insert-comment": 57932, 425 | "insert-drive-file": 57933, 426 | "insert-emoticon": 57934, 427 | "insert-invitation": 57935, 428 | "insert-link": 57936, 429 | "insert-photo": 57937, 430 | "invert-colors": 59537, 431 | "invert-colors-off": 57540, 432 | "iso": 58358, 433 | "keyboard": 58130, 434 | "keyboard-arrow-down": 58131, 435 | "keyboard-arrow-left": 58132, 436 | "keyboard-arrow-right": 58133, 437 | "keyboard-arrow-up": 58134, 438 | "keyboard-backspace": 58135, 439 | "keyboard-capslock": 58136, 440 | "keyboard-hide": 58138, 441 | "keyboard-return": 58139, 442 | "keyboard-tab": 58140, 443 | "keyboard-voice": 58141, 444 | "kitchen": 60231, 445 | "label": 59538, 446 | "label-outline": 59539, 447 | "landscape": 58359, 448 | "language": 59540, 449 | "laptop": 58142, 450 | "laptop-chromebook": 58143, 451 | "laptop-mac": 58144, 452 | "laptop-windows": 58145, 453 | "last-page": 58845, 454 | "launch": 59541, 455 | "layers": 58683, 456 | "layers-clear": 58684, 457 | "leak-add": 58360, 458 | "leak-remove": 58361, 459 | "lens": 58362, 460 | "library-add": 57390, 461 | "library-books": 57391, 462 | "library-music": 57392, 463 | "lightbulb-outline": 59663, 464 | "line-style": 59673, 465 | "line-weight": 59674, 466 | "linear-scale": 57952, 467 | "link": 57687, 468 | "linked-camera": 58424, 469 | "list": 59542, 470 | "live-help": 57542, 471 | "live-tv": 58937, 472 | "local-activity": 58687, 473 | "local-airport": 58685, 474 | "local-atm": 58686, 475 | "local-bar": 58688, 476 | "local-cafe": 58689, 477 | "local-car-wash": 58690, 478 | "local-convenience-store": 58691, 479 | "local-dining": 58710, 480 | "local-drink": 58692, 481 | "local-florist": 58693, 482 | "local-gas-station": 58694, 483 | "local-grocery-store": 58695, 484 | "local-hospital": 58696, 485 | "local-hotel": 58697, 486 | "local-laundry-service": 58698, 487 | "local-library": 58699, 488 | "local-mall": 58700, 489 | "local-movies": 58701, 490 | "local-offer": 58702, 491 | "local-parking": 58703, 492 | "local-pharmacy": 58704, 493 | "local-phone": 58705, 494 | "local-pizza": 58706, 495 | "local-play": 58707, 496 | "local-post-office": 58708, 497 | "local-printshop": 58709, 498 | "local-see": 58711, 499 | "local-shipping": 58712, 500 | "local-taxi": 58713, 501 | "location-city": 59377, 502 | "location-disabled": 57782, 503 | "location-off": 57543, 504 | "location-on": 57544, 505 | "location-searching": 57783, 506 | "lock": 59543, 507 | "lock-open": 59544, 508 | "lock-outline": 59545, 509 | "looks": 58364, 510 | "looks-3": 58363, 511 | "looks-4": 58365, 512 | "looks-5": 58366, 513 | "looks-6": 58367, 514 | "looks-one": 58368, 515 | "looks-two": 58369, 516 | "loop": 57384, 517 | "loupe": 58370, 518 | "low-priority": 57709, 519 | "loyalty": 59546, 520 | "mail": 57688, 521 | "mail-outline": 57569, 522 | "map": 58715, 523 | "markunread": 57689, 524 | "markunread-mailbox": 59547, 525 | "memory": 58146, 526 | "menu": 58834, 527 | "merge-type": 57938, 528 | "message": 57545, 529 | "mic": 57385, 530 | "mic-none": 57386, 531 | "mic-off": 57387, 532 | "mms": 58904, 533 | "mode-comment": 57939, 534 | "mode-edit": 57940, 535 | "monetization-on": 57955, 536 | "money-off": 57948, 537 | "monochrome-photos": 58371, 538 | "mood": 59378, 539 | "mood-bad": 59379, 540 | "more": 58905, 541 | "more-horiz": 58835, 542 | "more-vert": 58836, 543 | "motorcycle": 59675, 544 | "mouse": 58147, 545 | "move-to-inbox": 57704, 546 | "movie": 57388, 547 | "movie-creation": 58372, 548 | "movie-filter": 58426, 549 | "multiline-chart": 59103, 550 | "music-note": 58373, 551 | "music-video": 57443, 552 | "my-location": 58716, 553 | "nature": 58374, 554 | "nature-people": 58375, 555 | "navigate-before": 58376, 556 | "navigate-next": 58377, 557 | "navigation": 58717, 558 | "near-me": 58729, 559 | "network-cell": 57785, 560 | "network-check": 58944, 561 | "network-locked": 58906, 562 | "network-wifi": 57786, 563 | "new-releases": 57393, 564 | "next-week": 57706, 565 | "nfc": 57787, 566 | "no-encryption": 58945, 567 | "no-sim": 57548, 568 | "not-interested": 57395, 569 | "note": 57455, 570 | "note-add": 59548, 571 | "notifications": 59380, 572 | "notifications-active": 59383, 573 | "notifications-none": 59381, 574 | "notifications-off": 59382, 575 | "notifications-paused": 59384, 576 | "offline-pin": 59658, 577 | "ondemand-video": 58938, 578 | "opacity": 59676, 579 | "open-in-browser": 59549, 580 | "open-in-new": 59550, 581 | "open-with": 59551, 582 | "pages": 59385, 583 | "pageview": 59552, 584 | "palette": 58378, 585 | "pan-tool": 59685, 586 | "panorama": 58379, 587 | "panorama-fish-eye": 58380, 588 | "panorama-horizontal": 58381, 589 | "panorama-vertical": 58382, 590 | "panorama-wide-angle": 58383, 591 | "party-mode": 59386, 592 | "pause": 57396, 593 | "pause-circle-filled": 57397, 594 | "pause-circle-outline": 57398, 595 | "payment": 59553, 596 | "people": 59387, 597 | "people-outline": 59388, 598 | "perm-camera-mic": 59554, 599 | "perm-contact-calendar": 59555, 600 | "perm-data-setting": 59556, 601 | "perm-device-information": 59557, 602 | "perm-identity": 59558, 603 | "perm-media": 59559, 604 | "perm-phone-msg": 59560, 605 | "perm-scan-wifi": 59561, 606 | "person": 59389, 607 | "person-add": 59390, 608 | "person-outline": 59391, 609 | "person-pin": 58714, 610 | "person-pin-circle": 58730, 611 | "personal-video": 58939, 612 | "pets": 59677, 613 | "phone": 57549, 614 | "phone-android": 58148, 615 | "phone-bluetooth-speaker": 58907, 616 | "phone-forwarded": 58908, 617 | "phone-in-talk": 58909, 618 | "phone-iphone": 58149, 619 | "phone-locked": 58910, 620 | "phone-missed": 58911, 621 | "phone-paused": 58912, 622 | "phonelink": 58150, 623 | "phonelink-erase": 57563, 624 | "phonelink-lock": 57564, 625 | "phonelink-off": 58151, 626 | "phonelink-ring": 57565, 627 | "phonelink-setup": 57566, 628 | "photo": 58384, 629 | "photo-album": 58385, 630 | "photo-camera": 58386, 631 | "photo-filter": 58427, 632 | "photo-library": 58387, 633 | "photo-size-select-actual": 58418, 634 | "photo-size-select-large": 58419, 635 | "photo-size-select-small": 58420, 636 | "picture-as-pdf": 58389, 637 | "picture-in-picture": 59562, 638 | "picture-in-picture-alt": 59665, 639 | "pie-chart": 59076, 640 | "pie-chart-outlined": 59077, 641 | "pin-drop": 58718, 642 | "place": 58719, 643 | "play-arrow": 57399, 644 | "play-circle-filled": 57400, 645 | "play-circle-outline": 57401, 646 | "play-for-work": 59654, 647 | "playlist-add": 57403, 648 | "playlist-add-check": 57445, 649 | "playlist-play": 57439, 650 | "plus-one": 59392, 651 | "poll": 59393, 652 | "polymer": 59563, 653 | "pool": 60232, 654 | "portable-wifi-off": 57550, 655 | "portrait": 58390, 656 | "power": 58940, 657 | "power-input": 58166, 658 | "power-settings-new": 59564, 659 | "pregnant-woman": 59678, 660 | "present-to-all": 57567, 661 | "print": 59565, 662 | "priority-high": 58949, 663 | "public": 59403, 664 | "publish": 57941, 665 | "query-builder": 59566, 666 | "question-answer": 59567, 667 | "queue": 57404, 668 | "queue-music": 57405, 669 | "queue-play-next": 57446, 670 | "radio": 57406, 671 | "radio-button-checked": 59447, 672 | "radio-button-unchecked": 59446, 673 | "rate-review": 58720, 674 | "receipt": 59568, 675 | "recent-actors": 57407, 676 | "record-voice-over": 59679, 677 | "redeem": 59569, 678 | "redo": 57690, 679 | "refresh": 58837, 680 | "remove": 57691, 681 | "remove-circle": 57692, 682 | "remove-circle-outline": 57693, 683 | "remove-from-queue": 57447, 684 | "remove-red-eye": 58391, 685 | "remove-shopping-cart": 59688, 686 | "reorder": 59646, 687 | "repeat": 57408, 688 | "repeat-one": 57409, 689 | "replay": 57410, 690 | "replay-10": 57433, 691 | "replay-30": 57434, 692 | "replay-5": 57435, 693 | "reply": 57694, 694 | "reply-all": 57695, 695 | "report": 57696, 696 | "report-problem": 59570, 697 | "restaurant": 58732, 698 | "restaurant-menu": 58721, 699 | "restore": 59571, 700 | "restore-page": 59689, 701 | "ring-volume": 57553, 702 | "room": 59572, 703 | "room-service": 60233, 704 | "rotate-90-degrees-ccw": 58392, 705 | "rotate-left": 58393, 706 | "rotate-right": 58394, 707 | "rounded-corner": 59680, 708 | "router": 58152, 709 | "rowing": 59681, 710 | "rss-feed": 57573, 711 | "rv-hookup": 58946, 712 | "satellite": 58722, 713 | "save": 57697, 714 | "scanner": 58153, 715 | "schedule": 59573, 716 | "school": 59404, 717 | "screen-lock-landscape": 57790, 718 | "screen-lock-portrait": 57791, 719 | "screen-lock-rotation": 57792, 720 | "screen-rotation": 57793, 721 | "screen-share": 57570, 722 | "sd-card": 58915, 723 | "sd-storage": 57794, 724 | "search": 59574, 725 | "security": 58154, 726 | "select-all": 57698, 727 | "send": 57699, 728 | "sentiment-dissatisfied": 59409, 729 | "sentiment-neutral": 59410, 730 | "sentiment-satisfied": 59411, 731 | "sentiment-very-dissatisfied": 59412, 732 | "sentiment-very-satisfied": 59413, 733 | "settings": 59576, 734 | "settings-applications": 59577, 735 | "settings-backup-restore": 59578, 736 | "settings-bluetooth": 59579, 737 | "settings-brightness": 59581, 738 | "settings-cell": 59580, 739 | "settings-ethernet": 59582, 740 | "settings-input-antenna": 59583, 741 | "settings-input-component": 59584, 742 | "settings-input-composite": 59585, 743 | "settings-input-hdmi": 59586, 744 | "settings-input-svideo": 59587, 745 | "settings-overscan": 59588, 746 | "settings-phone": 59589, 747 | "settings-power": 59590, 748 | "settings-remote": 59591, 749 | "settings-system-daydream": 57795, 750 | "settings-voice": 59592, 751 | "share": 59405, 752 | "shop": 59593, 753 | "shop-two": 59594, 754 | "shopping-basket": 59595, 755 | "shopping-cart": 59596, 756 | "short-text": 57953, 757 | "show-chart": 59105, 758 | "shuffle": 57411, 759 | "signal-cellular-4-bar": 57800, 760 | "signal-cellular-connected-no-internet-4-bar": 57805, 761 | "signal-cellular-no-sim": 57806, 762 | "signal-cellular-null": 57807, 763 | "signal-cellular-off": 57808, 764 | "signal-wifi-4-bar": 57816, 765 | "signal-wifi-4-bar-lock": 57817, 766 | "signal-wifi-off": 57818, 767 | "sim-card": 58155, 768 | "sim-card-alert": 58916, 769 | "skip-next": 57412, 770 | "skip-previous": 57413, 771 | "slideshow": 58395, 772 | "slow-motion-video": 57448, 773 | "smartphone": 58156, 774 | "smoke-free": 60234, 775 | "smoking-rooms": 60235, 776 | "sms": 58917, 777 | "sms-failed": 58918, 778 | "snooze": 57414, 779 | "sort": 57700, 780 | "sort-by-alpha": 57427, 781 | "spa": 60236, 782 | "space-bar": 57942, 783 | "speaker": 58157, 784 | "speaker-group": 58158, 785 | "speaker-notes": 59597, 786 | "speaker-notes-off": 59690, 787 | "speaker-phone": 57554, 788 | "spellcheck": 59598, 789 | "star": 59448, 790 | "star-border": 59450, 791 | "star-half": 59449, 792 | "stars": 59600, 793 | "stay-current-landscape": 57555, 794 | "stay-current-portrait": 57556, 795 | "stay-primary-landscape": 57557, 796 | "stay-primary-portrait": 57558, 797 | "stop": 57415, 798 | "stop-screen-share": 57571, 799 | "storage": 57819, 800 | "store": 59601, 801 | "store-mall-directory": 58723, 802 | "straighten": 58396, 803 | "streetview": 58734, 804 | "strikethrough-s": 57943, 805 | "style": 58397, 806 | "subdirectory-arrow-left": 58841, 807 | "subdirectory-arrow-right": 58842, 808 | "subject": 59602, 809 | "subscriptions": 57444, 810 | "subtitles": 57416, 811 | "subway": 58735, 812 | "supervisor-account": 59603, 813 | "surround-sound": 57417, 814 | "swap-calls": 57559, 815 | "swap-horiz": 59604, 816 | "swap-vert": 59605, 817 | "swap-vertical-circle": 59606, 818 | "switch-camera": 58398, 819 | "switch-video": 58399, 820 | "sync": 58919, 821 | "sync-disabled": 58920, 822 | "sync-problem": 58921, 823 | "system-update": 58922, 824 | "system-update-alt": 59607, 825 | "tab": 59608, 826 | "tab-unselected": 59609, 827 | "tablet": 58159, 828 | "tablet-android": 58160, 829 | "tablet-mac": 58161, 830 | "tag-faces": 58400, 831 | "tap-and-play": 58923, 832 | "terrain": 58724, 833 | "text-fields": 57954, 834 | "text-format": 57701, 835 | "textsms": 57560, 836 | "texture": 58401, 837 | "theaters": 59610, 838 | "thumb-down": 59611, 839 | "thumb-up": 59612, 840 | "thumbs-up-down": 59613, 841 | "time-to-leave": 58924, 842 | "timelapse": 58402, 843 | "timeline": 59682, 844 | "timer": 58405, 845 | "timer-10": 58403, 846 | "timer-3": 58404, 847 | "timer-off": 58406, 848 | "title": 57956, 849 | "toc": 59614, 850 | "today": 59615, 851 | "toll": 59616, 852 | "tonality": 58407, 853 | "touch-app": 59667, 854 | "toys": 58162, 855 | "track-changes": 59617, 856 | "traffic": 58725, 857 | "train": 58736, 858 | "tram": 58737, 859 | "transfer-within-a-station": 58738, 860 | "transform": 58408, 861 | "translate": 59618, 862 | "trending-down": 59619, 863 | "trending-flat": 59620, 864 | "trending-up": 59621, 865 | "tune": 58409, 866 | "turned-in": 59622, 867 | "turned-in-not": 59623, 868 | "tv": 58163, 869 | "unarchive": 57705, 870 | "undo": 57702, 871 | "unfold-less": 58838, 872 | "unfold-more": 58839, 873 | "update": 59683, 874 | "usb": 57824, 875 | "verified-user": 59624, 876 | "vertical-align-bottom": 57944, 877 | "vertical-align-center": 57945, 878 | "vertical-align-top": 57946, 879 | "vibration": 58925, 880 | "video-call": 57456, 881 | "video-label": 57457, 882 | "video-library": 57418, 883 | "videocam": 57419, 884 | "videocam-off": 57420, 885 | "videogame-asset": 58168, 886 | "view-agenda": 59625, 887 | "view-array": 59626, 888 | "view-carousel": 59627, 889 | "view-column": 59628, 890 | "view-comfy": 58410, 891 | "view-compact": 58411, 892 | "view-day": 59629, 893 | "view-headline": 59630, 894 | "view-list": 59631, 895 | "view-module": 59632, 896 | "view-quilt": 59633, 897 | "view-stream": 59634, 898 | "view-week": 59635, 899 | "vignette": 58421, 900 | "visibility": 59636, 901 | "visibility-off": 59637, 902 | "voice-chat": 58926, 903 | "voicemail": 57561, 904 | "volume-down": 57421, 905 | "volume-mute": 57422, 906 | "volume-off": 57423, 907 | "volume-up": 57424, 908 | "vpn-key": 57562, 909 | "vpn-lock": 58927, 910 | "wallpaper": 57788, 911 | "warning": 57346, 912 | "watch": 58164, 913 | "watch-later": 59684, 914 | "wb-auto": 58412, 915 | "wb-cloudy": 58413, 916 | "wb-incandescent": 58414, 917 | "wb-iridescent": 58422, 918 | "wb-sunny": 58416, 919 | "wc": 58941, 920 | "web": 57425, 921 | "web-asset": 57449, 922 | "weekend": 57707, 923 | "whatshot": 59406, 924 | "widgets": 57789, 925 | "wifi": 58942, 926 | "wifi-lock": 57825, 927 | "wifi-tethering": 57826, 928 | "work": 59641, 929 | "wrap-text": 57947, 930 | "youtube-searched-for": 59642, 931 | "zoom-in": 59647, 932 | "zoom-out": 59648, 933 | "zoom-out-map": 58731 934 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_octicons.json: -------------------------------------------------------------------------------- 1 | { 2 | "alert": 61696, 3 | "archive": 61697, 4 | "arrow-both": 61698, 5 | "arrow-down": 61699, 6 | "arrow-left": 61700, 7 | "arrow-right": 61701, 8 | "arrow-small-down": 61702, 9 | "arrow-small-left": 61703, 10 | "arrow-small-right": 61704, 11 | "arrow-small-up": 61705, 12 | "arrow-up": 61706, 13 | "beaker": 61707, 14 | "bell": 61708, 15 | "bold": 61709, 16 | "book": 61710, 17 | "bookmark": 61711, 18 | "briefcase": 61712, 19 | "broadcast": 61713, 20 | "browser": 61714, 21 | "bug": 61715, 22 | "calendar": 61716, 23 | "check": 61717, 24 | "checklist": 61718, 25 | "chevron-down": 61719, 26 | "chevron-left": 61720, 27 | "chevron-right": 61721, 28 | "chevron-up": 61722, 29 | "circle-slash": 61723, 30 | "circuit-board": 61724, 31 | "clippy": 61725, 32 | "clock": 61726, 33 | "cloud-download": 61727, 34 | "cloud-upload": 61728, 35 | "code": 61729, 36 | "comment": 61730, 37 | "comment-discussion": 61731, 38 | "credit-card": 61732, 39 | "dash": 61733, 40 | "dashboard": 61734, 41 | "database": 61735, 42 | "desktop-download": 61736, 43 | "device-camera": 61737, 44 | "device-camera-video": 61738, 45 | "device-desktop": 61739, 46 | "device-mobile": 61740, 47 | "diff": 61741, 48 | "diff-added": 61742, 49 | "diff-ignored": 61743, 50 | "diff-modified": 61744, 51 | "diff-removed": 61745, 52 | "diff-renamed": 61746, 53 | "ellipsis": 61747, 54 | "eye": 61748, 55 | "eye-closed": 61749, 56 | "file": 61750, 57 | "file-binary": 61751, 58 | "file-code": 61752, 59 | "file-directory": 61753, 60 | "file-media": 61754, 61 | "file-pdf": 61755, 62 | "file-submodule": 61756, 63 | "file-symlink-directory": 61757, 64 | "file-symlink-file": 61758, 65 | "file-zip": 61759, 66 | "flame": 61760, 67 | "fold": 61761, 68 | "fold-down": 61762, 69 | "fold-up": 61763, 70 | "gear": 61764, 71 | "gift": 61765, 72 | "gist": 61766, 73 | "gist-secret": 61767, 74 | "git-branch": 61768, 75 | "git-commit": 61769, 76 | "git-compare": 61770, 77 | "git-merge": 61771, 78 | "git-pull-request": 61772, 79 | "github-action": 61773, 80 | "globe": 61774, 81 | "grabber": 61775, 82 | "graph": 61776, 83 | "heart": 61777, 84 | "history": 61778, 85 | "home": 61779, 86 | "horizontal-rule": 61780, 87 | "hubot": 61781, 88 | "inbox": 61782, 89 | "info": 61783, 90 | "issue-closed": 61784, 91 | "issue-opened": 61785, 92 | "issue-reopened": 61786, 93 | "italic": 61787, 94 | "jersey": 61788, 95 | "kebab-horizontal": 61789, 96 | "kebab-vertical": 61790, 97 | "key": 61791, 98 | "keyboard": 61792, 99 | "law": 61793, 100 | "light-bulb": 61794, 101 | "link": 61795, 102 | "link-external": 61796, 103 | "list-ordered": 61797, 104 | "list-unordered": 61798, 105 | "location": 61799, 106 | "lock": 61800, 107 | "logo-gist": 61801, 108 | "logo-github": 61802, 109 | "mail": 61803, 110 | "mail-read": 61804, 111 | "mark-github": 61805, 112 | "markdown": 61806, 113 | "megaphone": 61807, 114 | "mention": 61808, 115 | "milestone": 61809, 116 | "mirror": 61810, 117 | "mortar-board": 61811, 118 | "mute": 61812, 119 | "no-newline": 61813, 120 | "note": 61814, 121 | "octoface": 61815, 122 | "organization": 61816, 123 | "package": 61817, 124 | "paintcan": 61818, 125 | "pencil": 61819, 126 | "person": 61820, 127 | "pin": 61821, 128 | "play": 61822, 129 | "plug": 61823, 130 | "plus": 61824, 131 | "plus-small": 61825, 132 | "primitive-dot": 61826, 133 | "primitive-square": 61827, 134 | "project": 61828, 135 | "pulse": 61829, 136 | "question": 61830, 137 | "quote": 61831, 138 | "radio-tower": 61832, 139 | "reply": 61833, 140 | "repo": 61834, 141 | "repo-clone": 61835, 142 | "repo-force-push": 61836, 143 | "repo-forked": 61837, 144 | "repo-pull": 61838, 145 | "repo-push": 61839, 146 | "report": 61840, 147 | "request-changes": 61841, 148 | "rocket": 61842, 149 | "rss": 61843, 150 | "ruby": 61844, 151 | "screen-full": 61845, 152 | "screen-normal": 61846, 153 | "search": 61847, 154 | "server": 61848, 155 | "settings": 61849, 156 | "shield": 61850, 157 | "sign-in": 61851, 158 | "sign-out": 61852, 159 | "smiley": 61853, 160 | "squirrel": 61854, 161 | "star": 61855, 162 | "stop": 61856, 163 | "sync": 61857, 164 | "tag": 61858, 165 | "tasklist": 61859, 166 | "telescope": 61860, 167 | "terminal": 61861, 168 | "text-size": 61862, 169 | "three-bars": 61863, 170 | "thumbsdown": 61864, 171 | "thumbsup": 61865, 172 | "tools": 61866, 173 | "trashcan": 61867, 174 | "triangle-down": 61868, 175 | "triangle-left": 61869, 176 | "triangle-right": 61870, 177 | "triangle-up": 61871, 178 | "unfold": 61872, 179 | "unmute": 61873, 180 | "unverified": 61874, 181 | "verified": 61875, 182 | "versions": 61876, 183 | "watch": 61877, 184 | "x": 61878, 185 | "zap": 61879 186 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_simplelineicons.json: -------------------------------------------------------------------------------- 1 | { 2 | "user": 57349, 3 | "people": 57345, 4 | "user-female": 57344, 5 | "user-follow": 57346, 6 | "user-following": 57347, 7 | "user-unfollow": 57348, 8 | "login": 57446, 9 | "logout": 57445, 10 | "emotsmile": 57377, 11 | "phone": 58880, 12 | "call-end": 57416, 13 | "call-in": 57415, 14 | "call-out": 57414, 15 | "map": 57395, 16 | "location-pin": 57494, 17 | "direction": 57410, 18 | "directions": 57409, 19 | "compass": 57413, 20 | "layers": 57396, 21 | "menu": 58881, 22 | "list": 57447, 23 | "options-vertical": 58882, 24 | "options": 58883, 25 | "arrow-down": 58884, 26 | "arrow-left": 58885, 27 | "arrow-right": 58886, 28 | "arrow-up": 58887, 29 | "arrow-up-circle": 57464, 30 | "arrow-left-circle": 57466, 31 | "arrow-right-circle": 57465, 32 | "arrow-down-circle": 57467, 33 | "check": 57472, 34 | "clock": 57473, 35 | "plus": 57493, 36 | "minus": 58901, 37 | "close": 57474, 38 | "event": 58905, 39 | "exclamation": 58903, 40 | "organization": 58902, 41 | "trophy": 57350, 42 | "screen-smartphone": 57360, 43 | "screen-desktop": 57361, 44 | "plane": 57362, 45 | "notebook": 57363, 46 | "mustache": 57364, 47 | "mouse": 57365, 48 | "magnet": 57366, 49 | "energy": 57376, 50 | "disc": 57378, 51 | "cursor": 57454, 52 | "cursor-move": 57379, 53 | "crop": 57380, 54 | "chemistry": 57382, 55 | "speedometer": 57351, 56 | "shield": 57358, 57 | "screen-tablet": 57359, 58 | "magic-wand": 57367, 59 | "hourglass": 57368, 60 | "graduation": 57369, 61 | "ghost": 57370, 62 | "game-controller": 57371, 63 | "fire": 57372, 64 | "eyeglass": 57373, 65 | "envelope-open": 57374, 66 | "envelope-letter": 57375, 67 | "bell": 57383, 68 | "badge": 57384, 69 | "anchor": 57385, 70 | "wallet": 57386, 71 | "vector": 57387, 72 | "speech": 57388, 73 | "puzzle": 57389, 74 | "printer": 57390, 75 | "present": 57391, 76 | "playlist": 57392, 77 | "pin": 57393, 78 | "picture": 57394, 79 | "handbag": 57397, 80 | "globe-alt": 57398, 81 | "globe": 57399, 82 | "folder-alt": 57401, 83 | "folder": 57481, 84 | "film": 57402, 85 | "feed": 57403, 86 | "drop": 57406, 87 | "drawer": 57407, 88 | "docs": 57408, 89 | "doc": 57477, 90 | "diamond": 57411, 91 | "cup": 57412, 92 | "calculator": 57417, 93 | "bubbles": 57418, 94 | "briefcase": 57419, 95 | "book-open": 57420, 96 | "basket-loaded": 57421, 97 | "basket": 57422, 98 | "bag": 57423, 99 | "action-undo": 57424, 100 | "action-redo": 57425, 101 | "wrench": 57426, 102 | "umbrella": 57427, 103 | "trash": 57428, 104 | "tag": 57429, 105 | "support": 57430, 106 | "frame": 57400, 107 | "size-fullscreen": 57431, 108 | "size-actual": 57432, 109 | "shuffle": 57433, 110 | "share-alt": 57434, 111 | "share": 57435, 112 | "rocket": 57436, 113 | "question": 57437, 114 | "pie-chart": 57438, 115 | "pencil": 57439, 116 | "note": 57440, 117 | "loop": 57444, 118 | "home": 57449, 119 | "grid": 57450, 120 | "graph": 57451, 121 | "microphone": 57443, 122 | "music-tone-alt": 57441, 123 | "music-tone": 57442, 124 | "earphones-alt": 57404, 125 | "earphones": 57405, 126 | "equalizer": 57452, 127 | "like": 57448, 128 | "dislike": 57453, 129 | "control-start": 57455, 130 | "control-rewind": 57456, 131 | "control-play": 57457, 132 | "control-pause": 57458, 133 | "control-forward": 57459, 134 | "control-end": 57460, 135 | "volume-1": 57503, 136 | "volume-2": 57504, 137 | "volume-off": 57505, 138 | "calendar": 57461, 139 | "bulb": 57462, 140 | "chart": 57463, 141 | "ban": 57468, 142 | "bubble": 57469, 143 | "camrecorder": 57470, 144 | "camera": 57471, 145 | "cloud-download": 57475, 146 | "cloud-upload": 57476, 147 | "envelope": 57478, 148 | "eye": 57479, 149 | "flag": 57480, 150 | "heart": 57482, 151 | "info": 57483, 152 | "key": 57484, 153 | "link": 57485, 154 | "lock": 57486, 155 | "lock-open": 57487, 156 | "magnifier": 57488, 157 | "magnifier-add": 57489, 158 | "magnifier-remove": 57490, 159 | "paper-clip": 57491, 160 | "paper-plane": 57492, 161 | "power": 57495, 162 | "refresh": 57496, 163 | "reload": 57497, 164 | "settings": 57498, 165 | "star": 57499, 166 | "symbol-female": 57500, 167 | "symbol-male": 57501, 168 | "target": 57502, 169 | "credit-card": 57381, 170 | "paypal": 58888, 171 | "social-tumblr": 57354, 172 | "social-twitter": 57353, 173 | "social-facebook": 57355, 174 | "social-instagram": 58889, 175 | "social-linkedin": 58890, 176 | "social-pinterest": 58891, 177 | "social-github": 58892, 178 | "social-google": 58893, 179 | "social-reddit": 58894, 180 | "social-skype": 58895, 181 | "social-dribbble": 57357, 182 | "social-behance": 58896, 183 | "social-foursqare": 58897, 184 | "social-soundcloud": 58898, 185 | "social-spotify": 58899, 186 | "social-stumbleupon": 58900, 187 | "social-youtube": 57352, 188 | "social-dropbox": 57356, 189 | "social-vkontakte": 58904, 190 | "social-steam": 58912 191 | } -------------------------------------------------------------------------------- /android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_zocial.json: -------------------------------------------------------------------------------- 1 | { 2 | "acrobat": 61696, 3 | "amazon": 61697, 4 | "android": 61698, 5 | "angellist": 61699, 6 | "aol": 61700, 7 | "appnet": 61701, 8 | "appstore": 61702, 9 | "bitbucket": 61703, 10 | "bitcoin": 61704, 11 | "blogger": 61705, 12 | "buffer": 61706, 13 | "cal": 61707, 14 | "call": 61708, 15 | "cart": 61709, 16 | "chrome": 61710, 17 | "cloudapp": 61711, 18 | "creativecommons": 61712, 19 | "delicious": 61713, 20 | "digg": 61714, 21 | "disqus": 61715, 22 | "dribbble": 61716, 23 | "dropbox": 61717, 24 | "drupal": 61718, 25 | "dwolla": 61720, 26 | "email": 61721, 27 | "eventasaurus": 61722, 28 | "eventbrite": 61723, 29 | "eventful": 61724, 30 | "evernote": 61725, 31 | "facebook": 61726, 32 | "fivehundredpx": 61727, 33 | "flattr": 61728, 34 | "flickr": 61729, 35 | "forrst": 61730, 36 | "foursquare": 61731, 37 | "github": 61732, 38 | "gmail": 61733, 39 | "google": 61734, 40 | "googleplay": 61735, 41 | "googleplus": 61736, 42 | "gowalla": 61737, 43 | "grooveshark": 61738, 44 | "guest": 61739, 45 | "html5": 61740, 46 | "ie": 61741, 47 | "instagram": 61742, 48 | "instapaper": 61743, 49 | "intensedebate": 61744, 50 | "itunes": 61745, 51 | "klout": 61746, 52 | "lanyrd": 61747, 53 | "lastfm": 61748, 54 | "lego": 61749, 55 | "linkedin": 61750, 56 | "lkdto": 61751, 57 | "logmein": 61752, 58 | "macstore": 61753, 59 | "meetup": 61754, 60 | "myspace": 61755, 61 | "ninetyninedesigns": 61756, 62 | "openid": 61757, 63 | "opentable": 61758, 64 | "paypal": 61759, 65 | "persona": 61796, 66 | "pinboard": 61760, 67 | "pinterest": 61761, 68 | "plancast": 61762, 69 | "plurk": 61763, 70 | "pocket": 61764, 71 | "podcast": 61765, 72 | "posterous": 61766, 73 | "print": 61767, 74 | "quora": 61768, 75 | "reddit": 61769, 76 | "rss": 61770, 77 | "scribd": 61771, 78 | "skype": 61772, 79 | "smashing": 61773, 80 | "songkick": 61774, 81 | "soundcloud": 61775, 82 | "spotify": 61776, 83 | "stackoverflow": 61777, 84 | "statusnet": 61778, 85 | "steam": 61779, 86 | "stripe": 61780, 87 | "stumbleupon": 61781, 88 | "tumblr": 61782, 89 | "twitter": 61783, 90 | "viadeo": 61784, 91 | "vimeo": 61785, 92 | "vk": 61786, 93 | "weibo": 61787, 94 | "wikipedia": 61788, 95 | "windows": 61789, 96 | "wordpress": 61790, 97 | "xing": 61791, 98 | "yahoo": 61792, 99 | "ycombinator": 61793, 100 | "yelp": 61794, 101 | "youtube": 61795 102 | } -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AlarmReduxApp 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "28.0.3" 6 | minSdkVersion = 16 7 | compileSdkVersion = 28 8 | targetSdkVersion = 28 9 | } 10 | repositories { 11 | google() 12 | jcenter() 13 | } 14 | dependencies { 15 | classpath("com.android.tools.build:gradle:3.4.2") 16 | 17 | // NOTE: Do not place your application dependencies here; they belong 18 | // in the individual module build.gradle files 19 | } 20 | } 21 | 22 | allprojects { 23 | repositories { 24 | mavenLocal() 25 | maven { 26 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 27 | url("$rootDir/../node_modules/react-native/android") 28 | } 29 | maven { 30 | // Android JSC is installed from npm 31 | url("$rootDir/../node_modules/jsc-android/dist") 32 | } 33 | 34 | google() 35 | jcenter() 36 | maven { url 'https://jitpack.io' } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useAndroidX=true 21 | android.enableJetifier=true 22 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabirbugti9/Alarm-App-React-Native/fe2e112656750bb9ca7242b8569d7d37fc254ec7/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.5-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | # Determine the Java command to use to start the JVM. 86 | if [ -n "$JAVA_HOME" ] ; then 87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 88 | # IBM's JDK on AIX uses strange locations for the executables 89 | JAVACMD="$JAVA_HOME/jre/sh/java" 90 | else 91 | JAVACMD="$JAVA_HOME/bin/java" 92 | fi 93 | if [ ! -x "$JAVACMD" ] ; then 94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 95 | 96 | Please set the JAVA_HOME variable in your environment to match the 97 | location of your Java installation." 98 | fi 99 | else 100 | JAVACMD="java" 101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 102 | 103 | Please set the JAVA_HOME variable in your environment to match the 104 | location of your Java installation." 105 | fi 106 | 107 | # Increase the maximum file descriptors if we can. 108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 109 | MAX_FD_LIMIT=`ulimit -H -n` 110 | if [ $? -eq 0 ] ; then 111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 112 | MAX_FD="$MAX_FD_LIMIT" 113 | fi 114 | ulimit -n $MAX_FD 115 | if [ $? -ne 0 ] ; then 116 | warn "Could not set maximum file descriptor limit: $MAX_FD" 117 | fi 118 | else 119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 120 | fi 121 | fi 122 | 123 | # For Darwin, add options to specify how the application appears in the dock 124 | if $darwin; then 125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 126 | fi 127 | 128 | # For Cygwin, switch paths to Windows format before running java 129 | if $cygwin ; then 130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 132 | JAVACMD=`cygpath --unix "$JAVACMD"` 133 | 134 | # We build the pattern for arguments to be converted via cygpath 135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 136 | SEP="" 137 | for dir in $ROOTDIRSRAW ; do 138 | ROOTDIRS="$ROOTDIRS$SEP$dir" 139 | SEP="|" 140 | done 141 | OURCYGPATTERN="(^($ROOTDIRS))" 142 | # Add a user-defined pattern to the cygpath arguments 143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 145 | fi 146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 147 | i=0 148 | for arg in "$@" ; do 149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 151 | 152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 154 | else 155 | eval `echo args$i`="\"$arg\"" 156 | fi 157 | i=$((i+1)) 158 | done 159 | case $i in 160 | (0) set -- ;; 161 | (1) set -- "$args0" ;; 162 | (2) set -- "$args0" "$args1" ;; 163 | (3) set -- "$args0" "$args1" "$args2" ;; 164 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 165 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 166 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 167 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 168 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 169 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 170 | esac 171 | fi 172 | 173 | # Escape application args 174 | save () { 175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 176 | echo " " 177 | } 178 | APP_ARGS=$(save "$@") 179 | 180 | # Collect all arguments for the java command, following the shell quoting and substitution rules 181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 182 | 183 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 184 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 185 | cd "$(dirname "$0")" 186 | fi 187 | 188 | exec "$JAVACMD" "$@" 189 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem http://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 33 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 34 | 35 | @rem Find java.exe 36 | if defined JAVA_HOME goto findJavaFromJavaHome 37 | 38 | set JAVA_EXE=java.exe 39 | %JAVA_EXE% -version >NUL 2>&1 40 | if "%ERRORLEVEL%" == "0" goto init 41 | 42 | echo. 43 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 44 | echo. 45 | echo Please set the JAVA_HOME variable in your environment to match the 46 | echo location of your Java installation. 47 | 48 | goto fail 49 | 50 | :findJavaFromJavaHome 51 | set JAVA_HOME=%JAVA_HOME:"=% 52 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 53 | 54 | if exist "%JAVA_EXE%" goto init 55 | 56 | echo. 57 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 58 | echo. 59 | echo Please set the JAVA_HOME variable in your environment to match the 60 | echo location of your Java installation. 61 | 62 | goto fail 63 | 64 | :init 65 | @rem Get command-line arguments, handling Windows variants 66 | 67 | if not "%OS%" == "Windows_NT" goto win9xME_args 68 | 69 | :win9xME_args 70 | @rem Slurp the command line arguments. 71 | set CMD_LINE_ARGS= 72 | set _SKIP=2 73 | 74 | :win9xME_args_slurp 75 | if "x%~1" == "x" goto execute 76 | 77 | set CMD_LINE_ARGS=%* 78 | 79 | :execute 80 | @rem Setup the command line 81 | 82 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 83 | 84 | @rem Execute Gradle 85 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 86 | 87 | :end 88 | @rem End local scope for the variables with windows NT shell 89 | if "%ERRORLEVEL%"=="0" goto mainEnd 90 | 91 | :fail 92 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 93 | rem the _cmd.exe /c_ return code! 94 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 95 | exit /b 1 96 | 97 | :mainEnd 98 | if "%OS%"=="Windows_NT" endlocal 99 | 100 | :omega 101 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AlarmReduxApp' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AlarmReduxApp", 3 | "displayName": "AlarmReduxApp" 4 | } -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /components/ListAlarms.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Button, StyleSheet, FlatList, View } from 'react-native'; 3 | import { connect } from 'react-redux'; 4 | import { ListItem, Icon } from 'react-native-elements'; 5 | import { deleteAlarm } from '../actions/alarm'; 6 | import ReactNativeAN from 'react-native-alarm-notification'; 7 | 8 | class ListAlarms extends Component { 9 | keyExtractor = (item, index) => index.toString(); 10 | 11 | renderItem = ({ item }) => ( 12 | 13 | { 24 | ReactNativeAN.deleteAlarm(item.alarmNotifData.id); 25 | ReactNativeAN.stopAlarm(); 26 | 27 | this.props.delete(item.value); 28 | }} 29 | /> 30 | } 31 | // leftElement={} 32 | /> 33 | 34 | ); 35 | 36 | render() { 37 | return ( 38 | 43 | ); 44 | } 45 | } 46 | 47 | const styles = StyleSheet.create({ 48 | container: {}, 49 | titleStyle: { fontWeight: 'bold', fontSize: 30 }, 50 | }); 51 | 52 | const mapStateToProps = state => { 53 | return { 54 | alarms: state.alarms.alarms, 55 | }; 56 | }; 57 | 58 | const mapDispatchToProps = dispatch => { 59 | return { 60 | delete: value => { 61 | dispatch(deleteAlarm(value)); 62 | }, 63 | }; 64 | }; 65 | 66 | // eslint-disable-next-line prettier/prettier 67 | export default connect(mapStateToProps, mapDispatchToProps)(ListAlarms); 68 | -------------------------------------------------------------------------------- /components/TimePicker.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Button, StyleSheet, Alert } from 'react-native'; 3 | import { connect } from 'react-redux'; 4 | import { addAlarm } from '../actions/alarm'; 5 | import DateTimePicker from 'react-native-modal-datetime-picker'; 6 | import ReactNativeAN from 'react-native-alarm-notification'; 7 | class TimePicker extends Component { 8 | constructor(props) { 9 | super(props); 10 | this.state = { 11 | isDateTimePickerVisible: false, 12 | }; 13 | } 14 | 15 | makeid = () => { 16 | var length = 5; 17 | var result = ''; 18 | var characters = '0123456789'; 19 | var charactersLength = characters.length; 20 | for (var i = 0; i < length; i++) { 21 | result += characters.charAt(Math.floor(Math.random() * charactersLength)); 22 | } 23 | return result; 24 | }; 25 | 26 | showDateTimePicker = () => { 27 | this.setState({ isDateTimePickerVisible: true }); 28 | }; 29 | 30 | hideDateTimePicker = () => { 31 | this.setState({ isDateTimePickerVisible: false }); 32 | }; 33 | 34 | handleDatePicked = datetime => { 35 | var currentTime = Date.now(); 36 | if (datetime.getTime() < currentTime) { 37 | Alert.alert('please choose future time'); 38 | this.hideDateTimePicker(); 39 | 40 | return; 41 | } 42 | const fireDate = ReactNativeAN.parseDate(datetime); 43 | console.log('A date has been picked: ', fireDate); 44 | 45 | const alarmNotifData = { 46 | id: this.makeid(), // Required 47 | title: 'Alarm Ringing', // Required 48 | message: 'My Notification Message', // Required 49 | channel: 'alarm-channel', // Required. Same id as specified in MainApplication's onCreate method 50 | ticker: 'My Notification Ticker', 51 | auto_cancel: true, // default: true 52 | vibrate: true, 53 | vibration: 100, // default: 100, no vibration if vibrate: false 54 | small_icon: 'ic_launcher', // Required 55 | large_icon: 'ic_launcher', 56 | play_sound: true, 57 | sound_name: null, // Plays custom notification ringtone if sound_name: null 58 | color: 'red', 59 | schedule_once: true, // Works with ReactNativeAN.scheduleAlarm so alarm fires once 60 | tag: 'some_tag', 61 | fire_date: fireDate, // Date for firing alarm, Required for ReactNativeAN.scheduleAlarm. 62 | 63 | // You can add any additional data that is important for the notification 64 | // It will be added to the PendingIntent along with the rest of the bundle. 65 | // e.g. 66 | data: { value: datetime }, 67 | }; 68 | 69 | this.props.add(alarmNotifData); 70 | ReactNativeAN.scheduleAlarm(alarmNotifData); 71 | this.hideDateTimePicker(); 72 | }; 73 | 74 | render() { 75 | return ( 76 | <> 77 |