commit 1f90ca25758116fa75b12f032cab536eead02312 Author: Ryan McGrath Date: Thu Apr 5 15:17:53 2018 -0400 Initial commit. diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..0f0c07d --- /dev/null +++ b/.babelrc @@ -0,0 +1,12 @@ +{ + "presets": [ + "babel-preset-react-native-stage-0/decorator-support" + ], + "env": { + "development": { + "plugins": [ + "transform-react-jsx-source" + ] + } + } +} \ No newline at end of file diff --git a/.flowconfig b/.flowconfig new file mode 100644 index 0000000..5b1b233 --- /dev/null +++ b/.flowconfig @@ -0,0 +1,75 @@ +[ignore] +; We fork some components by platform +.*/*[.]android.js + +; Ignore templates for 'react-native init' +/node_modules/react-native/local-cli/templates/.* + +; Ignore RN jest +/node_modules/react-native/jest/.* + +; Ignore RNTester +/node_modules/react-native/RNTester/.* + +; Ignore the website subdir +/node_modules/react-native/website/.* + +; Ignore the Dangerfile +/node_modules/react-native/danger/dangerfile.js + +; Ignore Fbemitter +/node_modules/fbemitter/.* + +; Ignore "BUCK" generated dirs +/node_modules/react-native/\.buckd/ + +; Ignore unexpected extra "@providesModule" +.*/node_modules/.*/node_modules/fbjs/.* + +; Ignore polyfills +/node_modules/react-native/Libraries/polyfills/.* + +; Ignore various node_modules +/node_modules/react-native-gesture-handler/.* +/node_modules/expo/.* +/node_modules/react-navigation/.* +/node_modules/xdl/.* +/node_modules/reqwest/.* +/node_modules/metro-bundler/.* + +[include] + +[libs] +node_modules/react-native/Libraries/react-native/react-native-interface.js +node_modules/react-native/flow/ +node_modules/expo/flow/ + +[options] +emoji=true + +module.system=haste + +module.file_ext=.js +module.file_ext=.jsx +module.file_ext=.json +module.file_ext=.ios.js + +munge_underscores=true + +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' + +suppress_type=$FlowIssue +suppress_type=$FlowFixMe +suppress_type=$FlowFixMeProps +suppress_type=$FlowFixMeState +suppress_type=$FixMe + +suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\) +suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)?:? #[0-9]+ +suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy +suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError + +unsafe.enable_getters_and_setters=true + +[version] +^0.56.0 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14a1171 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# See https://help.github.com/ignore-files/ for more about ignoring files. + +# expo +.expo/ + +# dependencies +/node_modules + +# misc +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/.watchmanconfig b/.watchmanconfig new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/.watchmanconfig @@ -0,0 +1 @@ +{} diff --git a/android/app/BUCK b/android/app/BUCK new file mode 100644 index 0000000..adec48f --- /dev/null +++ b/android/app/BUCK @@ -0,0 +1,65 @@ +# To learn about Buck see [Docs](https://buckbuild.com/). +# To run your application with Buck: +# - install Buck +# - `npm start` - to start the packager +# - `cd android` +# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` +# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck +# - `buck install -r android/app` - compile, install and run application +# + +lib_deps = [] + +for jarfile in glob(['libs/*.jar']): + name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] + lib_deps.append(':' + name) + prebuilt_jar( + name = name, + binary_jar = jarfile, + ) + +for aarfile in glob(['libs/*.aar']): + name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] + lib_deps.append(':' + name) + android_prebuilt_aar( + name = name, + aar = aarfile, + ) + +android_library( + name = "all-libs", + exported_deps = lib_deps, +) + +android_library( + name = "app-code", + srcs = glob([ + "src/main/java/**/*.java", + ]), + deps = [ + ":all-libs", + ":build_config", + ":res", + ], +) + +android_build_config( + name = "build_config", + package = "com.memelee", +) + +android_resource( + name = "res", + package = "com.memelee", + res = "src/main/res", +) + +android_binary( + name = "app", + keystore = "//android/keystores:debug", + manifest = "src/main/AndroidManifest.xml", + package_type = "debug", + deps = [ + ":app-code", + ], +) diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..7085abd --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,150 @@ +apply plugin: "com.android.application" + +import com.android.build.OutputFile + +/** + * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets + * and bundleReleaseJsAndAssets). + * These basically call `react-native bundle` with the correct arguments during the Android build + * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the + * bundle directly from the development server. Below you can see all the possible configurations + * and their defaults. If you decide to add a configuration block, make sure to add it before the + * `apply from: "../../node_modules/react-native/react.gradle"` line. + * + * project.ext.react = [ + * // the name of the generated asset file containing your JS bundle + * bundleAssetName: "index.android.bundle", + * + * // the entry file for bundle generation + * entryFile: "index.android.js", + * + * // whether to bundle JS and assets in debug mode + * bundleInDebug: false, + * + * // whether to bundle JS and assets in release mode + * bundleInRelease: true, + * + * // whether to bundle JS and assets in another build variant (if configured). + * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants + * // The configuration property can be in the following formats + * // 'bundleIn${productFlavor}${buildType}' + * // 'bundleIn${buildType}' + * // bundleInFreeDebug: true, + * // bundleInPaidRelease: true, + * // bundleInBeta: true, + * + * // whether to disable dev mode in custom build variants (by default only disabled in release) + * // for example: to disable dev mode in the staging build type (if configured) + * devDisabledInStaging: true, + * // The configuration property can be in the following formats + * // 'devDisabledIn${productFlavor}${buildType}' + * // 'devDisabledIn${buildType}' + * + * // the root of your project, i.e. where "package.json" lives + * root: "../../", + * + * // where to put the JS bundle asset in debug mode + * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", + * + * // where to put the JS bundle asset in release mode + * jsBundleDirRelease: "$buildDir/intermediates/assets/release", + * + * // where to put drawable resources / React Native assets, e.g. the ones you use via + * // require('./image.png')), in debug mode + * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", + * + * // where to put drawable resources / React Native assets, e.g. the ones you use via + * // require('./image.png')), in release mode + * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", + * + * // by default the gradle tasks are skipped if none of the JS files or assets change; this means + * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to + * // date; if you have any other folders that you want to ignore for performance reasons (gradle + * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ + * // for example, you might want to remove it from here. + * inputExcludes: ["android/**", "ios/**"], + * + * // override which node gets called and with what additional arguments + * nodeExecutableAndArgs: ["node"], + * + * // supply additional arguments to the packager + * extraPackagerArgs: [] + * ] + */ + +project.ext.react = [ + entryFile: "index.js" +] + +apply from: "../../node_modules/react-native/react.gradle" + +/** + * Set this to true to create two separate APKs instead of one: + * - An APK that only works on ARM devices + * - An APK that only works on x86 devices + * The advantage is the size of the APK is reduced by about 4MB. + * Upload all the APKs to the Play Store and people will download + * the correct one based on the CPU architecture of their device. + */ +def enableSeparateBuildPerCPUArchitecture = false + +/** + * Run Proguard to shrink the Java bytecode in release builds. + */ +def enableProguardInReleaseBuilds = false + +android { + compileSdkVersion 23 + buildToolsVersion "23.0.1" + + defaultConfig { + applicationId "com.memelee" + minSdkVersion 16 + targetSdkVersion 22 + versionCode 1 + versionName "1.0" + ndk { + abiFilters "armeabi-v7a", "x86" + } + } + splits { + abi { + reset() + enable enableSeparateBuildPerCPUArchitecture + universalApk false // If true, also generate a universal APK + include "armeabi-v7a", "x86" + } + } + buildTypes { + release { + minifyEnabled enableProguardInReleaseBuilds + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + } + } + // applicationVariants are e.g. debug, release + applicationVariants.all { variant -> + variant.outputs.each { output -> + // For each separate APK per architecture, set a unique version code as described here: + // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits + def versionCodes = ["armeabi-v7a":1, "x86":2] + def abi = output.getFilter(OutputFile.ABI) + if (abi != null) { // null for the universal-debug, universal-release variants + output.versionCodeOverride = + versionCodes.get(abi) * 1048576 + defaultConfig.versionCode + } + } + } +} + +dependencies { + compile fileTree(dir: "libs", include: ["*.jar"]) + compile "com.android.support:appcompat-v7:23.0.1" + compile "com.facebook.react:react-native:+" // From node_modules +} + +// Run this once to be able to run the application with BUCK +// puts all compile dependencies into folder libs for BUCK to use +task copyDownloadableDepsToLibs(type: Copy) { + from configurations.compile + into 'libs' +} diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro new file mode 100644 index 0000000..6e8516c --- /dev/null +++ b/android/app/proguard-rules.pro @@ -0,0 +1,70 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Disabling obfuscation is useful if you collect stack traces from production crashes +# (unless you are using a system that supports de-obfuscate the stack traces). +-dontobfuscate + +# React Native + +# Keep our interfaces so they can be used by other ProGuard rules. +# See http://sourceforge.net/p/proguard/bugs/466/ +-keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip +-keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters +-keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip + +# Do not strip any method/class that is annotated with @DoNotStrip +-keep @com.facebook.proguard.annotations.DoNotStrip class * +-keep @com.facebook.common.internal.DoNotStrip class * +-keepclassmembers class * { + @com.facebook.proguard.annotations.DoNotStrip *; + @com.facebook.common.internal.DoNotStrip *; +} + +-keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { + void set*(***); + *** get*(); +} + +-keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } +-keep class * extends com.facebook.react.bridge.NativeModule { *; } +-keepclassmembers,includedescriptorclasses class * { native ; } +-keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } +-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } +-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } + +-dontwarn com.facebook.react.** + +# TextLayoutBuilder uses a non-public Android constructor within StaticLayout. +# See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. +-dontwarn android.text.StaticLayout + +# okhttp + +-keepattributes Signature +-keepattributes *Annotation* +-keep class okhttp3.** { *; } +-keep interface okhttp3.** { *; } +-dontwarn okhttp3.** + +# okio + +-keep class sun.misc.Unsafe { *; } +-dontwarn java.nio.file.* +-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement +-dontwarn okio.** diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..c849ef5 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + diff --git a/android/app/src/main/java/com/memelee/MainActivity.java b/android/app/src/main/java/com/memelee/MainActivity.java new file mode 100644 index 0000000..1dbc149 --- /dev/null +++ b/android/app/src/main/java/com/memelee/MainActivity.java @@ -0,0 +1,15 @@ +package com.memelee; + +import com.facebook.react.ReactActivity; + +public class MainActivity extends ReactActivity { + + /** + * Returns the name of the main component registered from JavaScript. + * This is used to schedule rendering of the component. + */ + @Override + protected String getMainComponentName() { + return "memelee"; + } +} diff --git a/android/app/src/main/java/com/memelee/MainApplication.java b/android/app/src/main/java/com/memelee/MainApplication.java new file mode 100644 index 0000000..11407bd --- /dev/null +++ b/android/app/src/main/java/com/memelee/MainApplication.java @@ -0,0 +1,45 @@ +package com.memelee; + +import android.app.Application; + +import com.facebook.react.ReactApplication; +import com.facebook.react.ReactNativeHost; +import com.facebook.react.ReactPackage; +import com.facebook.react.shell.MainReactPackage; +import com.facebook.soloader.SoLoader; + +import java.util.Arrays; +import java.util.List; + +public class MainApplication extends Application implements ReactApplication { + + private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { + @Override + public boolean getUseDeveloperSupport() { + return BuildConfig.DEBUG; + } + + @Override + protected List getPackages() { + return Arrays.asList( + new MainReactPackage() + ); + } + + @Override + protected String getJSMainModuleName() { + return "index"; + } + }; + + @Override + public ReactNativeHost getReactNativeHost() { + return mReactNativeHost; + } + + @Override + public void onCreate() { + super.onCreate(); + SoLoader.init(this, /* native exopackage */ false); + } +} diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..cde69bc Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..c133a0c Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..bfa42f0 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..324e72c Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..9170c7c --- /dev/null +++ b/android/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Memelee + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..319eb0c --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..eed9972 --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,24 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + jcenter() + } + dependencies { + classpath 'com.android.tools.build:gradle:2.2.3' + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + mavenLocal() + jcenter() + maven { + // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm + url "$rootDir/../node_modules/react-native/android" + } + } +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..1fd964e --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,20 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +# Default value: -Xmx10248m -XX:MaxPermSize=256m +# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true + +android.useDeprecatedNdk=true diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..b5166da Binary files /dev/null and b/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..dbdc05d --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip diff --git a/android/gradlew b/android/gradlew new file mode 100755 index 0000000..91a7e26 --- /dev/null +++ b/android/gradlew @@ -0,0 +1,164 @@ +#!/usr/bin/env bash + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn ( ) { + echo "$*" +} + +die ( ) { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; +esac + +# For Cygwin, ensure paths are in UNIX format before anything is touched. +if $cygwin ; then + [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >&- +APP_HOME="`pwd -P`" +cd "$SAVED" >&- + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/android/gradlew.bat b/android/gradlew.bat new file mode 100644 index 0000000..aec9973 --- /dev/null +++ b/android/gradlew.bat @@ -0,0 +1,90 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/android/keystores/BUCK b/android/keystores/BUCK new file mode 100644 index 0000000..88e4c31 --- /dev/null +++ b/android/keystores/BUCK @@ -0,0 +1,8 @@ +keystore( + name = "debug", + properties = "debug.keystore.properties", + store = "debug.keystore", + visibility = [ + "PUBLIC", + ], +) diff --git a/android/keystores/debug.keystore.properties b/android/keystores/debug.keystore.properties new file mode 100644 index 0000000..121bfb4 --- /dev/null +++ b/android/keystores/debug.keystore.properties @@ -0,0 +1,4 @@ +key.store=debug.keystore +key.alias=androiddebugkey +key.store.password=android +key.alias.password=android diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..b4cd786 --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,3 @@ +rootProject.name = 'memelee' + +include ':app' diff --git a/controllers/BookmarksViewController.js b/controllers/BookmarksViewController.js new file mode 100644 index 0000000..8697ad2 --- /dev/null +++ b/controllers/BookmarksViewController.js @@ -0,0 +1,24 @@ +/** + * BookmarksViewController + * + * Yeah, I do it iOS style. Handles bookmarked tournaments. + * + * @copyright Ryan McGrath 2018. + */ + +import moment from 'moment'; +import React from 'react'; +import {FlatList, Image, Text, View, TouchableOpacity} from 'react-native'; + +import MemeleeViewController from './MemeleeViewController'; + +export default class BookmarksViewController extends MemeleeViewController { + state = {data: []}; + keyExtractor = (item, index) => item.id; + + render() { + return { + return ; + }} /> + } +} diff --git a/controllers/BracketViewController.js b/controllers/BracketViewController.js new file mode 100644 index 0000000..968ec47 --- /dev/null +++ b/controllers/BracketViewController.js @@ -0,0 +1,61 @@ +/** + * BracketViewController + * + * Yeah, I do it iOS style. Handles displaying tournament bracket data. + * + * @copyright Ryan McGrath 2018. + */ + +import moment from 'moment'; +import React from 'react'; +import {ScrollView, Text, View} from 'react-native'; +import {v4} from 'uuid'; + +//import SmashGG from '../store'; +import MemeleeViewController from './MemeleeViewController'; + +const Match = ({set, ...rest}) => ( + + {set.entrant1.name ? set.entrant1.name : ''} {set.entrant1Score} + + {set.entrant2.name ? set.entrant2.name : ''} {set.entrant2Score} + +); + +export default class BracketViewController extends MemeleeViewController { + state = { + brackets: { + winners: [], + losers: [], + grandFinals: [] + } + }; + + componentWillMount() { + const evtSlugs = this.props.evt.slug.split('/'); + const evtSlug = evtSlugs.length > 0 ? evtSlugs[evtSlugs.length - 1] : null; + const tournamentSlug = this.props.tournament.slugs[0].replace('tournament/', ''); + + SmashGG.fetchBracketData(tournamentSlug, evtSlug, this.props.bracket.id).then(this.updateBracketsData).catch(console.error); + } + + updateBracketsData = (brackets) => { + this.setState({brackets: brackets}); + } + + render() { + return ( + {['winners', 'losers'].map(key => ( + + {this.state.brackets[key].map(bracket => ( + + {bracket.title} + {bracket.sets.map(set => )} + + ))} + + ))} + ); + } +} + diff --git a/controllers/EventInfoViewController.js b/controllers/EventInfoViewController.js new file mode 100644 index 0000000..35ae812 --- /dev/null +++ b/controllers/EventInfoViewController.js @@ -0,0 +1,81 @@ +/** + * EventInfoViewController + * + * Yeah, I do it iOS style. Handles displaying tournament event data. + * + * @copyright Ryan McGrath 2018. + */ + +import moment from 'moment'; +import React from 'react'; +import {ScrollView, Image, Text, View, TouchableOpacity} from 'react-native'; +import Markdown from 'react-native-simple-markdown' +//import SmashGG from '../store'; + +import MemeleeViewController from './MemeleeViewController'; + +export default class EventInfoViewController extends MemeleeViewController { + state = { + standings: [], + brackets: [] + }; + + componentWillMount() { + const evtSlugs = this.props.evt.slug.split('/'); + const evtSlug = evtSlugs.length > 0 ? evtSlugs[evtSlugs.length - 1] : null; + const tournamentSlug = this.props.tournament.slugs[0].replace('tournament/', ''); + + if((evtSlug && evtSlug !== '') && (tournamentSlug && tournamentSlug != '')) { + SmashGG.fetchEventExpanded(tournamentSlug, evtSlug).then(this.updateBracketsData).catch(console.error); + SmashGG.fetchEventStandings(tournamentSlug, evtSlug).then(this.updateStandingsData).catch(console.error); + } + } + + updateBracketsData = (data) => { + this.setState({brackets: data}); + } + + updateStandingsData = (data) => { + this.setState({standings: data}); + } + + onBracketPress = (bracket) => { + this.props.navigator.push({ + screen: 'memelee.bracket', + title: bracket.name, + backButtonTitle: 'Back', + passProps: { + tournament: this.props.tournament, + evt: this.props.evt, + bracket: bracket + }, + navigatorStyle: {tabBarHidden: true} + }); + } + + render() { + return ( + Brackets + {this.state.brackets.map(bracket => ( + this.onBracketPress(bracket)}> + {bracket.name} + + ))} + + Standings + + Players + Losses + + {this.state.standings.map(standing => ( + + + {standing.finalPlacement} + + {standing.name} + {standing.losses.map(loss => {loss})} + + ))} + ); + } +} diff --git a/controllers/MemeleeViewController.js b/controllers/MemeleeViewController.js new file mode 100644 index 0000000..37597dd --- /dev/null +++ b/controllers/MemeleeViewController.js @@ -0,0 +1,15 @@ +/** + * MemeleeViewController.js + * + * Yes yes iOS style etc etc. Handles ensuring that all view controllers have default styling + * and such applied. + * + * @copyright Ryan McGrath 2018. + */ + +import React from 'react'; +import styles from '../styles'; + +export default class MemeleeController extends React.Component { + static navigatorStyle = styles.navigatorStyles; +}; diff --git a/controllers/TournamentInfoViewController.js b/controllers/TournamentInfoViewController.js new file mode 100644 index 0000000..0a9f8b7 --- /dev/null +++ b/controllers/TournamentInfoViewController.js @@ -0,0 +1,73 @@ +/** + * TournamentInfoViewController + * + * Yeah, I do it iOS style. Handles fetching and displaying tournament data. + * + * @copyright Ryan McGrath 2018. + */ + +import moment from 'moment'; +import React from 'react'; +import {ScrollView, StyleSheet, Image, Text, View, TouchableOpacity, Dimensions} from 'react-native'; +//import Markdown from 'react-native-simple-markdown' +import Markdown from 'react-native-markdown-renderer'; +import SegmentedControlTab from 'react-native-segmented-control-tab'; +import SettingsList, {Header, Item} from 'react-native-settings-list'; + +import styles from '../styles'; +import MemeleeViewController from './MemeleeViewController'; + +const w = Dimensions.get('screen').width; +/* + + Register + + + Bookmark + + +*/ + + +export default class TournamentInfoViewController extends MemeleeViewController { + state = { + selectedIndex: 0 + }; + + onEventTapped = (evt) => { + this.props.navigator.push({ + screen: 'memelee.tournamentEventInfoScreen', + title: evt.name, + passProps: {tournament: this.props.tournament, evt: evt}, + navigatorStyle: {tabBarHidden: true} + }); + } + + swapIndex = (index) => { + this.setState({ + selectedIndex: index + }); + } + + render() { + const s = StyleSheet.flatten(styles.tournamentDetailsEventWrapper); + + return ( + + + + + {this.state.selectedIndex === 0 ? ( + + {this.props.tournament.details && this.props.tournament.details !== '' ? this.props.tournament.details : ''} + + ) : null} + + {this.state.selectedIndex === 1 ? ( + {this.props.tournament.memeleeEvents.map(evt => ( + + ))} + ) : null} + ); + } +} diff --git a/controllers/TournamentsListViewController.js b/controllers/TournamentsListViewController.js new file mode 100644 index 0000000..afd64e7 --- /dev/null +++ b/controllers/TournamentsListViewController.js @@ -0,0 +1,63 @@ +/** + * UpcomingTournamentsViewController + * + * Yeah, I do it iOS style. Handles fetching and displaying upcoming tournaments. + * + * @copyright Ryan McGrath 2018. + */ + +import moment from 'moment'; +import React from 'react'; +import {FlatList, View, ActivityIndicator} from 'react-native'; +import {inject, observer} from 'mobx-react/native'; +import {SearchBar} from 'react-native-elements'; + +import styles from '../styles'; +import MemeleeViewController from './MemeleeViewController'; +import TournamentRow from './components/TournamentRow'; + +const keyExtractor = (item, index) => item.id; + +@inject('Tournaments') @observer +export default class UpcomingTournamentsViewController extends MemeleeViewController { + componentWillMount() { + this.props.Tournaments.fetchFeatured(); + } + + onTap = (tournament) => { + this.props.navigator.push({ + screen: 'memelee.tournamentInfoScreen', + title: tournament.name, + passProps: {tournament: tournament}, + navigatorStyle: {tabBarHidden: true} + }); + } + + renderHeader = () => ( + + ) + + renderFooter = () => ( + this.props.Tournaments.fetchingData ? ( + + ) : null + ) + + renderItem = ({item}) => () + + render() { + const props = { + data: this.props.Tournaments.fetchingData ? [] : + this.props.Tournaments.mode === 'search' ? this.props.Tournaments.searchResults : + this.props.Tournaments.tournamentsList, + + keyExtractor: keyExtractor, + contentContainerStyle: styles.tournamentsListView, + ListHeaderComponent: this.renderHeader, + ListFooterComponent: this.renderFooter, + renderItem: this.renderItem + }; + + return + } +} diff --git a/controllers/components/TournamentRow.js b/controllers/components/TournamentRow.js new file mode 100644 index 0000000..a23541f --- /dev/null +++ b/controllers/components/TournamentRow.js @@ -0,0 +1,51 @@ +/** + * TournamentRow.js + * + * That row that displays tournament info. + * + * @copyright Ryan McGrath 2018. + */ + +import React from 'react'; +import {Image, Text, View, TouchableOpacity, Dimensions} from 'react-native'; +import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; + +import styles from '../../styles'; + +const width = Dimensions.get('window').width; + +export default class TournamentRow extends React.Component { + onPress = () => { + this.props.onTap(this.props.tournament); + } + + render() { + const x = width - 32; + const w = {width: x, height: 130}; //x * this.props.tournament.memeleePromoImage.ratio}; + + return ( + + + + {this.props.tournament.name} + + + {this.props.tournament.memeleeTournamentRange} + + + + {this.props.tournament.hasOnlineEvents && (!this.props.tournament.city || this.props.tournament.city === '') ? 'Online' : (this.props.tournament.city ? this.props.tournament.city + ', ' : '') + this.props.tournament.addrState} + + + + {this.props.tournament.memeleeEventsCount} Events + + + {this.props.tournament.attendeeCount} Attendees + + + + + ); + } +} diff --git a/controllers/settings/index.js b/controllers/settings/index.js new file mode 100644 index 0000000..18c9627 --- /dev/null +++ b/controllers/settings/index.js @@ -0,0 +1,27 @@ +/** + * SettingsViewController + * + * Yeah, I do it iOS style. Handles settings. + * + * @copyright Ryan McGrath 2018. + */ + +import React from 'react'; +import {ScrollView} from 'react-native'; +import SettingsList, {Header, Item} from 'react-native-settings-list'; + +import styles from '../../styles'; +import MemeleeViewController from '../MemeleeViewController'; + +export default class SettingsViewController extends MemeleeViewController { + pressed = () => {} + + render() { + return ( + +
+ + + ); + } +} diff --git a/images/placeholder1.png b/images/placeholder1.png new file mode 100644 index 0000000..b802585 Binary files /dev/null and b/images/placeholder1.png differ diff --git a/images/placeholder2.png b/images/placeholder2.png new file mode 100644 index 0000000..df0330e Binary files /dev/null and b/images/placeholder2.png differ diff --git a/images/placeholder3.png b/images/placeholder3.png new file mode 100644 index 0000000..62d2b66 Binary files /dev/null and b/images/placeholder3.png differ diff --git a/index.js b/index.js new file mode 100644 index 0000000..0810099 --- /dev/null +++ b/index.js @@ -0,0 +1,53 @@ +/** + * index.js, ala the App itself~ + * + * Handles registering navigation components (screens), and making sure some basic + * tab bar styling is applied. + * + * @copyright Ryan McGrath 2018 + */ + +import React from 'react'; +import {Navigation} from 'react-native-navigation'; +import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; + +import styles from './styles'; +import Stores from './stores'; +import Provider from './utils/MobxRnnProvider'; + +import TournamentsListViewController from './controllers/TournamentsListViewController'; +import TournamentInfoViewController from './controllers/TournamentInfoViewController'; +import EventInfoViewController from './controllers/EventInfoViewController'; +import BracketViewController from './controllers//BracketViewController'; +import BookmarksViewController from './controllers/BookmarksViewController'; +import SettingsViewController from './controllers/settings'; + +const Constants = { + Screens: { + TournamentsList: 'memelee.tournamentsList', + TournamentInfoScreen: 'memelee.tournamentInfoScreen', + TournamentEventInfoScreen: 'memelee.tournamentEventInfoScreen', + Bracket: 'memelee.tournamentBracket', + Bookmarks: 'memelee.bookmarks', + Settings: 'memelee.settings' + } +}; + +Navigation.registerComponent(Constants.Screens.TournamentsList, () => TournamentsListViewController, Stores, Provider); +Navigation.registerComponent(Constants.Screens.TournamentInfoScreen, () => TournamentInfoViewController, Stores, Provider); +Navigation.registerComponent(Constants.Screens.TournamentEventInfoScreen, () => EventInfoViewController, Stores, Provider); +Navigation.registerComponent(Constants.Screens.TournamentEventBracket, () => BracketViewController, Stores, Provider); +Navigation.registerComponent(Constants.Screens.Bookmarks, () => BookmarksViewController, Stores, Provider); +Navigation.registerComponent(Constants.Screens.Settings, () => SettingsViewController, Stores, Provider); + +Promise.all(['contacts', 'book', 'settings'].map(icon => Icon.getImageSource(icon, 26))).then(values => { + Navigation.startTabBasedApp({ + tabsStyle: styles.tabBarStyles, + + tabs: [ + {label: 'Tournaments', icon: values[0], title: 'Tournaments', screen: Constants.Screens.TournamentsList}, + {label: 'Bookmarks', icon: values[1], title: 'Bookmarks', screen: Constants.Screens.Bookmarks}, + {label: 'Settings', icon: values[2], title: 'Settings', screen: Constants.Screens.Settings} + ] + }); +}); diff --git a/ios/memelee-tvOS/Info.plist b/ios/memelee-tvOS/Info.plist new file mode 100644 index 0000000..2fb6a11 --- /dev/null +++ b/ios/memelee-tvOS/Info.plist @@ -0,0 +1,54 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + NSLocationWhenInUseUsageDescription + + NSAppTransportSecurity + + + NSExceptionDomains + + localhost + + NSExceptionAllowsInsecureHTTPLoads + + + + + + diff --git a/ios/memelee-tvOSTests/Info.plist b/ios/memelee-tvOSTests/Info.plist new file mode 100644 index 0000000..886825c --- /dev/null +++ b/ios/memelee-tvOSTests/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/ios/memelee.xcodeproj/project.pbxproj b/ios/memelee.xcodeproj/project.pbxproj new file mode 100644 index 0000000..730f1c3 --- /dev/null +++ b/ios/memelee.xcodeproj/project.pbxproj @@ -0,0 +1,1265 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; + 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; + 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; + 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; + 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; + 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; + 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; + 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; + 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; + 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; + 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; + 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; + 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; + 2E4041D12074039B002D51FF /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E40419E2074039B002D51FF /* Octicons.ttf */; }; + 2E4041D22074039B002D51FF /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E40419F2074039B002D51FF /* Feather.ttf */; }; + 2E4041D32074039B002D51FF /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A02074039B002D51FF /* Entypo.ttf */; }; + 2E4041D42074039B002D51FF /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A12074039B002D51FF /* MaterialCommunityIcons.ttf */; }; + 2E4041D52074039B002D51FF /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A22074039B002D51FF /* Foundation.ttf */; }; + 2E4041D62074039B002D51FF /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A32074039B002D51FF /* Ionicons.ttf */; }; + 2E4041D72074039B002D51FF /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A42074039B002D51FF /* FontAwesome.ttf */; }; + 2E4041D82074039B002D51FF /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A52074039B002D51FF /* Zocial.ttf */; }; + 2E4041D92074039B002D51FF /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A62074039B002D51FF /* EvilIcons.ttf */; }; + 2E4041DA2074039B002D51FF /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A72074039B002D51FF /* SimpleLineIcons.ttf */; }; + 2E4041DB2074039B002D51FF /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2E4041A82074039B002D51FF /* MaterialIcons.ttf */; }; + 2E4041E2207404C8002D51FF /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E4041E1207404BA002D51FF /* libRNVectorIcons.a */; }; + 2E6309DD206B062D001ED724 /* libReactNativeNavigation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E6309DC206B0612001ED724 /* libReactNativeNavigation.a */; }; + 2E6309E7206C7210001ED724 /* libRNSVG.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E6309E4206C71DF001ED724 /* libRNSVG.a */; }; + 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; + 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; + ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 134814201AA4EA6300B7C361; + remoteInfo = RCTActionSheet; + }; + 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 134814201AA4EA6300B7C361; + remoteInfo = RCTGeolocation; + }; + 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 58B5115D1A9E6B3D00147676; + remoteInfo = RCTImage; + }; + 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 58B511DB1A9E6C8500147676; + remoteInfo = RCTNetwork; + }; + 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; + remoteInfo = RCTVibration; + }; + 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 134814201AA4EA6300B7C361; + remoteInfo = RCTSettings; + }; + 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3C86DF461ADF2C930047B81A; + remoteInfo = RCTWebSocket; + }; + 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; + remoteInfo = React; + }; + 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = ADD01A681E09402E00F6D226; + remoteInfo = "RCTBlob-tvOS"; + }; + 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; + remoteInfo = fishhook; + }; + 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; + remoteInfo = "fishhook-tvOS"; + }; + 2E4041E0207404BA002D51FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2E4041DC207404BA002D51FF /* RNVectorIcons.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 5DBEB1501B18CEA900B34395; + remoteInfo = RNVectorIcons; + }; + 2E6309CA206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = EBF21BDC1FC498900052F4D5; + remoteInfo = jsinspector; + }; + 2E6309CC206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; + remoteInfo = "jsinspector-tvOS"; + }; + 2E6309CE206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; + remoteInfo = "third-party"; + }; + 2E6309D0206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; + remoteInfo = "third-party-tvOS"; + }; + 2E6309D2206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 139D7E881E25C6D100323FB7; + remoteInfo = "double-conversion"; + }; + 2E6309D4206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D383D621EBD27B9005632C8; + remoteInfo = "double-conversion-tvOS"; + }; + 2E6309D6206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; + remoteInfo = privatedata; + }; + 2E6309D8206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; + remoteInfo = "privatedata-tvOS"; + }; + 2E6309DB206B0612001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2E6309A2206B0612001ED724 /* ReactNativeNavigation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = D8AFADBD1BEE6F3F00A4592D; + remoteInfo = ReactNativeNavigation; + }; + 2E6309E3206C71DF001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2E6309DE206C71DF001ED724 /* RNSVG.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 0CF68AC11AF0540F00FF9E5C; + remoteInfo = RNSVG; + }; + 2E6309E5206C71DF001ED724 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2E6309DE206C71DF001ED724 /* RNSVG.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 94DDAC5C1F3D024300EED511; + remoteInfo = "RNSVG-tvOS"; + }; + 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; + remoteInfo = "RCTImage-tvOS"; + }; + 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A28471D9B043800D4039D; + remoteInfo = "RCTLinking-tvOS"; + }; + 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A28541D9B044C00D4039D; + remoteInfo = "RCTNetwork-tvOS"; + }; + 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A28611D9B046600D4039D; + remoteInfo = "RCTSettings-tvOS"; + }; + 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A287B1D9B048500D4039D; + remoteInfo = "RCTText-tvOS"; + }; + 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A28881D9B049200D4039D; + remoteInfo = "RCTWebSocket-tvOS"; + }; + 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A28131D9B038B00D4039D; + remoteInfo = "React-tvOS"; + }; + 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D3C059A1DE3340900C268FA; + remoteInfo = yoga; + }; + 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D3C06751DE3340C00C268FA; + remoteInfo = "yoga-tvOS"; + }; + 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; + remoteInfo = cxxreact; + }; + 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; + remoteInfo = "cxxreact-tvOS"; + }; + 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; + remoteInfo = jschelpers; + }; + 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; + remoteInfo = "jschelpers-tvOS"; + }; + 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 134814201AA4EA6300B7C361; + remoteInfo = RCTAnimation; + }; + 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 2D2A28201D9B03D100D4039D; + remoteInfo = "RCTAnimation-tvOS"; + }; + 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 134814201AA4EA6300B7C361; + remoteInfo = RCTLinking; + }; + 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 58B5119B1A9E6C1200147676; + remoteInfo = RCTText; + }; + ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 358F4ED71D1E81A9004DF814; + remoteInfo = RCTBlob; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; + 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; + 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; + 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; + 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; + 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; + 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 00E356F21AD99517003FC87E /* memeleeTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = memeleeTests.m; sourceTree = ""; }; + 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; + 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; + 13B07F961A680F5B00A75B9A /* memelee.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = memelee.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = memelee/AppDelegate.h; sourceTree = ""; }; + 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = memelee/AppDelegate.m; sourceTree = ""; }; + 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; + 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = memelee/Images.xcassets; sourceTree = ""; }; + 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = memelee/Info.plist; sourceTree = ""; }; + 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = memelee/main.m; sourceTree = ""; }; + 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; + 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2E40419E2074039B002D51FF /* Octicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Octicons.ttf; sourceTree = ""; }; + 2E40419F2074039B002D51FF /* Feather.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Feather.ttf; sourceTree = ""; }; + 2E4041A02074039B002D51FF /* Entypo.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Entypo.ttf; sourceTree = ""; }; + 2E4041A12074039B002D51FF /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = MaterialCommunityIcons.ttf; sourceTree = ""; }; + 2E4041A22074039B002D51FF /* Foundation.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Foundation.ttf; sourceTree = ""; }; + 2E4041A32074039B002D51FF /* Ionicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ionicons.ttf; sourceTree = ""; }; + 2E4041A42074039B002D51FF /* FontAwesome.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = FontAwesome.ttf; sourceTree = ""; }; + 2E4041A52074039B002D51FF /* Zocial.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Zocial.ttf; sourceTree = ""; }; + 2E4041A62074039B002D51FF /* EvilIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = EvilIcons.ttf; sourceTree = ""; }; + 2E4041A72074039B002D51FF /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = SimpleLineIcons.ttf; sourceTree = ""; }; + 2E4041A82074039B002D51FF /* MaterialIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = MaterialIcons.ttf; sourceTree = ""; }; + 2E4041DC207404BA002D51FF /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; + 2E6309A2206B0612001ED724 /* ReactNativeNavigation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = ReactNativeNavigation.xcodeproj; path = "../node_modules/react-native-navigation/ios/ReactNativeNavigation.xcodeproj"; sourceTree = ""; }; + 2E6309DE206C71DF001ED724 /* RNSVG.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNSVG.xcodeproj; path = "../node_modules/react-native-svg/ios/RNSVG.xcodeproj"; sourceTree = ""; }; + 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; + 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; + 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; + ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 2E4041E2207404C8002D51FF /* libRNVectorIcons.a in Frameworks */, + 2E6309E7206C7210001ED724 /* libRNSVG.a in Frameworks */, + 2E6309DD206B062D001ED724 /* libReactNativeNavigation.a in Frameworks */, + ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, + 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, + 146834051AC3E58100842450 /* libReact.a in Frameworks */, + 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, + 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, + 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, + 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, + 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, + 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, + 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, + 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, + 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, + 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 00C302A81ABCB8CE00DB3ED1 /* Products */ = { + isa = PBXGroup; + children = ( + 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, + ); + name = Products; + sourceTree = ""; + }; + 00C302B61ABCB90400DB3ED1 /* Products */ = { + isa = PBXGroup; + children = ( + 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, + ); + name = Products; + sourceTree = ""; + }; + 00C302BC1ABCB91800DB3ED1 /* Products */ = { + isa = PBXGroup; + children = ( + 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, + 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 00C302D41ABCB9D200DB3ED1 /* Products */ = { + isa = PBXGroup; + children = ( + 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, + 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 00C302E01ABCB9EE00DB3ED1 /* Products */ = { + isa = PBXGroup; + children = ( + 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, + ); + name = Products; + sourceTree = ""; + }; + 00E356EF1AD99517003FC87E /* memeleeTests */ = { + isa = PBXGroup; + children = ( + 00E356F21AD99517003FC87E /* memeleeTests.m */, + 00E356F01AD99517003FC87E /* Supporting Files */, + ); + path = memeleeTests; + sourceTree = ""; + }; + 00E356F01AD99517003FC87E /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 00E356F11AD99517003FC87E /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 139105B71AF99BAD00B5F7CC /* Products */ = { + isa = PBXGroup; + children = ( + 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, + 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 139FDEE71B06529A00C62182 /* Products */ = { + isa = PBXGroup; + children = ( + 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, + 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, + 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, + 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 13B07FAE1A68108700A75B9A /* memelee */ = { + isa = PBXGroup; + children = ( + 008F07F21AC5B25A0029DE68 /* main.jsbundle */, + 13B07FAF1A68108700A75B9A /* AppDelegate.h */, + 13B07FB01A68108700A75B9A /* AppDelegate.m */, + 13B07FB51A68108700A75B9A /* Images.xcassets */, + 13B07FB61A68108700A75B9A /* Info.plist */, + 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, + 13B07FB71A68108700A75B9A /* main.m */, + ); + name = memelee; + sourceTree = ""; + }; + 146834001AC3E56700842450 /* Products */ = { + isa = PBXGroup; + children = ( + 146834041AC3E56700842450 /* libReact.a */, + 3DAD3EA31DF850E9000B6D8A /* libReact.a */, + 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, + 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, + 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, + 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, + 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, + 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, + 2E6309CB206B0612001ED724 /* libjsinspector.a */, + 2E6309CD206B0612001ED724 /* libjsinspector-tvOS.a */, + 2E6309CF206B0612001ED724 /* libthird-party.a */, + 2E6309D1206B0612001ED724 /* libthird-party.a */, + 2E6309D3206B0612001ED724 /* libdouble-conversion.a */, + 2E6309D5206B0612001ED724 /* libdouble-conversion.a */, + 2E6309D7206B0612001ED724 /* libprivatedata.a */, + 2E6309D9206B0612001ED724 /* libprivatedata-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2D16E6891FA4F8E400B85C8A /* libReact.a */, + ); + name = Frameworks; + sourceTree = ""; + }; + 2E40419D2074039B002D51FF /* Fonts */ = { + isa = PBXGroup; + children = ( + 2E40419E2074039B002D51FF /* Octicons.ttf */, + 2E40419F2074039B002D51FF /* Feather.ttf */, + 2E4041A02074039B002D51FF /* Entypo.ttf */, + 2E4041A12074039B002D51FF /* MaterialCommunityIcons.ttf */, + 2E4041A22074039B002D51FF /* Foundation.ttf */, + 2E4041A32074039B002D51FF /* Ionicons.ttf */, + 2E4041A42074039B002D51FF /* FontAwesome.ttf */, + 2E4041A52074039B002D51FF /* Zocial.ttf */, + 2E4041A62074039B002D51FF /* EvilIcons.ttf */, + 2E4041A72074039B002D51FF /* SimpleLineIcons.ttf */, + 2E4041A82074039B002D51FF /* MaterialIcons.ttf */, + ); + name = Fonts; + path = "../node_modules/react-native-vector-icons/Fonts"; + sourceTree = ""; + }; + 2E4041DD207404BA002D51FF /* Products */ = { + isa = PBXGroup; + children = ( + 2E4041E1207404BA002D51FF /* libRNVectorIcons.a */, + ); + name = Products; + sourceTree = ""; + }; + 2E6309A3206B0612001ED724 /* Products */ = { + isa = PBXGroup; + children = ( + 2E6309DC206B0612001ED724 /* libReactNativeNavigation.a */, + ); + name = Products; + sourceTree = ""; + }; + 2E6309DF206C71DF001ED724 /* Products */ = { + isa = PBXGroup; + children = ( + 2E6309E4206C71DF001ED724 /* libRNSVG.a */, + 2E6309E6206C71DF001ED724 /* libRNSVG-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 5E91572E1DD0AC6500FF2AA8 /* Products */ = { + isa = PBXGroup; + children = ( + 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, + 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, + ); + name = Products; + sourceTree = ""; + }; + 78C398B11ACF4ADC00677621 /* Products */ = { + isa = PBXGroup; + children = ( + 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, + 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 832341AE1AAA6A7D00B99B32 /* Libraries */ = { + isa = PBXGroup; + children = ( + 2E4041DC207404BA002D51FF /* RNVectorIcons.xcodeproj */, + 2E6309DE206C71DF001ED724 /* RNSVG.xcodeproj */, + 2E6309A2206B0612001ED724 /* ReactNativeNavigation.xcodeproj */, + 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, + 146833FF1AC3E56700842450 /* React.xcodeproj */, + 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, + ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, + 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, + 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, + 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, + 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, + 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, + 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, + 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, + 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, + ); + name = Libraries; + sourceTree = ""; + }; + 832341B11AAA6A8300B99B32 /* Products */ = { + isa = PBXGroup; + children = ( + 832341B51AAA6A8300B99B32 /* libRCTText.a */, + 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; + 83CBB9F61A601CBA00E9B192 = { + isa = PBXGroup; + children = ( + 2E40419D2074039B002D51FF /* Fonts */, + 13B07FAE1A68108700A75B9A /* memelee */, + 832341AE1AAA6A7D00B99B32 /* Libraries */, + 00E356EF1AD99517003FC87E /* memeleeTests */, + 83CBBA001A601CBA00E9B192 /* Products */, + 2D16E6871FA4F8E400B85C8A /* Frameworks */, + ); + indentWidth = 2; + sourceTree = ""; + tabWidth = 2; + usesTabs = 0; + }; + 83CBBA001A601CBA00E9B192 /* Products */ = { + isa = PBXGroup; + children = ( + 13B07F961A680F5B00A75B9A /* memelee.app */, + ); + name = Products; + sourceTree = ""; + }; + ADBDB9201DFEBF0600ED6528 /* Products */ = { + isa = PBXGroup; + children = ( + ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, + 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 13B07F861A680F5B00A75B9A /* memelee */ = { + isa = PBXNativeTarget; + buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "memelee" */; + buildPhases = ( + 13B07F871A680F5B00A75B9A /* Sources */, + 13B07F8C1A680F5B00A75B9A /* Frameworks */, + 13B07F8E1A680F5B00A75B9A /* Resources */, + 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = memelee; + productName = "Hello World"; + productReference = 13B07F961A680F5B00A75B9A /* memelee.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 83CBB9F71A601CBA00E9B192 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0610; + ORGANIZATIONNAME = Facebook; + TargetAttributes = { + 13B07F861A680F5B00A75B9A = { + DevelopmentTeam = 8JNDBG9U79; + }; + }; + }; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "memelee" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 83CBB9F61A601CBA00E9B192; + productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; + ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; + }, + { + ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; + ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; + }, + { + ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; + ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; + }, + { + ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; + ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; + }, + { + ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; + ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; + }, + { + ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; + ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; + }, + { + ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; + ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; + }, + { + ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; + ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; + }, + { + ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; + ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; + }, + { + ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; + ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; + }, + { + ProductGroup = 139FDEE71B06529A00C62182 /* Products */; + ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; + }, + { + ProductGroup = 146834001AC3E56700842450 /* Products */; + ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; + }, + { + ProductGroup = 2E6309A3206B0612001ED724 /* Products */; + ProjectRef = 2E6309A2206B0612001ED724 /* ReactNativeNavigation.xcodeproj */; + }, + { + ProductGroup = 2E6309DF206C71DF001ED724 /* Products */; + ProjectRef = 2E6309DE206C71DF001ED724 /* RNSVG.xcodeproj */; + }, + { + ProductGroup = 2E4041DD207404BA002D51FF /* Products */; + ProjectRef = 2E4041DC207404BA002D51FF /* RNVectorIcons.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + 13B07F861A680F5B00A75B9A /* memelee */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTActionSheet.a; + remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTGeolocation.a; + remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTImage.a; + remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTNetwork.a; + remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTVibration.a; + remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTSettings.a; + remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTWebSocket.a; + remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 146834041AC3E56700842450 /* libReact.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libReact.a; + remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTBlob-tvOS.a"; + remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libfishhook.a; + remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libfishhook-tvOS.a"; + remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E4041E1207404BA002D51FF /* libRNVectorIcons.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRNVectorIcons.a; + remoteRef = 2E4041E0207404BA002D51FF /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309CB206B0612001ED724 /* libjsinspector.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libjsinspector.a; + remoteRef = 2E6309CA206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309CD206B0612001ED724 /* libjsinspector-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libjsinspector-tvOS.a"; + remoteRef = 2E6309CC206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309CF206B0612001ED724 /* libthird-party.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libthird-party.a"; + remoteRef = 2E6309CE206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309D1206B0612001ED724 /* libthird-party.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libthird-party.a"; + remoteRef = 2E6309D0206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309D3206B0612001ED724 /* libdouble-conversion.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libdouble-conversion.a"; + remoteRef = 2E6309D2206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309D5206B0612001ED724 /* libdouble-conversion.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libdouble-conversion.a"; + remoteRef = 2E6309D4206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309D7206B0612001ED724 /* libprivatedata.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libprivatedata.a; + remoteRef = 2E6309D6206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309D9206B0612001ED724 /* libprivatedata-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libprivatedata-tvOS.a"; + remoteRef = 2E6309D8206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309DC206B0612001ED724 /* libReactNativeNavigation.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libReactNativeNavigation.a; + remoteRef = 2E6309DB206B0612001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309E4206C71DF001ED724 /* libRNSVG.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRNSVG.a; + remoteRef = 2E6309E3206C71DF001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 2E6309E6206C71DF001ED724 /* libRNSVG-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRNSVG-tvOS.a"; + remoteRef = 2E6309E5206C71DF001ED724 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTImage-tvOS.a"; + remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTLinking-tvOS.a"; + remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTNetwork-tvOS.a"; + remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTSettings-tvOS.a"; + remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTText-tvOS.a"; + remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = "libRCTWebSocket-tvOS.a"; + remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libReact.a; + remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libyoga.a; + remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libyoga.a; + remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libcxxreact.a; + remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libcxxreact.a; + remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libjschelpers.a; + remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libjschelpers.a; + remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTAnimation.a; + remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTAnimation.a; + remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTLinking.a; + remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTText.a; + remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libRCTBlob.a; + remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + 13B07F8E1A680F5B00A75B9A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, + 2E4041D92074039B002D51FF /* EvilIcons.ttf in Resources */, + 2E4041D52074039B002D51FF /* Foundation.ttf in Resources */, + 2E4041D82074039B002D51FF /* Zocial.ttf in Resources */, + 2E4041DB2074039B002D51FF /* MaterialIcons.ttf in Resources */, + 2E4041D62074039B002D51FF /* Ionicons.ttf in Resources */, + 2E4041DA2074039B002D51FF /* SimpleLineIcons.ttf in Resources */, + 2E4041D12074039B002D51FF /* Octicons.ttf in Resources */, + 2E4041D22074039B002D51FF /* Feather.ttf in Resources */, + 2E4041D72074039B002D51FF /* FontAwesome.ttf in Resources */, + 2E4041D32074039B002D51FF /* Entypo.ttf in Resources */, + 2E4041D42074039B002D51FF /* MaterialCommunityIcons.ttf in Resources */, + 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Bundle React Native code and images"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 13B07F871A680F5B00A75B9A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, + 13B07FC11A68108700A75B9A /* main.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { + isa = PBXVariantGroup; + children = ( + 13B07FB21A68108700A75B9A /* Base */, + ); + name = LaunchScreen.xib; + path = memelee; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 13B07F941A680F5B00A75B9A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = NO; + DEVELOPMENT_TEAM = 8JNDBG9U79; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../node_modules/react-native-navigation/ios/**", + "$(SRCROOT)/../node_modules/react-native-svg/ios/**", + "$(SRCROOT)/../node_modules/react-native-vector-icons/**", + ); + INFOPLIST_FILE = memelee/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-ObjC", + "-lc++", + ); + PRODUCT_NAME = memelee; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 13B07F951A680F5B00A75B9A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 8JNDBG9U79; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../node_modules/react-native-navigation/ios/**", + "$(SRCROOT)/../node_modules/react-native-svg/ios/**", + "$(SRCROOT)/../node_modules/react-native-vector-icons/**", + ); + INFOPLIST_FILE = memelee/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-ObjC", + "-lc++", + ); + PRODUCT_NAME = memelee; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; + 83CBBA201A601CBA00E9B192 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + }; + name = Debug; + }; + 83CBBA211A601CBA00E9B192 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "memelee" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 13B07F941A680F5B00A75B9A /* Debug */, + 13B07F951A680F5B00A75B9A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "memelee" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 83CBBA201A601CBA00E9B192 /* Debug */, + 83CBBA211A601CBA00E9B192 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; +} diff --git a/ios/memelee.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/memelee.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/memelee.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/memelee.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/memelee.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/memelee.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/memelee.xcodeproj/project.xcworkspace/xcuserdata/laika.xcuserdatad/UserInterfaceState.xcuserstate b/ios/memelee.xcodeproj/project.xcworkspace/xcuserdata/laika.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..e17fd6d Binary files /dev/null and b/ios/memelee.xcodeproj/project.xcworkspace/xcuserdata/laika.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/ios/memelee.xcodeproj/xcshareddata/xcschemes/memelee-tvOS.xcscheme b/ios/memelee.xcodeproj/xcshareddata/xcschemes/memelee-tvOS.xcscheme new file mode 100644 index 0000000..68c618a --- /dev/null +++ b/ios/memelee.xcodeproj/xcshareddata/xcschemes/memelee-tvOS.xcscheme @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/memelee.xcodeproj/xcshareddata/xcschemes/memelee.xcscheme b/ios/memelee.xcodeproj/xcshareddata/xcschemes/memelee.xcscheme new file mode 100644 index 0000000..e180123 --- /dev/null +++ b/ios/memelee.xcodeproj/xcshareddata/xcschemes/memelee.xcscheme @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/memelee.xcodeproj/xcuserdata/laika.xcuserdatad/xcschemes/xcschememanagement.plist b/ios/memelee.xcodeproj/xcuserdata/laika.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..d86b183 --- /dev/null +++ b/ios/memelee.xcodeproj/xcuserdata/laika.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,19 @@ + + + + + SchemeUserState + + memelee-tvOS.xcscheme_^#shared#^_ + + orderHint + 1 + + memelee.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/ios/memelee/AppDelegate.h b/ios/memelee/AppDelegate.h new file mode 100644 index 0000000..a9654d5 --- /dev/null +++ b/ios/memelee/AppDelegate.h @@ -0,0 +1,16 @@ +/** + * Copyright (c) 2015-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ + +#import + +@interface AppDelegate : UIResponder + +@property (nonatomic, strong) UIWindow *window; + +@end diff --git a/ios/memelee/AppDelegate.m b/ios/memelee/AppDelegate.m new file mode 100644 index 0000000..1a4a41a --- /dev/null +++ b/ios/memelee/AppDelegate.m @@ -0,0 +1,43 @@ +/** + * Copyright (c) 2015-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ + +#import "AppDelegate.h" + +#import +#import + +#import "RCCManager.h" + +@implementation AppDelegate + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + NSURL *jsCodeLocation; + + jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; + + self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; + self.window.backgroundColor = [UIColor blackColor]; + [[RCCManager sharedInstance] initBridgeWithBundleURL:jsCodeLocation launchOptions:launchOptions]; + +// RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation +// moduleName:@"memelee" +// initialProperties:nil +// launchOptions:launchOptions]; +// rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; +// +// self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; +// UIViewController *rootViewController = [UIViewController new]; +// rootViewController.view = rootView; +// self.window.rootViewController = rootViewController; +// [self.window makeKeyAndVisible]; + return YES; +} + +@end diff --git a/ios/memelee/Base.lproj/LaunchScreen.xib b/ios/memelee/Base.lproj/LaunchScreen.xib new file mode 100644 index 0000000..6b5d098 --- /dev/null +++ b/ios/memelee/Base.lproj/LaunchScreen.xib @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/memelee/Images.xcassets/AppIcon.appiconset/Contents.json b/ios/memelee/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..118c98f --- /dev/null +++ b/ios/memelee/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,38 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/ios/memelee/Images.xcassets/Contents.json b/ios/memelee/Images.xcassets/Contents.json new file mode 100644 index 0000000..2d92bd5 --- /dev/null +++ b/ios/memelee/Images.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/memelee/Info.plist b/ios/memelee/Info.plist new file mode 100644 index 0000000..41b99e1 --- /dev/null +++ b/ios/memelee/Info.plist @@ -0,0 +1,71 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + Memelee + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + NSAppTransportSecurity + + NSExceptionDomains + + localhost + + NSExceptionAllowsInsecureHTTPLoads + + + + + NSLocationWhenInUseUsageDescription + + UILaunchStoryboardName + LaunchScreen + UIRequiredDeviceCapabilities + + armv7 + + UIStatusBarStyle + UIStatusBarStyleLightContent + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIAppFonts + + FontAwesome.ttf + Octicons.ttf + Feather.ttf + Entypo.ttf + MaterialCommunityIcons.ttf + Foundation.ttf + IonicIcons.ttf + Zocial.ttf + EvilIcons.ttf + SimpleLineIcons.ttf + MaterialIcons.ttf + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/ios/memelee/main.m b/ios/memelee/main.m new file mode 100644 index 0000000..3d767fc --- /dev/null +++ b/ios/memelee/main.m @@ -0,0 +1,18 @@ +/** + * Copyright (c) 2015-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ + +#import + +#import "AppDelegate.h" + +int main(int argc, char * argv[]) { + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); + } +} diff --git a/ios/memeleeTests/Info.plist b/ios/memeleeTests/Info.plist new file mode 100644 index 0000000..886825c --- /dev/null +++ b/ios/memeleeTests/Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/ios/memeleeTests/memeleeTests.m b/ios/memeleeTests/memeleeTests.m new file mode 100644 index 0000000..6fe6b8f --- /dev/null +++ b/ios/memeleeTests/memeleeTests.m @@ -0,0 +1,70 @@ +/** + * Copyright (c) 2015-present, Facebook, Inc. + * All rights reserved. + * + * This source code is licensed under the BSD-style license found in the + * LICENSE file in the root directory of this source tree. An additional grant + * of patent rights can be found in the PATENTS file in the same directory. + */ + +#import +#import + +#import +#import + +#define TIMEOUT_SECONDS 600 +#define TEXT_TO_LOOK_FOR @"Welcome to React Native!" + +@interface memeleeTests : XCTestCase + +@end + +@implementation memeleeTests + +- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test +{ + if (test(view)) { + return YES; + } + for (UIView *subview in [view subviews]) { + if ([self findSubviewInView:subview matching:test]) { + return YES; + } + } + return NO; +} + +- (void)testRendersWelcomeScreen +{ + UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; + NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; + BOOL foundElement = NO; + + __block NSString *redboxError = nil; + RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { + if (level >= RCTLogLevelError) { + redboxError = message; + } + }); + + while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { + [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; + [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; + + foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { + if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { + return YES; + } + return NO; + }]; + } + + RCTSetLogFunction(RCTDefaultLogFunction); + + XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); + XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); +} + + +@end diff --git a/package.json b/package.json new file mode 100644 index 0000000..75daf48 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "memelee", + "version": "0.1.0", + "private": true, + "devDependencies": { + "babel-preset-react-native-stage-0": "^1.0.1", + "jest-react-native": "^18.0.0", + "react-test-renderer": "16.2.0" + }, + "scripts": { + "start": "react-native start", + "android": "react-native run-android", + "ios": "react-native run-ios", + "test": "node node_modules/jest/bin/jest.js" + }, + "jest": { + "preset": "react-native" + }, + "dependencies": { + "axios": "^0.18.0", + "babel-preset-react-native-stage-0": "^1.0.1", + "jsog": "^1.0.7", + "mobx": "^4.1.1", + "mobx-persist": "^0.4.1", + "mobx-react": "^5.0.0", + "moment": "^2.21.0", + "prop-types": "^15.6.1", + "react": "16.2.0", + "react-controllables": "^0.6.0", + "react-native": "0.52.0", + "react-native-elements": "^0.19.0", + "react-native-markdown-renderer": "^3.1.0", + "react-native-navigation": "^1.1.426", + "react-native-segmented-control-tab": "^3.2.2", + "react-native-settings-list": "^1.8.0", + "react-native-svg": "^6.3.1", + "react-native-vector-icons": "^4.6.0", + "underscore": "^1.8.3", + "uuid": "^3.2.1" + } +} diff --git a/stores/BookmarksStore.js b/stores/BookmarksStore.js new file mode 100644 index 0000000..71bf9a6 --- /dev/null +++ b/stores/BookmarksStore.js @@ -0,0 +1,20 @@ +/** + * BookmarksStore + * + * Exactly what it sounds like. + * + * @copyright Ryan McGrath 2018 + */ + +import moment from 'moment'; +import {observable, action, runInAction} from 'mobx'; + +class Store { + @observable bookmarks; + + constructor() { + this.bookmarks = []; + } +}; + +export default new Store(); diff --git a/stores/SettingsStore.js b/stores/SettingsStore.js new file mode 100644 index 0000000..0611ed5 --- /dev/null +++ b/stores/SettingsStore.js @@ -0,0 +1,20 @@ +/** + * SettingsStore + * + * Exactly what it sounds like. + * + * @copyright Ryan McGrath 2018 + */ + +import moment from 'moment'; +import {observable, action, runInAction} from 'mobx'; + +class Store { + @observable settings; + + constructor() { + this.settings = {}; + } +}; + +export default new Store(); diff --git a/stores/TournamentEventStore.js b/stores/TournamentEventStore.js new file mode 100644 index 0000000..5d97dde --- /dev/null +++ b/stores/TournamentEventStore.js @@ -0,0 +1,171 @@ +/** + * TournamentEventStore + * + * Store for tournament event data. Currently kind of dumb, but that's fine. + * + * @copyright Ryan McGrath 2018 + */ + +import {observable, action, runInAction} from 'mobx'; + +class Store { + @observable data; + @observable fetchingData; + + constructor() { + this.data = {}; + } + + fetchEventExpanded = async (tournamentSlug, eventSlug, opts) => { + const api = 'https://smash.gg/api/-/gg_api./tournament/' + tournamentSlug + '/event/' + eventSlug + ';'; + const args = Object.assign({ + expand: JSON.stringify(['phase', 'groups']), + reset: false, + slug: tournamentSlug, + eventSlug: eventSlug + }, opts || {}); + + return fetch( + api + Object.keys(args).map(key => `${key}=${args[key]}`).join(';') + '?returnMeta=true' + ).then(response => response.json()).then(data => { + if(typeof data.success !== 'undefined' && !data.success) + throw new Error(data.message); + + return Promise.resolve(data.entities.phase ? data.entities.phase.map(phase => phase) : []); + }); + } + +/** + * fetchStandings + * + * Given a set of slugs, fetches event standings. + * + * @arg tournamentSlug {String} Slug for the tournament (e.g, "the-mango"). + * @arg eventSlug {String} Slug for the event (e.g, "melee-singles"). + * @arg opts {Object} Optional object for overriding request properties. + * @return Promise + */ +/*const fetchEventStandings = (tournamentSlug, eventSlug, opts) => { + const api = 'https://smash.gg/api/-/gg_api./tournament/' + tournamentSlug + '/event/' + eventSlug + '/standings;'; + const args = Object.assign({ + entityId: null, + entityType: 'event', + slug: tournamentSlug, + eventSlug: eventSlug, + expand: JSON.stringify(['entrants', 'standingGroup', 'attendee']), + mutations: JSON.stringify(['playerData', 'standingLosses']), + page: 1, + per_page: 25 + }, opts || {}); + + return fetch( + api + Object.keys(args).map(key => `${key}=${args[key]}`).join(';') + '?returnMeta=true' + ).then(response => response.json()).then(data => { + var s = data.items.entities.standing, + l = s.length; + + return Promise.resolve(data.items.entities.entrants.map(entrants => { + if(typeof entrants.losses === 'undefined') + entrants.losses = []; + + data.items.entities.standing.forEach(standing => { + if(standing.entityId === entrants.id && standing.mutations) + entrants.losses = entrants.losses.concat(standing.mutations.losses.map(loss => loss.name)); + }); + + return entrants; + }).sort((a, b) => a.finalPlacement > b.finalPlacement)); + }); +}; + +/** + * fetchBracketData + * + * Given a set of slugs/bracket ID, fetches bracket data for rendering. Performs a lot + * of smaller operations to transpose it into an actually usable format for display. + * + * @arg tournamentSlug {String} Slug for the tournament (e.g, "the-mango"). + * @arg eventSlug {String} Slug for the event (e.g, "melee-singles"). + * @arg bracketID {String or Number} ID for the bracket - SmashGG calls this a phase. Go fig. + * @arg opts {Object} Optional object for overriding request properties. + * @return Promise + +const fetchBracketData = (tournamentSlug, eventSlug, bracketID, opts) => { + const api = 'https://smash.gg/api/-/gg_api./tournament/' + tournamentSlug + '/event/' + eventSlug + '/phase_groups;'; + const args = { + slug: tournamentSlug, + eventSlug: eventSlug, + expand: JSON.stringify(['results', 'character']), + mutations: JSON.stringify(['ffaData', 'playerData']), + filter: JSON.stringify({phaseId: bracketID}), + getSingleBracket: true, + page: 1, + per_page: 20, + reset: false, + }; + + return fetch( + api + Object.keys(args).map(key => `${key}=${args[key]}`).join(';') + '?returnMeta=true' + ).then(response => response.json()).then(data => { + const grands = []; + const brackets = { + winners: [], + losers: [] + }; + + // Filter through the set list and make sure each object is filled out with necessary data, + // and then place them into their bracket accordingly. Brackets will be sorted afterwards. + data.items.entities.sets.forEach(function(result) { + if(result.entrant1Id === null || result.entrant2Id === null) + return; + + result.entrant1 = {}; + result.entrant2 = {}; + + data.items.entities.entrants.forEach(function(entrant) { + if(entrant.id === result.entrant1Id) + result.entrant1 = entrant; + + if(entrant.id === result.entrant2Id) + result.entrant2 = entrant; + }); + + if(result.isGF) { + grands.push(result); + } else { + var isLosers = result.displayRound < 0, + key = isLosers ? 'losers' : 'winners', + idx = isLosers ? (result.displayRound * -1) : result.displayRound; + + while(brackets[key].length < idx) { + brackets[key].push({ + title: '', // Filled in later~ + sets: [] + }); + } + + brackets[key][idx - 1].title = result.fullRoundText; + brackets[key][idx - 1].sets.push(result); + if(!brackets[key][idx - 1].key) + brackets[key][idx - 1].key = v4(); + } + }); + + // GFs are technically in the winners bracket, but for presentation purposes they're shoved + // in after to be like how smash.gg presents them. + if(grands.length > 0) { + grands.forEach(grandFinal => { + brackets.winners.push({ + title: 'Grand Finals', + sets: [grandFinal], + key: v4() + }); + }); + } + + return Promise.resolve(brackets); + }); +};*/ +} + +export default new Store(); diff --git a/stores/TournamentsListingStore.js b/stores/TournamentsListingStore.js new file mode 100644 index 0000000..49dcbfa --- /dev/null +++ b/stores/TournamentsListingStore.js @@ -0,0 +1,140 @@ +/** + * TournamentListingsStore + * + * Store for tournament listing and search data. + * + * @copyright Ryan McGrath 2018 + */ + +import axios from 'axios'; +import moment from 'moment'; +import {observable, action, runInAction} from 'mobx'; + +const placeholders = [ + require('../images/placeholder1.png'), + require('../images/placeholder2.png'), + require('../images/placeholder3.png'), +]; + +class Store { + @observable tournamentsList; + @observable searchResults; + @observable fetchingData; + @observable mode; + + constructor() { + this.tournamentsList = []; + this.searchResults = []; + this.fetchingData = false; + this.mode = 'featured'; + } + + @action('Fetch Featured Tournaments') + fetchFeatured = async (opts) => { + this.fetchingData = true; + this.mode = 'featured'; + + const args = Object.assign({ + list: 'featured', + reset: false + }, opts || {}); + + const api = 'https://smash.gg/api/-/gg_api./tournaments/list/featured;'; + const url = api + Object.keys(args).map(key => `${key}=${args[key]}`).join(';') + '?returnMeta=true' + const response = await fetch(url); + const data = await response.json(); + + runInAction('Parse tournament listing data', () => { + this.tournamentsList = this.parseData(data.entities.tournament, data.entities.event); + this.mode = 'featured'; + this.fetchingData = false; + }); + } + + searchTimer = null; + cancelSource = null; + + @action('Perform Search') + search = async (query) => { + if(this.searchTimer) { + clearTimeout(this.searchTimer); + + if(this.cancelSource) { + this.cancelSource.cancel(); + this.cancelSource = null; + } + } + + if(query === '') { + this.mode = 'featured'; + this.fetchingData = false; + return; + } + + this.searchTimer = setTimeout(async () => { + this.fetchingData = true; + this.cancelSource = axios.CancelToken.source(); + + const api = 'https://smash.gg/api/-/gg_api./public/tournaments/schedule;'; + const args = { + filter: encodeURIComponent(query), + page: 1, + per_page: 60, + reset: false, + schedule: true + }; + + const url = api + Object.keys(args).map(key => `${key}=${args[key]}`).join(';'); + axios.get(url, { + cancelToken: this.cancelSource.token, + params: {returnMeta: 'true'} + }).then(response => { + runInAction('Parse search results data', () => { + this.searchResults = this.parseData(response.data.items.entities.tournament, response.data.items.entities.event); + this.mode = 'search'; + this.fetchingData = false; + }); + }).catch(thrown => { + // There's no need to do anything here, at least for now. + if(axios.isCancel(thrown)) + return; + + console.error(thrown); + }); + }, 500); + } + + parseData = (tourneys, events) => { + var tournaments = []; + + for(var i = 0, l = tourneys.length; i < l; i++) { + var tourney = tourneys[i]; + if(tourney['private'] || tourney.sandboxMode || tourney.testMode) + continue; + + var img = tourney.images.filter(img => img.width === 1200); + if(img.length > 0) + tourney.memeleePromoImage = {width: img[0].width, msrc: {uri: img[0].url}}; + else + tourney.memeleePromoImage = {width: 1200, msrc: placeholders[Math.floor(Math.random() * 3)]}; + + var starts = moment.unix(tourney.startAt).utc(), + ends = moment.unix(tourney.endAt); + + tourney.memeleeTournamentRange = starts.format('MM/DD/YYYY') + ' - ' + ends.format('MM/DD/YYYY'); + tourney.memeleeEventsCount = tourney.eventIds.length; + + /* Stitch together the event listings... */ + tourney.memeleeEvents = tourney.eventIds.map(eventID => { + const evts = events.filter(obj => obj.id === eventID); + return evts.length > 0 ? evts[0] : null; + }).filter(evt => evt !== null); + + tournaments.push(tourney) + } + + return tournaments; + } +} + +export default new Store(); diff --git a/stores/index.js b/stores/index.js new file mode 100644 index 0000000..9b6520f --- /dev/null +++ b/stores/index.js @@ -0,0 +1,33 @@ +/** + * smashGG + * + * Handles communication with Smash.gg endpoints. Mostly promise based. + * + * @copyright Ryan McGrath 2018, unless the content belongs to Smash.gg, in which case, + * it's them. + */ + +import {v4} from 'uuid'; +import moment from 'moment'; +import {create} from 'mobx-persist'; +import {AsyncStorage} from 'react-native'; + +import TournamentsListingStore from './TournamentsListingStore'; +import TournamentEventStore from './TournamentEventStore'; +import BookmarksStore from './BookmarksStore'; +import SettingsStore from './SettingsStore'; + +const hydrate = create({ + storage: AsyncStorage +}); + +const stores = { + Tournaments: TournamentsListingStore, + TournamentEventStore: TournamentEventStore, + Bookmarks: BookmarksStore, + Settings: SettingsStore +}; + +// Hydrate + +export default stores; diff --git a/styles/index.js b/styles/index.js new file mode 100644 index 0000000..a3322a7 --- /dev/null +++ b/styles/index.js @@ -0,0 +1,364 @@ +/** + * Stylesheets + * + * App-wide stylesheets, in one sheet because I'm lazy as hell. + * + * @copyright Ryan McGrath 2018 + */ + +import {StyleSheet, Platform} from 'react-native'; + +const PlatformEnum = {IOS: 'ios', ANDROID: 'android'}; + +const textColor = '#e4e4e7'; +const iconColor = '#00a1fe'; + +const stylesheet = StyleSheet.create({ + searchContainerStyle: { + backgroundColor: '#12191f', + borderTopWidth: 0, + borderBottomWidth: 0, + paddingLeft: 8, + paddingRight: 8 + }, + + tournamentsListView: {paddingBottom: 16}, + + tournamentRowWrapper: { + paddingLeft: 16, + paddingRight: 16, + paddingTop: 16, + paddingBottom: 6 + }, + + tournamentRow: { + justifyContent: 'center', + backgroundColor: '#1d2730', + borderRadius: 6, + overflow: 'hidden' + }, + + tournamentRowPromoImage: { + backgroundColor: '#181b26', + }, + + tournamentRowTextWrapper: { + flex: 1, + padding: 16 + }, + + tournamentRowName: { color: textColor, fontSize: 16, fontWeight: 'bold', marginBottom: 8 }, + tournamentRowDateRange: { color: textColor, marginBottom: 8 }, + tournamentRowLocation: { color: textColor, marginBottom: 8 }, + tournamentRowEventsCount: { color: textColor }, + + tournamentInfoHeader: { + backgroundColor: '#181b26', + height: 200 + }, + + tournamentInfoTabsStyle: { + borderWidth: 0, + paddingVertical: 10, + backgroundColor: '#101319' + }, + + tournamentInfoTabTextStyle: { + color: iconColor + }, + + tournamentInfoActiveTabStyle: { + backgroundColor: iconColor + }, + + tournamentDetailsTextWrapper: { + padding: 18 + }, + + tournamentDetailsEventWrapper: { + paddingHorizontal: 16, + paddingVertical: 16, + borderBottomWidth: 0.5, + borderBottomColor: '#0e141a', + backgroundColor: '#1d2730' + }, + + tournamentDetailsEventItem: { + color: textColor, + fontSize: 16, + }, + + tournamentInfoButtonsRow: { + flexDirection: 'row' + }, + + tournamentRegistrationButton: { + backgroundColor: iconColor, + padding: 10, + flex: 1 + }, + + tournamentRegistrationButtonText: { + color: textColor, + textAlign: 'center', + fontWeight: 'bold' + }, + + tournamentBookmarkButton: { + flex: 1, + backgroundColor: iconColor, + padding: 10, + } +}); + +/** + * navigatorStyles + * + * Handles styling the navigation (top) bar. Needs to be a separate property to avoid + * React Native's CSS parsing junk. + */ +stylesheet.navigatorStyles = { + navBarBackgroundColor: '#12191f', + navBarTextColor: '#e6e6e8', + navBarButtonColor: '#307ace', + navBarTranslucent: false, + navBarNoBorder: true, + screenBackgroundColor: '#12191f', + largeTitle: true, + statusBarTextColorScheme: 'light' +}; + +/** + * tabBarStyles + * + * Handles styling the tab (bottom) bar. Needs to be a separate property to avoid + * React Native's CSS parsing junk. + */ +stylesheet.tabBarStyles = { + tabBarBackgroundColor: '#101319', + tabBarTranslucent: true, + tabBarButtonColor: '#25313a', + tabBarSelectedButtonColor: '#0090eb', + tabBarHideShadow: false +}; + +/** + * tournamentPromoIconColors + * + * Colors for specific icons. + */ +stylesheet.tournamentPromoIconColors = { + calendar: iconColor, + mapMarker: iconColor, + eventsCount: iconColor, + attendeesCount: iconColor +}; + +/** + * tournamentDetailsText + * + * Styles for the markdown-parsed area that describes tournaments. Separate property + * due to the way it relies on some annoying key words. + */ +stylesheet.tournamentDetailsText = StyleSheet.create({ + view: {}, + + codeBlock: { + borderWidth: 1, + borderColor: "#1d2730", + backgroundColor: "#1d2730", + padding: 10, + borderRadius: 4, + color: textColor + }, + + codeInline: { + borderWidth: 1, + borderColor: "#1d2730", + backgroundColor: "#1d2730", + padding: 10, + borderRadius: 4, + color: textColor + }, + + del: { + backgroundColor: "#000000" + }, + + em: { + fontStyle: "italic" + }, + + headingContainer: { + flexDirection: "row" + }, + + heading: {}, + + heading1: { + fontSize: 26, + lineHeight: 32, + marginBottom: 15 + }, + + heading2: { + fontSize: 24 + }, + + heading3: { + fontSize: 18 + }, + + heading4: { + fontSize: 16 + }, + + heading5: { + fontSize: 13 + }, + + heading6: { + fontSize: 11 + }, + + hr: { + backgroundColor: '#28333d', + height: 1, + marginVertical: 10 + }, + + blockquote: { + paddingHorizontal: 20, + paddingVertical: 10, + margin: 20, + backgroundColor: '#1d2730' + }, + + inlineCode: { + borderRadius: 3, + borderWidth: 1, + fontFamily: "Courier", + fontWeight: "bold" + }, + + list: {}, + + listItem: { + flex: 1, + flexWrap: "wrap" + // backgroundColor: 'green', + }, + + listUnordered: {}, + + listUnorderedItem: { + flexDirection: "row", + justifyContent: "flex-start" + }, + + listUnorderedItemIcon: { + marginLeft: 10, + marginRight: 10, + + ...Platform.select({ + [PlatformEnum.IOS]: { + lineHeight: 36 + }, + + [PlatformEnum.ANDROID]: { + lineHeight: 30 + } + }) + }, + + listUnorderedItemText: { + fontSize: 20, + lineHeight: 20 + }, + + listOrdered: {}, + + listOrderedItem: { + flexDirection: "row" + }, + + listOrderedItemIcon: { + marginLeft: 10, + marginRight: 10, + + ...Platform.select({ + [PlatformEnum.IOS]: {lineHeight: 36}, + [PlatformEnum.ANDROID]: {lineHeight: 30} + }) + }, + + listOrderedItemText: { + fontWeight: "bold", + lineHeight: 20 + }, + + paragraph: { + marginTop: 10, + marginBottom: 10, + flexWrap: "wrap", + flexDirection: "row", + alignItems: "flex-start", + justifyContent: "flex-start" + }, + + hardbreak: { + width: '100%', + height: 1 + }, + + strong: { + fontWeight: "bold" + }, + + table: { + borderWidth: 1, + borderColor: "#000000", + borderRadius: 3 + }, + + tableHeader: {}, + + tableHeaderCell: { + flex: 1, + // color: '#000000', + padding: 5 + // backgroundColor: 'green', + }, + + tableRow: { + borderBottomWidth: 1, + borderColor: "#000000", + flexDirection: "row" + }, + + tableRowCell: { + flex: 1, + padding: 5 + }, + + text: {color: textColor, fontSize: 16, lineHeight: 22}, + + strikethrough: { + textDecorationLine: "line-through" + }, + + link: { + textDecorationLine: "underline" + }, + + u: { + borderColor: "#000000", + borderBottomWidth: 1 + }, + + image: { + flex: 1 + } +}); + +export default stylesheet; diff --git a/utils/MobxRnnProvider.js b/utils/MobxRnnProvider.js new file mode 100644 index 0000000..55b600a --- /dev/null +++ b/utils/MobxRnnProvider.js @@ -0,0 +1,48 @@ +/** + * MobxRnnProvider + * + * Provider that works for this navigation structure. + * + * (Thanks to github/@megahertz - https://gist.github.com/megahertz/3aad3adafa0f7d212b81f5e371863637) + * + * @copyright Ryan McGrath 2018 + */ + +import {Provider} from 'mobx-react/native'; + +const SPECIAL_REACT_KEYS = { + children: true, + key: true, + ref: true +}; + +export default class MobxRnnProvider extends Provider { + props: { + store: Object + }; + + context: { + mobxStores: Object + }; + + getChildContext() { + const stores = {}; + + // inherit stores + const baseStores = this.context.mobxStores; + if(baseStores) { + for(let key in baseStores) { + stores[key] = baseStores[key]; + } + } + + // add own stores + for(let key in this.props.store) { + if(!SPECIAL_REACT_KEYS[key]) { + stores[key] = this.props.store[key]; + } + } + + return {mobxStores: stores}; + } +}