├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .github └── stale.yml ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── feathersreactnativechat │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── bin └── copy-hosts-to-android ├── images └── feathers_logo_wide.png ├── index.android.js ├── index.ios.js ├── ios ├── FeathersReactNativeChat-tvOS │ └── Info.plist ├── FeathersReactNativeChat-tvOSTests │ └── Info.plist ├── FeathersReactNativeChat.xcodeproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FeathersReactNativeChat-tvOS.xcscheme ├── feathersreactnativechat.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── FeathersReactNativeChat.xcscheme ├── feathersreactnativechat │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ └── Icon-Spotlight-40@3x.png │ │ └── Banner.imageset │ │ │ ├── Contents.json │ │ │ └── feathers-banner.png │ ├── Info.plist │ └── main.m └── feathersreactnativechatTests │ ├── Info.plist │ └── feathersreactnativechatTests.m ├── package.json ├── src ├── Application.js ├── Store.js ├── Utils.js ├── baseStyles.js ├── components │ └── NavIcons.js └── screens │ ├── Chat.js │ ├── Launch.js │ ├── Login.js │ ├── Settings.js │ ├── Signup.js │ └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "transform-decorators-legacy" 4 | ], 5 | "presets": [ 6 | "react-native", 7 | "react-native-stage-0/decorator-support" 8 | ] 9 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | 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\)$' -> 'RelativeImageStub' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(3[0-8]\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(3[0-8]\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | 43 | unsafe.enable_getters_and_setters=true 44 | 45 | [version] 46 | ^0.38.0 47 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 84 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - greenkeeper 8 | - bug 9 | - security 10 | - enhancement 11 | # Label to use when marking an issue as stale 12 | staleLabel: wontfix 13 | # Comment to post when marking an issue as stale. Set to `false` to disable 14 | markComment: > 15 | This issue has been automatically marked as stale because it has not had 16 | recent activity. It will be closed if no further activity occurs. 17 | Apologies if the issue could not be resolved. FeathersJS ecosystem 18 | modules are community maintained so there may be a chance that there isn't anybody 19 | available to address the issue at the moment. 20 | For other ways to get help [see here](https://docs.feathersjs.com/help/readme.html). 21 | # Comment to post when closing a stale issue. Set to `false` to disable 22 | closeComment: false 23 | -------------------------------------------------------------------------------- /.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 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.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://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | 55 | # Haul 56 | .happypack/ 57 | haul-debug.log -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > __Note:__ All chat frontend examples have been moved to https://github.com/feathersjs/feathers-chat/ 2 | 3 | # feathers-react-native-chat 4 | 5 | A React Native example chat app using Feathers that talks with the [feathers-chat](https://github.com/feathersjs/feathers-chat) server. 6 | 7 | ## Getting Started 8 | 9 | 1. Make sure you have [NodeJS](https://nodejs.org/) and [npm](https://www.npmjs.com/) installed. 10 | 11 | 2. Clone down the repository 12 | 13 | 3. Install react native CLI 14 | 15 | ``` 16 | npm install -g react-native-cli 17 | ``` 18 | 19 | 4. Install your dependencies 20 | 21 | ``` 22 | cd path/to/feathers-react-native-chat; 23 | ``` 24 | 25 | ##### npm 26 | ``` 27 | npm install 28 | ``` 29 | ##### yarn 30 | ``` 31 | yarn install 32 | ``` 33 | 34 | 5. Start the [feathers-chat](https://github.com/feathersjs/feathers-chat) server. 35 | 36 | 6. Start the iOS app 37 | 38 | ``` 39 | react-native run-ios 40 | ``` 41 | 42 | 7. Start the Android app 43 | 44 | ``` 45 | react-native run-android 46 | ``` 47 | 48 | If you run into issues starting the apps please refer to the [React Native docs](https://facebook.github.io/react-native/docs/getting-started.html). It's most likely a problem with your environment. 49 | 50 | ## Changelog 51 | 52 | __O.1.0__ 53 | 54 | - Initial release 55 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.feathersreactnativechat', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.feathersreactnativechat', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /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 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion '25.0.0' 88 | 89 | defaultConfig { 90 | applicationId "com.feathersreactnativechat" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile project(':react-native-vector-icons') 130 | compile fileTree(dir: "libs", include: ["*.jar"]) 131 | compile "com.android.support:appcompat-v7:23.0.1" 132 | compile "com.facebook.react:react-native:+" // From node_modules 133 | } 134 | 135 | // Run this once to be able to run the application with BUCK 136 | // puts all compile dependencies into folder libs for BUCK to use 137 | task copyDownloadableDepsToLibs(type: Copy) { 138 | from configurations.compile 139 | into 'libs' 140 | } 141 | -------------------------------------------------------------------------------- /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 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 20 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/feathersreactnativechat/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.feathersreactnativechat; 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. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "FeathersReactNativeChat"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/feathersreactnativechat/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.feathersreactnativechat; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import com.oblador.vectoricons.VectorIconsPackage; 7 | import com.facebook.react.ReactNativeHost; 8 | import com.facebook.react.ReactPackage; 9 | import com.facebook.react.shell.MainReactPackage; 10 | import com.facebook.soloader.SoLoader; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | public boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage(), 27 | new VectorIconsPackage() 28 | ); 29 | } 30 | }; 31 | 32 | @Override 33 | public ReactNativeHost getReactNativeHost() { 34 | return mReactNativeHost; 35 | } 36 | 37 | @Override 38 | public void onCreate() { 39 | super.onCreate(); 40 | SoLoader.init(this, /* native exopackage */ false); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | featherschat 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /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.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Apr 01 15:45:58 MDT 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'FeathersReactNativeChat' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | 5 | include ':app' 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FeathersReactNativeChat", 3 | "displayName": "FeathersReactNativeChat" 4 | } -------------------------------------------------------------------------------- /bin/copy-hosts-to-android: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ip="$(ifconfig | grep -A 1 'en0' | tail -1 | cut -d ' ' -f 2)" 3 | adb root 4 | adb remount 5 | cat /etc/hosts|sed 's/127.0.0.1/'$ip'/' > /tmp/hosts-adb 6 | adb push /tmp/hosts-adb /system/etc/hosts -------------------------------------------------------------------------------- /images/feathers_logo_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/images/feathers_logo_wide.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | import React, { AppRegistry } from 'react-native'; 4 | 5 | import Application from './src/Application'; 6 | AppRegistry.registerComponent('FeathersReactNativeChat', () => Application); -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | import React, { AppRegistry } from 'react-native'; 3 | 4 | import Application from './src/Application'; 5 | AppRegistry.registerComponent('FeathersReactNativeChat', () => Application); -------------------------------------------------------------------------------- /ios/FeathersReactNativeChat-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/FeathersReactNativeChat-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/FeathersReactNativeChat.xcodeproj/xcshareddata/xcschemes/FeathersReactNativeChat-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* FeathersReactNativeChatTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FeathersReactNativeChatTests.m */; }; 16 | 07F6C867EFAE4E3CB758660C /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D80A7AB2B3F141C2A1E76565 /* MaterialIcons.ttf */; }; 17 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 18 | 1376EC3DD1C54D179467467F /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 18B9783581C149FBAE4A4493 /* Octicons.ttf */; }; 19 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 20 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 21 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 22 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 23 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 24 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 25 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 26 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 27 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 28 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 29 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 30 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */; }; 31 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 32 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 33 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 34 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 35 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 36 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 37 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 38 | 2DCD954D1E0B4F2C00145EB5 /* FeathersReactNativeChatTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* FeathersReactNativeChatTests.m */; }; 39 | 3B6C88D593F44131B1EE723E /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4E4622F14BE1446A93855193 /* EvilIcons.ttf */; }; 40 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 41 | 8277E09BB93C4AD197017B73 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7AA70A99BB16478EB9412C4B /* Ionicons.ttf */; }; 42 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 43 | A7FDD90DE6BB42CF9320B5E9 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0615761DC24C435CB8E0845F /* Foundation.ttf */; }; 44 | B5D9375161DC4D328E068B82 /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B1332E9BD47C44D5AE4957D6 /* MaterialCommunityIcons.ttf */; }; 45 | B6DB824505C84055B4EB8DF7 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BF55F2C198B2497FBB9FC62D /* Entypo.ttf */; }; 46 | C36121FCC87B406EA1275473 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F364DD8C61F4D47BD3C041B /* libRNVectorIcons.a */; }; 47 | D6B3389E61CB499F8E87A689 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E018B5301A24449D8C87F701 /* SimpleLineIcons.ttf */; }; 48 | EC5FB6F72B254E8BBBA6A608 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A5B88ADCB5A241EA852E88BC /* Zocial.ttf */; }; 49 | EECEE6E84E2A4C3B900C0296 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3F74A4F465984714AD35BBBE /* FontAwesome.ttf */; }; 50 | /* End PBXBuildFile section */ 51 | 52 | /* Begin PBXContainerItemProxy section */ 53 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 54 | isa = PBXContainerItemProxy; 55 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 56 | proxyType = 2; 57 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 58 | remoteInfo = RCTActionSheet; 59 | }; 60 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 65 | remoteInfo = RCTGeolocation; 66 | }; 67 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 72 | remoteInfo = RCTImage; 73 | }; 74 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 79 | remoteInfo = RCTNetwork; 80 | }; 81 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 84 | proxyType = 2; 85 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 86 | remoteInfo = RCTVibration; 87 | }; 88 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 91 | proxyType = 1; 92 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 93 | remoteInfo = FeathersReactNativeChat; 94 | }; 95 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 98 | proxyType = 2; 99 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 100 | remoteInfo = RCTSettings; 101 | }; 102 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 107 | remoteInfo = RCTWebSocket; 108 | }; 109 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 112 | proxyType = 2; 113 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 114 | remoteInfo = React; 115 | }; 116 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 119 | proxyType = 1; 120 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 121 | remoteInfo = "FeathersReactNativeChat-tvOS"; 122 | }; 123 | 2F4AFFBA1E84DD3F0009C72D /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 6C2C951795194810ACC41AC4 /* RNVectorIcons.xcodeproj */; 126 | proxyType = 2; 127 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 128 | remoteInfo = RNVectorIcons; 129 | }; 130 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 135 | remoteInfo = "RCTImage-tvOS"; 136 | }; 137 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 142 | remoteInfo = "RCTLinking-tvOS"; 143 | }; 144 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 149 | remoteInfo = "RCTNetwork-tvOS"; 150 | }; 151 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 156 | remoteInfo = "RCTSettings-tvOS"; 157 | }; 158 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 163 | remoteInfo = "RCTText-tvOS"; 164 | }; 165 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 170 | remoteInfo = "RCTWebSocket-tvOS"; 171 | }; 172 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 177 | remoteInfo = "React-tvOS"; 178 | }; 179 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 184 | remoteInfo = yoga; 185 | }; 186 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 191 | remoteInfo = "yoga-tvOS"; 192 | }; 193 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 198 | remoteInfo = cxxreact; 199 | }; 200 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 205 | remoteInfo = "cxxreact-tvOS"; 206 | }; 207 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 212 | remoteInfo = jschelpers; 213 | }; 214 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 219 | remoteInfo = "jschelpers-tvOS"; 220 | }; 221 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 226 | remoteInfo = RCTAnimation; 227 | }; 228 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 233 | remoteInfo = "RCTAnimation-tvOS"; 234 | }; 235 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 240 | remoteInfo = RCTLinking; 241 | }; 242 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 243 | isa = PBXContainerItemProxy; 244 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 245 | proxyType = 2; 246 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 247 | remoteInfo = RCTText; 248 | }; 249 | /* End PBXContainerItemProxy section */ 250 | 251 | /* Begin PBXFileReference section */ 252 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 253 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 254 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 255 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 256 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 257 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 258 | 00E356EE1AD99517003FC87E /* FeathersReactNativeChatTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FeathersReactNativeChatTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 259 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 260 | 00E356F21AD99517003FC87E /* FeathersReactNativeChatTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FeathersReactNativeChatTests.m; sourceTree = ""; }; 261 | 0615761DC24C435CB8E0845F /* Foundation.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Foundation.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; }; 262 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 263 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 264 | 13B07F961A680F5B00A75B9A /* FeathersReactNativeChat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FeathersReactNativeChat.app; sourceTree = BUILT_PRODUCTS_DIR; }; 265 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = FeathersReactNativeChat/AppDelegate.h; sourceTree = ""; }; 266 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = FeathersReactNativeChat/AppDelegate.m; sourceTree = ""; }; 267 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 268 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = FeathersReactNativeChat/Images.xcassets; sourceTree = ""; }; 269 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = FeathersReactNativeChat/Info.plist; sourceTree = ""; }; 270 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = FeathersReactNativeChat/main.m; sourceTree = ""; }; 271 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 272 | 18B9783581C149FBAE4A4493 /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; 273 | 2D02E47B1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "FeathersReactNativeChat-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 274 | 2D02E4901E0B4A5D006451C7 /* FeathersReactNativeChat-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "FeathersReactNativeChat-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 275 | 3F74A4F465984714AD35BBBE /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; }; 276 | 4E4622F14BE1446A93855193 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; 277 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 278 | 6C2C951795194810ACC41AC4 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 279 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 280 | 7AA70A99BB16478EB9412C4B /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 281 | 7F364DD8C61F4D47BD3C041B /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 282 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 283 | A5B88ADCB5A241EA852E88BC /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 284 | B1332E9BD47C44D5AE4957D6 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; 285 | BF55F2C198B2497FBB9FC62D /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; 286 | D80A7AB2B3F141C2A1E76565 /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; 287 | E018B5301A24449D8C87F701 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; 288 | /* End PBXFileReference section */ 289 | 290 | /* Begin PBXFrameworksBuildPhase section */ 291 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 292 | isa = PBXFrameworksBuildPhase; 293 | buildActionMask = 2147483647; 294 | files = ( 295 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | }; 299 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 300 | isa = PBXFrameworksBuildPhase; 301 | buildActionMask = 2147483647; 302 | files = ( 303 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 304 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 305 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 306 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 307 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 308 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 309 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 310 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 311 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 312 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 313 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 314 | C36121FCC87B406EA1275473 /* libRNVectorIcons.a in Frameworks */, 315 | ); 316 | runOnlyForDeploymentPostprocessing = 0; 317 | }; 318 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 319 | isa = PBXFrameworksBuildPhase; 320 | buildActionMask = 2147483647; 321 | files = ( 322 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 323 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 324 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 325 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 326 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 327 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 328 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 329 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 330 | ); 331 | runOnlyForDeploymentPostprocessing = 0; 332 | }; 333 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 334 | isa = PBXFrameworksBuildPhase; 335 | buildActionMask = 2147483647; 336 | files = ( 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | }; 340 | /* End PBXFrameworksBuildPhase section */ 341 | 342 | /* Begin PBXGroup section */ 343 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 344 | isa = PBXGroup; 345 | children = ( 346 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 347 | ); 348 | name = Products; 349 | sourceTree = ""; 350 | }; 351 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 352 | isa = PBXGroup; 353 | children = ( 354 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 355 | ); 356 | name = Products; 357 | sourceTree = ""; 358 | }; 359 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 360 | isa = PBXGroup; 361 | children = ( 362 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 363 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 364 | ); 365 | name = Products; 366 | sourceTree = ""; 367 | }; 368 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 369 | isa = PBXGroup; 370 | children = ( 371 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 372 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 373 | ); 374 | name = Products; 375 | sourceTree = ""; 376 | }; 377 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 378 | isa = PBXGroup; 379 | children = ( 380 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 381 | ); 382 | name = Products; 383 | sourceTree = ""; 384 | }; 385 | 00E356EF1AD99517003FC87E /* FeathersReactNativeChatTests */ = { 386 | isa = PBXGroup; 387 | children = ( 388 | 00E356F21AD99517003FC87E /* FeathersReactNativeChatTests.m */, 389 | 00E356F01AD99517003FC87E /* Supporting Files */, 390 | ); 391 | path = FeathersReactNativeChatTests; 392 | sourceTree = ""; 393 | }; 394 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 395 | isa = PBXGroup; 396 | children = ( 397 | 00E356F11AD99517003FC87E /* Info.plist */, 398 | ); 399 | name = "Supporting Files"; 400 | sourceTree = ""; 401 | }; 402 | 139105B71AF99BAD00B5F7CC /* Products */ = { 403 | isa = PBXGroup; 404 | children = ( 405 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 406 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 407 | ); 408 | name = Products; 409 | sourceTree = ""; 410 | }; 411 | 139FDEE71B06529A00C62182 /* Products */ = { 412 | isa = PBXGroup; 413 | children = ( 414 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 415 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 416 | ); 417 | name = Products; 418 | sourceTree = ""; 419 | }; 420 | 13B07FAE1A68108700A75B9A /* FeathersReactNativeChat */ = { 421 | isa = PBXGroup; 422 | children = ( 423 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 424 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 425 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 426 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 427 | 13B07FB61A68108700A75B9A /* Info.plist */, 428 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 429 | 13B07FB71A68108700A75B9A /* main.m */, 430 | ); 431 | name = FeathersReactNativeChat; 432 | sourceTree = ""; 433 | }; 434 | 146834001AC3E56700842450 /* Products */ = { 435 | isa = PBXGroup; 436 | children = ( 437 | 146834041AC3E56700842450 /* libReact.a */, 438 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 439 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 440 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 441 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 442 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 443 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 444 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 445 | ); 446 | name = Products; 447 | sourceTree = ""; 448 | }; 449 | 2F4AFF9E1E84DD3F0009C72D /* Products */ = { 450 | isa = PBXGroup; 451 | children = ( 452 | 2F4AFFBB1E84DD3F0009C72D /* libRNVectorIcons.a */, 453 | ); 454 | name = Products; 455 | sourceTree = ""; 456 | }; 457 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 458 | isa = PBXGroup; 459 | children = ( 460 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 461 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 462 | ); 463 | name = Products; 464 | sourceTree = ""; 465 | }; 466 | 78C398B11ACF4ADC00677621 /* Products */ = { 467 | isa = PBXGroup; 468 | children = ( 469 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 470 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 471 | ); 472 | name = Products; 473 | sourceTree = ""; 474 | }; 475 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 476 | isa = PBXGroup; 477 | children = ( 478 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 479 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 480 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 481 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 482 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 483 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 484 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 485 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 486 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 487 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 488 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 489 | 6C2C951795194810ACC41AC4 /* RNVectorIcons.xcodeproj */, 490 | ); 491 | name = Libraries; 492 | sourceTree = ""; 493 | }; 494 | 832341B11AAA6A8300B99B32 /* Products */ = { 495 | isa = PBXGroup; 496 | children = ( 497 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 498 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 499 | ); 500 | name = Products; 501 | sourceTree = ""; 502 | }; 503 | 83CBB9F61A601CBA00E9B192 = { 504 | isa = PBXGroup; 505 | children = ( 506 | 13B07FAE1A68108700A75B9A /* FeathersReactNativeChat */, 507 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 508 | 00E356EF1AD99517003FC87E /* FeathersReactNativeChatTests */, 509 | 83CBBA001A601CBA00E9B192 /* Products */, 510 | 8D05CE8FA12F4FABAC6EB400 /* Resources */, 511 | ); 512 | indentWidth = 2; 513 | sourceTree = ""; 514 | tabWidth = 2; 515 | }; 516 | 83CBBA001A601CBA00E9B192 /* Products */ = { 517 | isa = PBXGroup; 518 | children = ( 519 | 13B07F961A680F5B00A75B9A /* FeathersReactNativeChat.app */, 520 | 00E356EE1AD99517003FC87E /* FeathersReactNativeChatTests.xctest */, 521 | 2D02E47B1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOS.app */, 522 | 2D02E4901E0B4A5D006451C7 /* FeathersReactNativeChat-tvOSTests.xctest */, 523 | ); 524 | name = Products; 525 | sourceTree = ""; 526 | }; 527 | 8D05CE8FA12F4FABAC6EB400 /* Resources */ = { 528 | isa = PBXGroup; 529 | children = ( 530 | BF55F2C198B2497FBB9FC62D /* Entypo.ttf */, 531 | 4E4622F14BE1446A93855193 /* EvilIcons.ttf */, 532 | 3F74A4F465984714AD35BBBE /* FontAwesome.ttf */, 533 | 0615761DC24C435CB8E0845F /* Foundation.ttf */, 534 | 7AA70A99BB16478EB9412C4B /* Ionicons.ttf */, 535 | B1332E9BD47C44D5AE4957D6 /* MaterialCommunityIcons.ttf */, 536 | D80A7AB2B3F141C2A1E76565 /* MaterialIcons.ttf */, 537 | 18B9783581C149FBAE4A4493 /* Octicons.ttf */, 538 | E018B5301A24449D8C87F701 /* SimpleLineIcons.ttf */, 539 | A5B88ADCB5A241EA852E88BC /* Zocial.ttf */, 540 | ); 541 | name = Resources; 542 | sourceTree = ""; 543 | }; 544 | /* End PBXGroup section */ 545 | 546 | /* Begin PBXNativeTarget section */ 547 | 00E356ED1AD99517003FC87E /* FeathersReactNativeChatTests */ = { 548 | isa = PBXNativeTarget; 549 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FeathersReactNativeChatTests" */; 550 | buildPhases = ( 551 | 00E356EA1AD99517003FC87E /* Sources */, 552 | 00E356EB1AD99517003FC87E /* Frameworks */, 553 | 00E356EC1AD99517003FC87E /* Resources */, 554 | ); 555 | buildRules = ( 556 | ); 557 | dependencies = ( 558 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 559 | ); 560 | name = FeathersReactNativeChatTests; 561 | productName = FeathersReactNativeChatTests; 562 | productReference = 00E356EE1AD99517003FC87E /* FeathersReactNativeChatTests.xctest */; 563 | productType = "com.apple.product-type.bundle.unit-test"; 564 | }; 565 | 13B07F861A680F5B00A75B9A /* FeathersReactNativeChat */ = { 566 | isa = PBXNativeTarget; 567 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FeathersReactNativeChat" */; 568 | buildPhases = ( 569 | 13B07F871A680F5B00A75B9A /* Sources */, 570 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 571 | 13B07F8E1A680F5B00A75B9A /* Resources */, 572 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 573 | ); 574 | buildRules = ( 575 | ); 576 | dependencies = ( 577 | ); 578 | name = FeathersReactNativeChat; 579 | productName = "Hello World"; 580 | productReference = 13B07F961A680F5B00A75B9A /* FeathersReactNativeChat.app */; 581 | productType = "com.apple.product-type.application"; 582 | }; 583 | 2D02E47A1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOS */ = { 584 | isa = PBXNativeTarget; 585 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FeathersReactNativeChat-tvOS" */; 586 | buildPhases = ( 587 | 2D02E4771E0B4A5D006451C7 /* Sources */, 588 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 589 | 2D02E4791E0B4A5D006451C7 /* Resources */, 590 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 591 | ); 592 | buildRules = ( 593 | ); 594 | dependencies = ( 595 | ); 596 | name = "FeathersReactNativeChat-tvOS"; 597 | productName = "FeathersReactNativeChat-tvOS"; 598 | productReference = 2D02E47B1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOS.app */; 599 | productType = "com.apple.product-type.application"; 600 | }; 601 | 2D02E48F1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOSTests */ = { 602 | isa = PBXNativeTarget; 603 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FeathersReactNativeChat-tvOSTests" */; 604 | buildPhases = ( 605 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 606 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 607 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 608 | ); 609 | buildRules = ( 610 | ); 611 | dependencies = ( 612 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 613 | ); 614 | name = "FeathersReactNativeChat-tvOSTests"; 615 | productName = "FeathersReactNativeChat-tvOSTests"; 616 | productReference = 2D02E4901E0B4A5D006451C7 /* FeathersReactNativeChat-tvOSTests.xctest */; 617 | productType = "com.apple.product-type.bundle.unit-test"; 618 | }; 619 | /* End PBXNativeTarget section */ 620 | 621 | /* Begin PBXProject section */ 622 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 623 | isa = PBXProject; 624 | attributes = { 625 | LastUpgradeCheck = 610; 626 | ORGANIZATIONNAME = Facebook; 627 | TargetAttributes = { 628 | 00E356ED1AD99517003FC87E = { 629 | CreatedOnToolsVersion = 6.2; 630 | TestTargetID = 13B07F861A680F5B00A75B9A; 631 | }; 632 | 2D02E47A1E0B4A5D006451C7 = { 633 | CreatedOnToolsVersion = 8.2.1; 634 | ProvisioningStyle = Automatic; 635 | }; 636 | 2D02E48F1E0B4A5D006451C7 = { 637 | CreatedOnToolsVersion = 8.2.1; 638 | ProvisioningStyle = Automatic; 639 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 640 | }; 641 | }; 642 | }; 643 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FeathersReactNativeChat" */; 644 | compatibilityVersion = "Xcode 3.2"; 645 | developmentRegion = English; 646 | hasScannedForEncodings = 0; 647 | knownRegions = ( 648 | en, 649 | Base, 650 | ); 651 | mainGroup = 83CBB9F61A601CBA00E9B192; 652 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 653 | projectDirPath = ""; 654 | projectReferences = ( 655 | { 656 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 657 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 658 | }, 659 | { 660 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 661 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 662 | }, 663 | { 664 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 665 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 666 | }, 667 | { 668 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 669 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 670 | }, 671 | { 672 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 673 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 674 | }, 675 | { 676 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 677 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 678 | }, 679 | { 680 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 681 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 682 | }, 683 | { 684 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 685 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 686 | }, 687 | { 688 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 689 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 690 | }, 691 | { 692 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 693 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 694 | }, 695 | { 696 | ProductGroup = 146834001AC3E56700842450 /* Products */; 697 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 698 | }, 699 | { 700 | ProductGroup = 2F4AFF9E1E84DD3F0009C72D /* Products */; 701 | ProjectRef = 6C2C951795194810ACC41AC4 /* RNVectorIcons.xcodeproj */; 702 | }, 703 | ); 704 | projectRoot = ""; 705 | targets = ( 706 | 13B07F861A680F5B00A75B9A /* FeathersReactNativeChat */, 707 | 00E356ED1AD99517003FC87E /* FeathersReactNativeChatTests */, 708 | 2D02E47A1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOS */, 709 | 2D02E48F1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOSTests */, 710 | ); 711 | }; 712 | /* End PBXProject section */ 713 | 714 | /* Begin PBXReferenceProxy section */ 715 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 716 | isa = PBXReferenceProxy; 717 | fileType = archive.ar; 718 | path = libRCTActionSheet.a; 719 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 720 | sourceTree = BUILT_PRODUCTS_DIR; 721 | }; 722 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 723 | isa = PBXReferenceProxy; 724 | fileType = archive.ar; 725 | path = libRCTGeolocation.a; 726 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 727 | sourceTree = BUILT_PRODUCTS_DIR; 728 | }; 729 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 730 | isa = PBXReferenceProxy; 731 | fileType = archive.ar; 732 | path = libRCTImage.a; 733 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 734 | sourceTree = BUILT_PRODUCTS_DIR; 735 | }; 736 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 737 | isa = PBXReferenceProxy; 738 | fileType = archive.ar; 739 | path = libRCTNetwork.a; 740 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 741 | sourceTree = BUILT_PRODUCTS_DIR; 742 | }; 743 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 744 | isa = PBXReferenceProxy; 745 | fileType = archive.ar; 746 | path = libRCTVibration.a; 747 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 748 | sourceTree = BUILT_PRODUCTS_DIR; 749 | }; 750 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 751 | isa = PBXReferenceProxy; 752 | fileType = archive.ar; 753 | path = libRCTSettings.a; 754 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 755 | sourceTree = BUILT_PRODUCTS_DIR; 756 | }; 757 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 758 | isa = PBXReferenceProxy; 759 | fileType = archive.ar; 760 | path = libRCTWebSocket.a; 761 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 762 | sourceTree = BUILT_PRODUCTS_DIR; 763 | }; 764 | 146834041AC3E56700842450 /* libReact.a */ = { 765 | isa = PBXReferenceProxy; 766 | fileType = archive.ar; 767 | path = libReact.a; 768 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 769 | sourceTree = BUILT_PRODUCTS_DIR; 770 | }; 771 | 2F4AFFBB1E84DD3F0009C72D /* libRNVectorIcons.a */ = { 772 | isa = PBXReferenceProxy; 773 | fileType = archive.ar; 774 | path = libRNVectorIcons.a; 775 | remoteRef = 2F4AFFBA1E84DD3F0009C72D /* PBXContainerItemProxy */; 776 | sourceTree = BUILT_PRODUCTS_DIR; 777 | }; 778 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 779 | isa = PBXReferenceProxy; 780 | fileType = archive.ar; 781 | path = "libRCTImage-tvOS.a"; 782 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 783 | sourceTree = BUILT_PRODUCTS_DIR; 784 | }; 785 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 786 | isa = PBXReferenceProxy; 787 | fileType = archive.ar; 788 | path = "libRCTLinking-tvOS.a"; 789 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 790 | sourceTree = BUILT_PRODUCTS_DIR; 791 | }; 792 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 793 | isa = PBXReferenceProxy; 794 | fileType = archive.ar; 795 | path = "libRCTNetwork-tvOS.a"; 796 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 797 | sourceTree = BUILT_PRODUCTS_DIR; 798 | }; 799 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 800 | isa = PBXReferenceProxy; 801 | fileType = archive.ar; 802 | path = "libRCTSettings-tvOS.a"; 803 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 804 | sourceTree = BUILT_PRODUCTS_DIR; 805 | }; 806 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 807 | isa = PBXReferenceProxy; 808 | fileType = archive.ar; 809 | path = "libRCTText-tvOS.a"; 810 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 811 | sourceTree = BUILT_PRODUCTS_DIR; 812 | }; 813 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 814 | isa = PBXReferenceProxy; 815 | fileType = archive.ar; 816 | path = "libRCTWebSocket-tvOS.a"; 817 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 818 | sourceTree = BUILT_PRODUCTS_DIR; 819 | }; 820 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 821 | isa = PBXReferenceProxy; 822 | fileType = archive.ar; 823 | path = libReact.a; 824 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 825 | sourceTree = BUILT_PRODUCTS_DIR; 826 | }; 827 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 828 | isa = PBXReferenceProxy; 829 | fileType = archive.ar; 830 | path = libyoga.a; 831 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 832 | sourceTree = BUILT_PRODUCTS_DIR; 833 | }; 834 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 835 | isa = PBXReferenceProxy; 836 | fileType = archive.ar; 837 | path = libyoga.a; 838 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 839 | sourceTree = BUILT_PRODUCTS_DIR; 840 | }; 841 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 842 | isa = PBXReferenceProxy; 843 | fileType = archive.ar; 844 | path = libcxxreact.a; 845 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 846 | sourceTree = BUILT_PRODUCTS_DIR; 847 | }; 848 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 849 | isa = PBXReferenceProxy; 850 | fileType = archive.ar; 851 | path = libcxxreact.a; 852 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 853 | sourceTree = BUILT_PRODUCTS_DIR; 854 | }; 855 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 856 | isa = PBXReferenceProxy; 857 | fileType = archive.ar; 858 | path = libjschelpers.a; 859 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 860 | sourceTree = BUILT_PRODUCTS_DIR; 861 | }; 862 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 863 | isa = PBXReferenceProxy; 864 | fileType = archive.ar; 865 | path = libjschelpers.a; 866 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 867 | sourceTree = BUILT_PRODUCTS_DIR; 868 | }; 869 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 870 | isa = PBXReferenceProxy; 871 | fileType = archive.ar; 872 | path = libRCTAnimation.a; 873 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 874 | sourceTree = BUILT_PRODUCTS_DIR; 875 | }; 876 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 877 | isa = PBXReferenceProxy; 878 | fileType = archive.ar; 879 | path = "libRCTAnimation-tvOS.a"; 880 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 881 | sourceTree = BUILT_PRODUCTS_DIR; 882 | }; 883 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 884 | isa = PBXReferenceProxy; 885 | fileType = archive.ar; 886 | path = libRCTLinking.a; 887 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 888 | sourceTree = BUILT_PRODUCTS_DIR; 889 | }; 890 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 891 | isa = PBXReferenceProxy; 892 | fileType = archive.ar; 893 | path = libRCTText.a; 894 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 895 | sourceTree = BUILT_PRODUCTS_DIR; 896 | }; 897 | /* End PBXReferenceProxy section */ 898 | 899 | /* Begin PBXResourcesBuildPhase section */ 900 | 00E356EC1AD99517003FC87E /* Resources */ = { 901 | isa = PBXResourcesBuildPhase; 902 | buildActionMask = 2147483647; 903 | files = ( 904 | ); 905 | runOnlyForDeploymentPostprocessing = 0; 906 | }; 907 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 908 | isa = PBXResourcesBuildPhase; 909 | buildActionMask = 2147483647; 910 | files = ( 911 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 912 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 913 | B6DB824505C84055B4EB8DF7 /* Entypo.ttf in Resources */, 914 | 3B6C88D593F44131B1EE723E /* EvilIcons.ttf in Resources */, 915 | EECEE6E84E2A4C3B900C0296 /* FontAwesome.ttf in Resources */, 916 | A7FDD90DE6BB42CF9320B5E9 /* Foundation.ttf in Resources */, 917 | 8277E09BB93C4AD197017B73 /* Ionicons.ttf in Resources */, 918 | B5D9375161DC4D328E068B82 /* MaterialCommunityIcons.ttf in Resources */, 919 | 07F6C867EFAE4E3CB758660C /* MaterialIcons.ttf in Resources */, 920 | 1376EC3DD1C54D179467467F /* Octicons.ttf in Resources */, 921 | D6B3389E61CB499F8E87A689 /* SimpleLineIcons.ttf in Resources */, 922 | EC5FB6F72B254E8BBBA6A608 /* Zocial.ttf in Resources */, 923 | ); 924 | runOnlyForDeploymentPostprocessing = 0; 925 | }; 926 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 927 | isa = PBXResourcesBuildPhase; 928 | buildActionMask = 2147483647; 929 | files = ( 930 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 931 | ); 932 | runOnlyForDeploymentPostprocessing = 0; 933 | }; 934 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 935 | isa = PBXResourcesBuildPhase; 936 | buildActionMask = 2147483647; 937 | files = ( 938 | ); 939 | runOnlyForDeploymentPostprocessing = 0; 940 | }; 941 | /* End PBXResourcesBuildPhase section */ 942 | 943 | /* Begin PBXShellScriptBuildPhase section */ 944 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 945 | isa = PBXShellScriptBuildPhase; 946 | buildActionMask = 2147483647; 947 | files = ( 948 | ); 949 | inputPaths = ( 950 | ); 951 | name = "Bundle React Native code and images"; 952 | outputPaths = ( 953 | ); 954 | runOnlyForDeploymentPostprocessing = 0; 955 | shellPath = /bin/sh; 956 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 957 | }; 958 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 959 | isa = PBXShellScriptBuildPhase; 960 | buildActionMask = 2147483647; 961 | files = ( 962 | ); 963 | inputPaths = ( 964 | ); 965 | name = "Bundle React Native Code And Images"; 966 | outputPaths = ( 967 | ); 968 | runOnlyForDeploymentPostprocessing = 0; 969 | shellPath = /bin/sh; 970 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 971 | }; 972 | /* End PBXShellScriptBuildPhase section */ 973 | 974 | /* Begin PBXSourcesBuildPhase section */ 975 | 00E356EA1AD99517003FC87E /* Sources */ = { 976 | isa = PBXSourcesBuildPhase; 977 | buildActionMask = 2147483647; 978 | files = ( 979 | 00E356F31AD99517003FC87E /* FeathersReactNativeChatTests.m in Sources */, 980 | ); 981 | runOnlyForDeploymentPostprocessing = 0; 982 | }; 983 | 13B07F871A680F5B00A75B9A /* Sources */ = { 984 | isa = PBXSourcesBuildPhase; 985 | buildActionMask = 2147483647; 986 | files = ( 987 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 988 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 989 | ); 990 | runOnlyForDeploymentPostprocessing = 0; 991 | }; 992 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 993 | isa = PBXSourcesBuildPhase; 994 | buildActionMask = 2147483647; 995 | files = ( 996 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 997 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 998 | ); 999 | runOnlyForDeploymentPostprocessing = 0; 1000 | }; 1001 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1002 | isa = PBXSourcesBuildPhase; 1003 | buildActionMask = 2147483647; 1004 | files = ( 1005 | 2DCD954D1E0B4F2C00145EB5 /* FeathersReactNativeChatTests.m in Sources */, 1006 | ); 1007 | runOnlyForDeploymentPostprocessing = 0; 1008 | }; 1009 | /* End PBXSourcesBuildPhase section */ 1010 | 1011 | /* Begin PBXTargetDependency section */ 1012 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1013 | isa = PBXTargetDependency; 1014 | target = 13B07F861A680F5B00A75B9A /* FeathersReactNativeChat */; 1015 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1016 | }; 1017 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1018 | isa = PBXTargetDependency; 1019 | target = 2D02E47A1E0B4A5D006451C7 /* FeathersReactNativeChat-tvOS */; 1020 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1021 | }; 1022 | /* End PBXTargetDependency section */ 1023 | 1024 | /* Begin PBXVariantGroup section */ 1025 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1026 | isa = PBXVariantGroup; 1027 | children = ( 1028 | 13B07FB21A68108700A75B9A /* Base */, 1029 | ); 1030 | name = LaunchScreen.xib; 1031 | path = FeathersReactNativeChat; 1032 | sourceTree = ""; 1033 | }; 1034 | /* End PBXVariantGroup section */ 1035 | 1036 | /* Begin XCBuildConfiguration section */ 1037 | 00E356F61AD99517003FC87E /* Debug */ = { 1038 | isa = XCBuildConfiguration; 1039 | buildSettings = { 1040 | BUNDLE_LOADER = "$(TEST_HOST)"; 1041 | GCC_PREPROCESSOR_DEFINITIONS = ( 1042 | "DEBUG=1", 1043 | "$(inherited)", 1044 | ); 1045 | HEADER_SEARCH_PATHS = ( 1046 | "$(inherited)", 1047 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1048 | ); 1049 | INFOPLIST_FILE = FeathersReactNativeChatTests/Info.plist; 1050 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1051 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1052 | LIBRARY_SEARCH_PATHS = ( 1053 | "$(inherited)", 1054 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1055 | ); 1056 | OTHER_LDFLAGS = ( 1057 | "-ObjC", 1058 | "-lc++", 1059 | ); 1060 | PRODUCT_NAME = "$(TARGET_NAME)"; 1061 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FeathersReactNativeChat.app/FeathersReactNativeChat"; 1062 | }; 1063 | name = Debug; 1064 | }; 1065 | 00E356F71AD99517003FC87E /* Release */ = { 1066 | isa = XCBuildConfiguration; 1067 | buildSettings = { 1068 | BUNDLE_LOADER = "$(TEST_HOST)"; 1069 | COPY_PHASE_STRIP = NO; 1070 | HEADER_SEARCH_PATHS = ( 1071 | "$(inherited)", 1072 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1073 | ); 1074 | INFOPLIST_FILE = FeathersReactNativeChatTests/Info.plist; 1075 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1076 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1077 | LIBRARY_SEARCH_PATHS = ( 1078 | "$(inherited)", 1079 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1080 | ); 1081 | OTHER_LDFLAGS = ( 1082 | "-ObjC", 1083 | "-lc++", 1084 | ); 1085 | PRODUCT_NAME = "$(TARGET_NAME)"; 1086 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FeathersReactNativeChat.app/FeathersReactNativeChat"; 1087 | }; 1088 | name = Release; 1089 | }; 1090 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1091 | isa = XCBuildConfiguration; 1092 | buildSettings = { 1093 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1094 | CURRENT_PROJECT_VERSION = 1; 1095 | DEAD_CODE_STRIPPING = NO; 1096 | HEADER_SEARCH_PATHS = ( 1097 | "$(inherited)", 1098 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1099 | ); 1100 | INFOPLIST_FILE = FeathersReactNativeChat/Info.plist; 1101 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1102 | OTHER_LDFLAGS = ( 1103 | "$(inherited)", 1104 | "-ObjC", 1105 | "-lc++", 1106 | ); 1107 | PRODUCT_NAME = FeathersReactNativeChat; 1108 | VERSIONING_SYSTEM = "apple-generic"; 1109 | }; 1110 | name = Debug; 1111 | }; 1112 | 13B07F951A680F5B00A75B9A /* Release */ = { 1113 | isa = XCBuildConfiguration; 1114 | buildSettings = { 1115 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1116 | CURRENT_PROJECT_VERSION = 1; 1117 | HEADER_SEARCH_PATHS = ( 1118 | "$(inherited)", 1119 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1120 | ); 1121 | INFOPLIST_FILE = FeathersReactNativeChat/Info.plist; 1122 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1123 | OTHER_LDFLAGS = ( 1124 | "$(inherited)", 1125 | "-ObjC", 1126 | "-lc++", 1127 | ); 1128 | PRODUCT_NAME = FeathersReactNativeChat; 1129 | VERSIONING_SYSTEM = "apple-generic"; 1130 | }; 1131 | name = Release; 1132 | }; 1133 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1134 | isa = XCBuildConfiguration; 1135 | buildSettings = { 1136 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1137 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1138 | CLANG_ANALYZER_NONNULL = YES; 1139 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1140 | CLANG_WARN_INFINITE_RECURSION = YES; 1141 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1142 | DEBUG_INFORMATION_FORMAT = dwarf; 1143 | ENABLE_TESTABILITY = YES; 1144 | GCC_NO_COMMON_BLOCKS = YES; 1145 | HEADER_SEARCH_PATHS = ( 1146 | "$(inherited)", 1147 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1148 | ); 1149 | INFOPLIST_FILE = "FeathersReactNativeChat-tvOS/Info.plist"; 1150 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1151 | LIBRARY_SEARCH_PATHS = ( 1152 | "$(inherited)", 1153 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1154 | ); 1155 | OTHER_LDFLAGS = ( 1156 | "-ObjC", 1157 | "-lc++", 1158 | ); 1159 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FeathersReactNativeChat-tvOS"; 1160 | PRODUCT_NAME = "$(TARGET_NAME)"; 1161 | SDKROOT = appletvos; 1162 | TARGETED_DEVICE_FAMILY = 3; 1163 | TVOS_DEPLOYMENT_TARGET = 9.2; 1164 | }; 1165 | name = Debug; 1166 | }; 1167 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1168 | isa = XCBuildConfiguration; 1169 | buildSettings = { 1170 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1171 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1172 | CLANG_ANALYZER_NONNULL = YES; 1173 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1174 | CLANG_WARN_INFINITE_RECURSION = YES; 1175 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1176 | COPY_PHASE_STRIP = NO; 1177 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1178 | GCC_NO_COMMON_BLOCKS = YES; 1179 | HEADER_SEARCH_PATHS = ( 1180 | "$(inherited)", 1181 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1182 | ); 1183 | INFOPLIST_FILE = "FeathersReactNativeChat-tvOS/Info.plist"; 1184 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1185 | LIBRARY_SEARCH_PATHS = ( 1186 | "$(inherited)", 1187 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1188 | ); 1189 | OTHER_LDFLAGS = ( 1190 | "-ObjC", 1191 | "-lc++", 1192 | ); 1193 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FeathersReactNativeChat-tvOS"; 1194 | PRODUCT_NAME = "$(TARGET_NAME)"; 1195 | SDKROOT = appletvos; 1196 | TARGETED_DEVICE_FAMILY = 3; 1197 | TVOS_DEPLOYMENT_TARGET = 9.2; 1198 | }; 1199 | name = Release; 1200 | }; 1201 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1202 | isa = XCBuildConfiguration; 1203 | buildSettings = { 1204 | BUNDLE_LOADER = "$(TEST_HOST)"; 1205 | CLANG_ANALYZER_NONNULL = YES; 1206 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1207 | CLANG_WARN_INFINITE_RECURSION = YES; 1208 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1209 | DEBUG_INFORMATION_FORMAT = dwarf; 1210 | ENABLE_TESTABILITY = YES; 1211 | GCC_NO_COMMON_BLOCKS = YES; 1212 | INFOPLIST_FILE = "FeathersReactNativeChat-tvOSTests/Info.plist"; 1213 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1214 | LIBRARY_SEARCH_PATHS = ( 1215 | "$(inherited)", 1216 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1217 | ); 1218 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FeathersReactNativeChat-tvOSTests"; 1219 | PRODUCT_NAME = "$(TARGET_NAME)"; 1220 | SDKROOT = appletvos; 1221 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FeathersReactNativeChat-tvOS.app/FeathersReactNativeChat-tvOS"; 1222 | TVOS_DEPLOYMENT_TARGET = 10.1; 1223 | }; 1224 | name = Debug; 1225 | }; 1226 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1227 | isa = XCBuildConfiguration; 1228 | buildSettings = { 1229 | BUNDLE_LOADER = "$(TEST_HOST)"; 1230 | CLANG_ANALYZER_NONNULL = YES; 1231 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1232 | CLANG_WARN_INFINITE_RECURSION = YES; 1233 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1234 | COPY_PHASE_STRIP = NO; 1235 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1236 | GCC_NO_COMMON_BLOCKS = YES; 1237 | INFOPLIST_FILE = "FeathersReactNativeChat-tvOSTests/Info.plist"; 1238 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1239 | LIBRARY_SEARCH_PATHS = ( 1240 | "$(inherited)", 1241 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1242 | ); 1243 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.FeathersReactNativeChat-tvOSTests"; 1244 | PRODUCT_NAME = "$(TARGET_NAME)"; 1245 | SDKROOT = appletvos; 1246 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FeathersReactNativeChat-tvOS.app/FeathersReactNativeChat-tvOS"; 1247 | TVOS_DEPLOYMENT_TARGET = 10.1; 1248 | }; 1249 | name = Release; 1250 | }; 1251 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1252 | isa = XCBuildConfiguration; 1253 | buildSettings = { 1254 | ALWAYS_SEARCH_USER_PATHS = NO; 1255 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1256 | CLANG_CXX_LIBRARY = "libc++"; 1257 | CLANG_ENABLE_MODULES = YES; 1258 | CLANG_ENABLE_OBJC_ARC = YES; 1259 | CLANG_WARN_BOOL_CONVERSION = YES; 1260 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1261 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1262 | CLANG_WARN_EMPTY_BODY = YES; 1263 | CLANG_WARN_ENUM_CONVERSION = YES; 1264 | CLANG_WARN_INT_CONVERSION = YES; 1265 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1266 | CLANG_WARN_UNREACHABLE_CODE = YES; 1267 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1268 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1269 | COPY_PHASE_STRIP = NO; 1270 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1271 | GCC_C_LANGUAGE_STANDARD = gnu99; 1272 | GCC_DYNAMIC_NO_PIC = NO; 1273 | GCC_OPTIMIZATION_LEVEL = 0; 1274 | GCC_PREPROCESSOR_DEFINITIONS = ( 1275 | "DEBUG=1", 1276 | "$(inherited)", 1277 | ); 1278 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1279 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1280 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1281 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1282 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1283 | GCC_WARN_UNUSED_FUNCTION = YES; 1284 | GCC_WARN_UNUSED_VARIABLE = YES; 1285 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1286 | MTL_ENABLE_DEBUG_INFO = YES; 1287 | ONLY_ACTIVE_ARCH = YES; 1288 | SDKROOT = iphoneos; 1289 | }; 1290 | name = Debug; 1291 | }; 1292 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1293 | isa = XCBuildConfiguration; 1294 | buildSettings = { 1295 | ALWAYS_SEARCH_USER_PATHS = NO; 1296 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1297 | CLANG_CXX_LIBRARY = "libc++"; 1298 | CLANG_ENABLE_MODULES = YES; 1299 | CLANG_ENABLE_OBJC_ARC = YES; 1300 | CLANG_WARN_BOOL_CONVERSION = YES; 1301 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1302 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1303 | CLANG_WARN_EMPTY_BODY = YES; 1304 | CLANG_WARN_ENUM_CONVERSION = YES; 1305 | CLANG_WARN_INT_CONVERSION = YES; 1306 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1307 | CLANG_WARN_UNREACHABLE_CODE = YES; 1308 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1309 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1310 | COPY_PHASE_STRIP = YES; 1311 | ENABLE_NS_ASSERTIONS = NO; 1312 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1313 | GCC_C_LANGUAGE_STANDARD = gnu99; 1314 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1315 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1316 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1317 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1318 | GCC_WARN_UNUSED_FUNCTION = YES; 1319 | GCC_WARN_UNUSED_VARIABLE = YES; 1320 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1321 | MTL_ENABLE_DEBUG_INFO = NO; 1322 | SDKROOT = iphoneos; 1323 | VALIDATE_PRODUCT = YES; 1324 | }; 1325 | name = Release; 1326 | }; 1327 | /* End XCBuildConfiguration section */ 1328 | 1329 | /* Begin XCConfigurationList section */ 1330 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "FeathersReactNativeChatTests" */ = { 1331 | isa = XCConfigurationList; 1332 | buildConfigurations = ( 1333 | 00E356F61AD99517003FC87E /* Debug */, 1334 | 00E356F71AD99517003FC87E /* Release */, 1335 | ); 1336 | defaultConfigurationIsVisible = 0; 1337 | defaultConfigurationName = Release; 1338 | }; 1339 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "FeathersReactNativeChat" */ = { 1340 | isa = XCConfigurationList; 1341 | buildConfigurations = ( 1342 | 13B07F941A680F5B00A75B9A /* Debug */, 1343 | 13B07F951A680F5B00A75B9A /* Release */, 1344 | ); 1345 | defaultConfigurationIsVisible = 0; 1346 | defaultConfigurationName = Release; 1347 | }; 1348 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FeathersReactNativeChat-tvOS" */ = { 1349 | isa = XCConfigurationList; 1350 | buildConfigurations = ( 1351 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1352 | 2D02E4981E0B4A5E006451C7 /* Release */, 1353 | ); 1354 | defaultConfigurationIsVisible = 0; 1355 | defaultConfigurationName = Release; 1356 | }; 1357 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "FeathersReactNativeChat-tvOSTests" */ = { 1358 | isa = XCConfigurationList; 1359 | buildConfigurations = ( 1360 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1361 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1362 | ); 1363 | defaultConfigurationIsVisible = 0; 1364 | defaultConfigurationName = Release; 1365 | }; 1366 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "FeathersReactNativeChat" */ = { 1367 | isa = XCConfigurationList; 1368 | buildConfigurations = ( 1369 | 83CBBA201A601CBA00E9B192 /* Debug */, 1370 | 83CBBA211A601CBA00E9B192 /* Release */, 1371 | ); 1372 | defaultConfigurationIsVisible = 0; 1373 | defaultConfigurationName = Release; 1374 | }; 1375 | /* End XCConfigurationList section */ 1376 | }; 1377 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1378 | } 1379 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat.xcodeproj/xcshareddata/xcschemes/FeathersReactNativeChat.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"FeathersReactNativeChat" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 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 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "size" : "29x29", 15 | "idiom" : "iphone", 16 | "filename" : "Icon-Small@2x.png", 17 | "scale" : "2x" 18 | }, 19 | { 20 | "size" : "29x29", 21 | "idiom" : "iphone", 22 | "filename" : "Icon-Small@3x.png", 23 | "scale" : "3x" 24 | }, 25 | { 26 | "size" : "40x40", 27 | "idiom" : "iphone", 28 | "filename" : "Icon-Spotlight-40@2x.png", 29 | "scale" : "2x" 30 | }, 31 | { 32 | "size" : "40x40", 33 | "idiom" : "iphone", 34 | "filename" : "Icon-Spotlight-40@3x.png", 35 | "scale" : "3x" 36 | }, 37 | { 38 | "size" : "60x60", 39 | "idiom" : "iphone", 40 | "filename" : "Icon-60@2x.png", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "size" : "60x60", 45 | "idiom" : "iphone", 46 | "filename" : "Icon-60@3x.png", 47 | "scale" : "3x" 48 | } 49 | ], 50 | "info" : { 51 | "version" : 1, 52 | "author" : "xcode" 53 | } 54 | } -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/Banner.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "feathers-banner.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Images.xcassets/Banner.imageset/feathers-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-react-native-chat/cd08833b3e1e72c556cec6f1358487b52be7e4ed/ios/feathersreactnativechat/Images.xcassets/Banner.imageset/feathers-banner.png -------------------------------------------------------------------------------- /ios/feathersreactnativechat/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | FeathersReactNativeChat 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | FontAwesome.ttf 59 | Foundation.ttf 60 | Ionicons.ttf 61 | MaterialCommunityIcons.ttf 62 | MaterialIcons.ttf 63 | Octicons.ttf 64 | SimpleLineIcons.ttf 65 | Zocial.ttf 66 | 67 | 68 | -------------------------------------------------------------------------------- /ios/feathersreactnativechat/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/feathersreactnativechatTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/feathersreactnativechatTests/feathersreactnativechatTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface FeathersReactNativeChatTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation FeathersReactNativeChatTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FeathersReactNativeChat", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "core-decorators": "^0.15.0", 11 | "feathers": "2.1.1", 12 | "feathers-authentication-client": "0.3.1", 13 | "feathers-hooks": "^1.8.1", 14 | "feathers-socketio": "^1.5.2", 15 | "mobx": "^3.0.2", 16 | "mobx-react": "^4.1.0", 17 | "react": "~15.4.1", 18 | "react-native": "0.42.3", 19 | "react-native-elements": "^0.10.2", 20 | "react-native-gifted-chat": "0.1.3", 21 | "react-native-vector-icons": "^4.0.0", 22 | "react-navigation": "1.0.0-beta.9", 23 | "socket.io-client": "^1.7.3" 24 | }, 25 | "devDependencies": { 26 | "babel-jest": "19.0.0", 27 | "babel-plugin-transform-decorators-legacy": "^1.3.4", 28 | "babel-preset-react-native": "1.9.1", 29 | "babel-preset-react-native-stage-0": "^1.0.1", 30 | "babel-preset-stage-0": "^6.22.0", 31 | "jest": "19.0.2", 32 | "react-test-renderer": "~15.4.1" 33 | }, 34 | "jest": { 35 | "preset": "react-native" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/Application.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import {View} from 'react-native'; 3 | import {autobind} from 'core-decorators'; 4 | import {action, observable} from 'mobx'; 5 | import {observer} from 'mobx-react/native'; 6 | import {StackNavigator} from 'react-navigation'; 7 | 8 | import {Launch, Login, Signup, Chat, Settings} from './screens' 9 | 10 | import Store from './Store'; 11 | 12 | const UnauthenticatedNavigator = StackNavigator({ 13 | Launch: {screen: Launch}, 14 | Login: {screen: Login}, 15 | Signup: {screen: Signup} 16 | }, {mode: 'modal'}); 17 | 18 | const MainNavigator = StackNavigator({ 19 | Chat: {screen: Chat}, 20 | Settings: {screen: Settings}, 21 | }, {mode: 'modal'}); 22 | 23 | @autobind @observer 24 | export default class Application extends Component { 25 | constructor(props) { 26 | super(props); 27 | this.store = new Store(); 28 | } 29 | 30 | render() { 31 | return ( 32 | 33 | {this.store.isAuthenticated ? : 34 | } 35 | 36 | ); 37 | } 38 | 39 | } -------------------------------------------------------------------------------- /src/Store.js: -------------------------------------------------------------------------------- 1 | import {Alert, AsyncStorage} from 'react-native'; 2 | import {observable, action, computed} from 'mobx'; 3 | import {autobind} from 'core-decorators'; 4 | import io from 'socket.io-client'; 5 | import feathers from 'feathers/client' 6 | import hooks from 'feathers-hooks'; 7 | import socketio from 'feathers-socketio/client' 8 | import authentication from 'feathers-authentication-client'; 9 | const PLACEHOLDER = 'https://raw.githubusercontent.com/feathersjs/feathers-chat/master/public/placeholder.png'; 10 | const API_URL = 'http://localhost:3030'; 11 | 12 | @autobind 13 | export default class Store { 14 | 15 | @observable isAuthenticated = false; 16 | @observable isConnecting = false; 17 | @observable user = null; 18 | @observable messages = []; 19 | @observable hasMoreMessages = false; 20 | @observable skip = 0; 21 | 22 | constructor() { 23 | const options = {transports: ['websocket'], pingTimeout: 3000, pingInterval: 5000}; 24 | const socket = io(API_URL, options); 25 | 26 | this.app = feathers() 27 | .configure(socketio(socket)) 28 | .configure(hooks()) 29 | .configure(authentication({ 30 | storage: AsyncStorage // To store our accessToken 31 | })); 32 | 33 | this.connect(); 34 | 35 | this.app.service('messages').on('created', createdMessage => { 36 | this.messages.unshift(this.formatMessage(createdMessage)); 37 | }); 38 | 39 | this.app.service('messages').on('removed', removedMessage => { 40 | this.deleteMessage(removedMessage); 41 | }); 42 | 43 | if (this.app.get('accessToken')) { 44 | this.isAuthenticated = this.app.get('accessToken') !== null; 45 | } 46 | } 47 | 48 | connect() { 49 | this.isConnecting = true; 50 | 51 | this.app.io.on('connect', () => { 52 | this.isConnecting = false; 53 | 54 | this.authenticate().then(() => { 55 | console.log('authenticated after reconnection'); 56 | }).catch(error => { 57 | console.log('error authenticating after reconnection', error); 58 | }); 59 | }); 60 | 61 | this.app.io.on('disconnect', () => { 62 | console.log('disconnected'); 63 | this.isConnecting = true; 64 | }); 65 | } 66 | 67 | createAccount(email, password) { 68 | const userData = {email, password}; 69 | return this.app.service('users').create(userData).then((result) => { 70 | return this.authenticate(Object.assign(userData, {strategy: 'local'})) 71 | }); 72 | } 73 | 74 | login(email, password) { 75 | const payload = { 76 | strategy: 'local', 77 | email, 78 | password 79 | }; 80 | return this.authenticate(payload); 81 | } 82 | 83 | authenticate(options) { 84 | options = options ? options : undefined; 85 | return this._authenticate(options).then(user => { 86 | console.log('authenticated successfully', user._id, user.email); 87 | this.user = user; 88 | this.isAuthenticated = true; 89 | return Promise.resolve(user); 90 | }).catch(error => { 91 | console.log('authenticated failed', error.message); 92 | console.log(error); 93 | return Promise.reject(error); 94 | }); 95 | } 96 | 97 | _authenticate(payload) { 98 | return this.app.authenticate(payload) 99 | .then(response => { 100 | return this.app.passport.verifyJWT(response.accessToken); 101 | }) 102 | .then(payload => { 103 | return this.app.service('users').get(payload.userId); 104 | }).catch(e => Promise.reject(e)); 105 | } 106 | 107 | promptForLogout() { 108 | Alert.alert('Sign Out', 'Are you sure you want to sign out?', 109 | [ 110 | { 111 | text: 'Cancel', onPress: () => { 112 | }, style: 'cancel' 113 | }, 114 | {text: 'Yes', onPress: this.logout, style: 'destructive'}, 115 | ] 116 | ); 117 | } 118 | 119 | logout() { 120 | this.app.logout(); 121 | this.skip = 0; 122 | this.messages = []; 123 | this.user = null; 124 | this.isAuthenticated = false; 125 | } 126 | 127 | loadMessages(loadNextPage) { 128 | let $skip = this.skip; 129 | 130 | const query = {query: {$sort: {createdAt: -1}, $skip}}; 131 | 132 | return this.app.service('messages').find(query).then(response => { 133 | const messages = []; 134 | const skip = response.skip + response.limit; 135 | 136 | for (let message of response.data) { 137 | messages.push(this.formatMessage(message)); 138 | } 139 | 140 | console.log('loaded messages from server', JSON.stringify(messages, null, 2)); 141 | if (!loadNextPage) { 142 | this.messages = messages; 143 | } else { 144 | this.messages = this.messages.concat(messages); 145 | } 146 | this.skip = skip; 147 | this.hasMoreMessages = response.skip + response.limit < response.total; 148 | 149 | }).catch(error => { 150 | console.log(error); 151 | }); 152 | } 153 | 154 | formatMessage(message) { 155 | return { 156 | _id: message._id, 157 | text: message.text, 158 | position: message.user._id.toString() === this.user._id.toString() ? 'left' : 'right', 159 | createdAt: new Date(message.createdAt), 160 | user: { 161 | _id: message.user._id ? message.user._id : '', 162 | name: message.user.email ? message.user.email : message.name, 163 | avatar: message.user.avatar ? message.user.avatar : PLACEHOLDER, 164 | } 165 | }; 166 | } 167 | 168 | deleteMessage(messageToRemove) { 169 | let messages = this.messages; 170 | let idToRemove = messageToRemove.id ? messageToRemove.id : messageToRemove._id; 171 | 172 | messages = messages.filter(function (message) { 173 | return message.id !== idToRemove; 174 | }); 175 | this.messages = messages; 176 | } 177 | 178 | sendMessage(messages = {}, rowID = null) { 179 | this.app.service('messages').create({text: messages[0].text}).then(result => { 180 | console.log('message created!'); 181 | }).catch((error) => { 182 | console.log('ERROR creating message'); 183 | console.log(error); 184 | }); 185 | } 186 | } -------------------------------------------------------------------------------- /src/Utils.js: -------------------------------------------------------------------------------- 1 | export default class Utils { 2 | 3 | static validateEmail(email) { 4 | //TODO: Add more robust validation 5 | if (email.length > 0) { 6 | return true; 7 | } 8 | return false; 9 | } 10 | 11 | static validatePassword(password) { 12 | //TODO: Add more robust validation 13 | if (password.length > 0) { 14 | return true; 15 | } 16 | return false; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/baseStyles.js: -------------------------------------------------------------------------------- 1 | var React = require('react-native'); 2 | var {StyleSheet, Dimensions, Platform} = React; 3 | 4 | 5 | module.exports = StyleSheet.create({ 6 | container: { 7 | backgroundColor: 'white', 8 | flex: 1 9 | }, 10 | inputs: { 11 | marginTop: 15, 12 | flex: 1, 13 | }, 14 | inputContainer: { 15 | padding: 10, 16 | marginHorizontal: 15, 17 | alignItems: 'center', 18 | justifyContent: 'center', 19 | height: 40, 20 | borderBottomWidth: Platform.OS === 'ios' ? 1 : 0, 21 | borderColor: Platform.OS === 'ios' ? '#DDD' : 'transparent' 22 | }, 23 | input: { 24 | position: 'absolute', 25 | left: 5, 26 | top: 0, 27 | right: 5, 28 | bottom: 0, 29 | height: 40, 30 | fontSize: 18, 31 | padding: 5 32 | }, 33 | greyFont: { 34 | color: '#555' 35 | }, 36 | darkFont: { 37 | color: '#000' 38 | } 39 | }); 40 | 41 | module.exports.colors = { 42 | accentColor: '#31D8A0' 43 | }; -------------------------------------------------------------------------------- /src/components/NavIcons.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import {StyleSheet, TouchableOpacity} from 'react-native' 3 | import Icon from 'react-native-vector-icons/Ionicons'; 4 | 5 | export default { 6 | closeButton (goBack) { 7 | return ( 8 | goBack()}> 9 | 10 | 11 | ) 12 | }, 13 | 14 | settingsButton (navigate) { 15 | return ( navigate('Settings')}> 16 | 17 | 18 | ) 19 | } 20 | } 21 | 22 | const styles = StyleSheet.create({ 23 | close: { 24 | marginLeft: 10, 25 | fontSize: 44, 26 | color: '#555' 27 | }, 28 | settings: { 29 | marginRight: 10, 30 | fontSize: 28, 31 | color: '#555' 32 | } 33 | }); 34 | -------------------------------------------------------------------------------- /src/screens/Chat.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | import React, {Component} from 'react'; 3 | import { 4 | Dimensions, 5 | StyleSheet, 6 | Text, 7 | View, 8 | Platform 9 | } from 'react-native'; 10 | 11 | import {autobind} from 'core-decorators'; 12 | import {action, observable} from 'mobx'; 13 | import {observer} from 'mobx-react/native'; 14 | import {GiftedChat} from 'react-native-gifted-chat'; 15 | import NavIcons from '../components/NavIcons'; 16 | 17 | const maxHeight = Platform.OS === 'ios' ? Dimensions.get('window').height - 65 : Dimensions.get('window').height - 85; 18 | 19 | @observer @autobind 20 | export default class Chat extends Component { 21 | static navigationOptions = ({navigation}) => ({ 22 | title: '#feathersjs', 23 | headerRight: NavIcons.settingsButton(navigation.navigate), 24 | gesturesEnabled: false 25 | }); 26 | 27 | componentDidMount() { 28 | this.props.screenProps.store.loadMessages(); 29 | } 30 | 31 | render() { 32 | return ( 33 | 34 | {this.props.screenProps.store.messages.length > 0 && this._GiftedMessenger = c} 36 | user={{_id: this.props.screenProps.store.user._id}} 37 | messages={this.props.screenProps.store.messages.slice()} 38 | onSend={this.props.screenProps.store.sendMessage} 39 | loadEarlier={this.props.screenProps.store.hasMoreMessages} 40 | onLoadEarlier={this.props.screenProps.store.loadMessages.bind(this, true)} 41 | keyboardDismissMode='on-drag' 42 | autoFocus={false} 43 | maxHeight={maxHeight} 44 | />} 45 | {this.props.screenProps.store.isConnecting && 46 | Reconnecting ... 47 | } 48 | 49 | ); 50 | } 51 | } 52 | 53 | const styles = StyleSheet.create({ 54 | container: { 55 | ...StyleSheet.absoluteFillObject, 56 | backgroundColor: 'white' 57 | }, 58 | banner: { 59 | position: 'absolute', 60 | top: 0, 61 | left: 0, 62 | right: 0, 63 | padding: 5, 64 | backgroundColor: '#E98B50', 65 | opacity: 0.8 66 | }, 67 | bannerText: { 68 | color: 'white', 69 | fontWeight: '400', 70 | fontSize: 13, 71 | textAlign: 'center' 72 | }, 73 | settings: { 74 | marginRight: 10 75 | } 76 | }); 77 | 78 | 79 | -------------------------------------------------------------------------------- /src/screens/Launch.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import { 3 | Image, 4 | StyleSheet, 5 | Text, 6 | View, 7 | } from 'react-native'; 8 | 9 | import {Button} from 'react-native-elements'; 10 | import {autobind} from 'core-decorators'; 11 | 12 | @autobind 13 | export default class Launch extends Component { 14 | static navigationOptions = { 15 | header: null 16 | }; 17 | 18 | _showLogin() { 19 | this.props.navigation.navigate('Login'); 20 | } 21 | 22 | _showSignup() { 23 | this.props.navigation.navigate('Signup'); 24 | } 25 | 26 | render() { 27 | return ( 28 | 29 | 30 | 31 | Chat Demo 32 | 33 | 34 |