├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── everydayread │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── demo.gif ├── index.android.js ├── index.ios.js ├── ios ├── everyDayRead-tvOS │ └── Info.plist ├── everyDayRead-tvOSTests │ └── Info.plist ├── everyDayRead.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── everyDayRead-tvOS.xcscheme │ │ └── everyDayRead.xcscheme ├── everyDayRead │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── everyDayReadTests │ ├── Info.plist │ └── everyDayReadTests.m ├── package-lock.json ├── package.json ├── src ├── common │ └── LocalStorageUtils.js ├── components │ ├── FontSizeContro.js │ ├── ItemBg.js │ ├── ItemMenu.js │ └── NavigationBar.js ├── entry.js ├── expand │ └── dao │ │ └── DaoArticle.js ├── page │ ├── CollectList.js │ └── ReaderPage.js └── res │ └── images │ ├── head.png │ ├── ic_arrow_back_white_36pt.png │ ├── ic_arrow_back_white_36pt@2x.png │ ├── ic_arrow_back_white_36pt@3x.png │ ├── icon_menu.png │ └── menuBg.jpg └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | .*/Libraries/react-native/ReactNative.js 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/Libraries/react-native/react-native-interface.js 21 | node_modules/react-native/flow 22 | flow/ 23 | 24 | [options] 25 | emoji=true 26 | 27 | module.system=haste 28 | 29 | experimental.strict_type_args=true 30 | 31 | munge_underscores=true 32 | 33 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 34 | 35 | suppress_type=$FlowIssue 36 | suppress_type=$FlowFixMe 37 | suppress_type=$FixMe 38 | 39 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 40 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(4[0-2]\\|[1-3][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 41 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 42 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 43 | 44 | unsafe.enable_getters_and_setters=true 45 | 46 | [version] 47 | ^0.42.0 48 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | *.apk 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md 50 | 51 | fastlane/report.xml 52 | fastlane/Preview.html 53 | fastlane/screenshots 54 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## ReactNativeEveryDayRead 2 | 初学ReactNative,模仿“观止"app,数据来源于[每日一文](https://meiriyiwen.com/) 3 | 4 | ![demo.gif](/demo.gif) 5 | ## Download 6 | [Android](https://fir.im/8l2q) 7 | ## Usage 8 | ``` 9 | npm install 10 | react-native run-android 11 | ``` 12 | 13 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.everydayread", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.everydayread", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"], 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.everydayread" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | signingConfigs { 100 | release { 101 | storeFile file('/Users/caizepeng/my-release-key.keystore') 102 | storePassword MYAPP_RELEASE_STORE_PASSWORD 103 | keyAlias MYAPP_RELEASE_KEY_ALIAS 104 | keyPassword MYAPP_RELEASE_KEY_PASSWORD 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | signingConfig signingConfigs.release 110 | } 111 | } 112 | splits { 113 | abi { 114 | reset() 115 | enable enableSeparateBuildPerCPUArchitecture 116 | universalApk false // If true, also generate a universal APK 117 | include "armeabi-v7a", "x86" 118 | } 119 | } 120 | buildTypes { 121 | release { 122 | minifyEnabled enableProguardInReleaseBuilds 123 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 124 | } 125 | } 126 | // applicationVariants are e.g. debug, release 127 | applicationVariants.all { variant -> 128 | variant.outputs.each { output -> 129 | // For each separate APK per architecture, set a unique version code as described here: 130 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 131 | def versionCodes = ["armeabi-v7a":1, "x86":2] 132 | def abi = output.getFilter(OutputFile.ABI) 133 | if (abi != null) { // null for the universal-debug, universal-release variants 134 | output.versionCodeOverride = 135 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 136 | } 137 | } 138 | } 139 | } 140 | 141 | dependencies { 142 | compile fileTree(dir: "libs", include: ["*.jar"]) 143 | compile "com.android.support:appcompat-v7:23.0.1" 144 | compile "com.facebook.react:react-native:+" // From node_modules 145 | compile project(':react-native-vector-icons') 146 | } 147 | 148 | // Run this once to be able to run the application with BUCK 149 | // puts all compile dependencies into folder libs for BUCK to use 150 | task copyDownloadableDepsToLibs(type: Copy) { 151 | from configurations.compile 152 | into 'libs' 153 | } 154 | apply from: "../../node_modules/react-native-vector-icons/fonts.gradle" 155 | project.ext.vectoricons = [ 156 | iconFontNames: [ 'MaterialIcons.ttf', 'EvilIcons.ttf' ] // Name of the font files you want to copy 157 | ] 158 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/everydayread/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.everydayread; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "everyDayRead"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/everydayread/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.everydayread; 2 | 3 | import android.app.Application; 4 | import com.oblador.vectoricons.VectorIconsPackage; 5 | import com.facebook.react.ReactApplication; 6 | import com.facebook.react.ReactNativeHost; 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.shell.MainReactPackage; 9 | import com.facebook.soloader.SoLoader; 10 | 11 | import java.util.Arrays; 12 | import java.util.List; 13 | 14 | public class MainApplication extends Application implements ReactApplication { 15 | 16 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 17 | @Override 18 | public boolean getUseDeveloperSupport() { 19 | return BuildConfig.DEBUG; 20 | } 21 | 22 | @Override 23 | protected List getPackages() { 24 | return Arrays.asList( 25 | new MainReactPackage(), 26 | new VectorIconsPackage() 27 | ); 28 | } 29 | }; 30 | 31 | @Override 32 | public ReactNativeHost getReactNativeHost() { 33 | return mReactNativeHost; 34 | } 35 | 36 | @Override 37 | public void onCreate() { 38 | super.onCreate(); 39 | SoLoader.init(this, /* native exopackage */ false); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | everyDayRead 3 | 4 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 6 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'everyDayRead' 2 | 3 | include ':app' 4 | include ':react-native-vector-icons' 5 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 6 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "everyDayRead", 3 | "displayName": "everyDayRead" 4 | } -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/demo.gif -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react' 2 | import Entry from './src/entry' 3 | import { AppRegistry } from 'react-native' 4 | export default class everyDayRead extends Component { 5 | render() { 6 | return ( 7 | 8 | ); 9 | } 10 | } 11 | 12 | AppRegistry.registerComponent('everyDayRead', () => everyDayRead); 13 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react' 2 | import Entry from './src/entry' 3 | import { AppRegistry } from 'react-native' 4 | export default class everyDayRead extends Component { 5 | render() { 6 | return ( 7 | 8 | ); 9 | } 10 | } 11 | 12 | AppRegistry.registerComponent('everyDayRead', () => everyDayRead); 13 | -------------------------------------------------------------------------------- /ios/everyDayRead-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /ios/everyDayRead-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/everyDayRead.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* everyDayReadTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* everyDayReadTests.m */; }; 15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 25 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 26 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 27 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */; }; 28 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 29 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 30 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 31 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 32 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 33 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 34 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 35 | 2DCD954D1E0B4F2C00145EB5 /* everyDayReadTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* everyDayReadTests.m */; }; 36 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 37 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 38 | 0B2961757954404DACB8DA87 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A31E4CCD55C4B4CBF1B69F3 /* libRNVectorIcons.a */; }; 39 | BFAF86AE650647C9B2373AAF /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = AB921BEEC228417F8F57B5C0 /* Entypo.ttf */; }; 40 | CFB9C73558194AACA8836CD5 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E255330D83C84224A862743A /* EvilIcons.ttf */; }; 41 | DD86ED303CCC442EBA093766 /* Feather.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EC3F84FE948041A58A54D44B /* Feather.ttf */; }; 42 | 9C4AB84EFC78445BB8FAA229 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B330D2684DFB4A22B6484AD2 /* FontAwesome.ttf */; }; 43 | 1AC4FE91BD864041BECD2B78 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 32885C55B62C46F9B720872E /* Foundation.ttf */; }; 44 | C26D9CE6427B40A2AAE73B13 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0D1E08600C8449D7B42F5D06 /* Ionicons.ttf */; }; 45 | 76020BF5396F415D8F60456D /* MaterialCommunityIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 53599A90A5314E84ABB67AFB /* MaterialCommunityIcons.ttf */; }; 46 | EFE35887E0A94E4794247E53 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E5D4070D771842929E86493F /* MaterialIcons.ttf */; }; 47 | BC96A47294A34C5D875A1667 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1F5CE7D76D694907A8FCC286 /* Octicons.ttf */; }; 48 | 055F5DAFAA564618961819DD /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9A6027BCEF254AF2A6D12F10 /* SimpleLineIcons.ttf */; }; 49 | 9517C371A92F445791137648 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 72B4D85CF892413793069F4B /* Zocial.ttf */; }; 50 | /* End PBXBuildFile section */ 51 | 52 | /* Begin PBXContainerItemProxy section */ 53 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 54 | isa = PBXContainerItemProxy; 55 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 56 | proxyType = 2; 57 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 58 | remoteInfo = RCTActionSheet; 59 | }; 60 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 65 | remoteInfo = RCTGeolocation; 66 | }; 67 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 72 | remoteInfo = RCTImage; 73 | }; 74 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 79 | remoteInfo = RCTNetwork; 80 | }; 81 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 84 | proxyType = 2; 85 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 86 | remoteInfo = RCTVibration; 87 | }; 88 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 91 | proxyType = 1; 92 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 93 | remoteInfo = everyDayRead; 94 | }; 95 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 98 | proxyType = 2; 99 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 100 | remoteInfo = RCTSettings; 101 | }; 102 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 107 | remoteInfo = RCTWebSocket; 108 | }; 109 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 112 | proxyType = 2; 113 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 114 | remoteInfo = React; 115 | }; 116 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 119 | proxyType = 1; 120 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 121 | remoteInfo = "everyDayRead-tvOS"; 122 | }; 123 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 126 | proxyType = 2; 127 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 128 | remoteInfo = "RCTImage-tvOS"; 129 | }; 130 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 135 | remoteInfo = "RCTLinking-tvOS"; 136 | }; 137 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 142 | remoteInfo = "RCTNetwork-tvOS"; 143 | }; 144 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 149 | remoteInfo = "RCTSettings-tvOS"; 150 | }; 151 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 156 | remoteInfo = "RCTText-tvOS"; 157 | }; 158 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 163 | remoteInfo = "RCTWebSocket-tvOS"; 164 | }; 165 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 170 | remoteInfo = "React-tvOS"; 171 | }; 172 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 177 | remoteInfo = yoga; 178 | }; 179 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 184 | remoteInfo = "yoga-tvOS"; 185 | }; 186 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 191 | remoteInfo = cxxreact; 192 | }; 193 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 198 | remoteInfo = "cxxreact-tvOS"; 199 | }; 200 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 205 | remoteInfo = jschelpers; 206 | }; 207 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 212 | remoteInfo = "jschelpers-tvOS"; 213 | }; 214 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 219 | remoteInfo = RCTAnimation; 220 | }; 221 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 226 | remoteInfo = "RCTAnimation-tvOS"; 227 | }; 228 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 233 | remoteInfo = RCTLinking; 234 | }; 235 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 240 | remoteInfo = RCTText; 241 | }; 242 | /* End PBXContainerItemProxy section */ 243 | 244 | /* Begin PBXFileReference section */ 245 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 246 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 247 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 248 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 249 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 250 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 251 | 00E356EE1AD99517003FC87E /* everyDayReadTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = everyDayReadTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 252 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 253 | 00E356F21AD99517003FC87E /* everyDayReadTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = everyDayReadTests.m; sourceTree = ""; }; 254 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 255 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 256 | 13B07F961A680F5B00A75B9A /* everyDayRead.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = everyDayRead.app; sourceTree = BUILT_PRODUCTS_DIR; }; 257 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = everyDayRead/AppDelegate.h; sourceTree = ""; }; 258 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = everyDayRead/AppDelegate.m; sourceTree = ""; }; 259 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 260 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = everyDayRead/Images.xcassets; sourceTree = ""; }; 261 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = everyDayRead/Info.plist; sourceTree = ""; }; 262 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = everyDayRead/main.m; sourceTree = ""; }; 263 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 264 | 2D02E47B1E0B4A5D006451C7 /* everyDayRead-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "everyDayRead-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 265 | 2D02E4901E0B4A5D006451C7 /* everyDayRead-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "everyDayRead-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 266 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 267 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 268 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 269 | 30996B3DA88B4E02B6ECBF88 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; name = "RNVectorIcons.xcodeproj"; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 270 | 3A31E4CCD55C4B4CBF1B69F3 /* libRNVectorIcons.a */ = {isa = PBXFileReference; name = "libRNVectorIcons.a"; path = "libRNVectorIcons.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 271 | AB921BEEC228417F8F57B5C0 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 272 | E255330D83C84224A862743A /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 273 | EC3F84FE948041A58A54D44B /* Feather.ttf */ = {isa = PBXFileReference; name = "Feather.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 274 | B330D2684DFB4A22B6484AD2 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 275 | 32885C55B62C46F9B720872E /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 276 | 0D1E08600C8449D7B42F5D06 /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 277 | 53599A90A5314E84ABB67AFB /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; name = "MaterialCommunityIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 278 | E5D4070D771842929E86493F /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 279 | 1F5CE7D76D694907A8FCC286 /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 280 | 9A6027BCEF254AF2A6D12F10 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 281 | 72B4D85CF892413793069F4B /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 282 | /* End PBXFileReference section */ 283 | 284 | /* Begin PBXFrameworksBuildPhase section */ 285 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 286 | isa = PBXFrameworksBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 290 | ); 291 | runOnlyForDeploymentPostprocessing = 0; 292 | }; 293 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 294 | isa = PBXFrameworksBuildPhase; 295 | buildActionMask = 2147483647; 296 | files = ( 297 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 298 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 299 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 300 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 301 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 302 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 303 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 304 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 305 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 306 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 307 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 308 | 0B2961757954404DACB8DA87 /* libRNVectorIcons.a in Frameworks */, 309 | ); 310 | runOnlyForDeploymentPostprocessing = 0; 311 | }; 312 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 313 | isa = PBXFrameworksBuildPhase; 314 | buildActionMask = 2147483647; 315 | files = ( 316 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 317 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 318 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 319 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 320 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 321 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 322 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 323 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 324 | ); 325 | runOnlyForDeploymentPostprocessing = 0; 326 | }; 327 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 328 | isa = PBXFrameworksBuildPhase; 329 | buildActionMask = 2147483647; 330 | files = ( 331 | ); 332 | runOnlyForDeploymentPostprocessing = 0; 333 | }; 334 | /* End PBXFrameworksBuildPhase section */ 335 | 336 | /* Begin PBXGroup section */ 337 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 338 | isa = PBXGroup; 339 | children = ( 340 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 341 | ); 342 | name = Products; 343 | sourceTree = ""; 344 | }; 345 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 346 | isa = PBXGroup; 347 | children = ( 348 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 349 | ); 350 | name = Products; 351 | sourceTree = ""; 352 | }; 353 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 354 | isa = PBXGroup; 355 | children = ( 356 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 357 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 358 | ); 359 | name = Products; 360 | sourceTree = ""; 361 | }; 362 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 363 | isa = PBXGroup; 364 | children = ( 365 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 366 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 367 | ); 368 | name = Products; 369 | sourceTree = ""; 370 | }; 371 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 372 | isa = PBXGroup; 373 | children = ( 374 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 375 | ); 376 | name = Products; 377 | sourceTree = ""; 378 | }; 379 | 00E356EF1AD99517003FC87E /* everyDayReadTests */ = { 380 | isa = PBXGroup; 381 | children = ( 382 | 00E356F21AD99517003FC87E /* everyDayReadTests.m */, 383 | 00E356F01AD99517003FC87E /* Supporting Files */, 384 | ); 385 | path = everyDayReadTests; 386 | sourceTree = ""; 387 | }; 388 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 389 | isa = PBXGroup; 390 | children = ( 391 | 00E356F11AD99517003FC87E /* Info.plist */, 392 | ); 393 | name = "Supporting Files"; 394 | sourceTree = ""; 395 | }; 396 | 139105B71AF99BAD00B5F7CC /* Products */ = { 397 | isa = PBXGroup; 398 | children = ( 399 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 400 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 401 | ); 402 | name = Products; 403 | sourceTree = ""; 404 | }; 405 | 139FDEE71B06529A00C62182 /* Products */ = { 406 | isa = PBXGroup; 407 | children = ( 408 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 409 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 410 | ); 411 | name = Products; 412 | sourceTree = ""; 413 | }; 414 | 13B07FAE1A68108700A75B9A /* everyDayRead */ = { 415 | isa = PBXGroup; 416 | children = ( 417 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 418 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 419 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 420 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 421 | 13B07FB61A68108700A75B9A /* Info.plist */, 422 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 423 | 13B07FB71A68108700A75B9A /* main.m */, 424 | ); 425 | name = everyDayRead; 426 | sourceTree = ""; 427 | }; 428 | 146834001AC3E56700842450 /* Products */ = { 429 | isa = PBXGroup; 430 | children = ( 431 | 146834041AC3E56700842450 /* libReact.a */, 432 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 433 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 434 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 435 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 436 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 437 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 438 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 439 | ); 440 | name = Products; 441 | sourceTree = ""; 442 | }; 443 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 444 | isa = PBXGroup; 445 | children = ( 446 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 447 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 448 | ); 449 | name = Products; 450 | sourceTree = ""; 451 | }; 452 | 78C398B11ACF4ADC00677621 /* Products */ = { 453 | isa = PBXGroup; 454 | children = ( 455 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 456 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 457 | ); 458 | name = Products; 459 | sourceTree = ""; 460 | }; 461 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 462 | isa = PBXGroup; 463 | children = ( 464 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 465 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 466 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 467 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 468 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 469 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 470 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 471 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 472 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 473 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 474 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 475 | 30996B3DA88B4E02B6ECBF88 /* RNVectorIcons.xcodeproj */, 476 | ); 477 | name = Libraries; 478 | sourceTree = ""; 479 | }; 480 | 832341B11AAA6A8300B99B32 /* Products */ = { 481 | isa = PBXGroup; 482 | children = ( 483 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 484 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 485 | ); 486 | name = Products; 487 | sourceTree = ""; 488 | }; 489 | 83CBB9F61A601CBA00E9B192 = { 490 | isa = PBXGroup; 491 | children = ( 492 | 13B07FAE1A68108700A75B9A /* everyDayRead */, 493 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 494 | 00E356EF1AD99517003FC87E /* everyDayReadTests */, 495 | 83CBBA001A601CBA00E9B192 /* Products */, 496 | EFE57E72CF314F70AADF36A7 /* Resources */, 497 | ); 498 | indentWidth = 2; 499 | sourceTree = ""; 500 | tabWidth = 2; 501 | }; 502 | 83CBBA001A601CBA00E9B192 /* Products */ = { 503 | isa = PBXGroup; 504 | children = ( 505 | 13B07F961A680F5B00A75B9A /* everyDayRead.app */, 506 | 00E356EE1AD99517003FC87E /* everyDayReadTests.xctest */, 507 | 2D02E47B1E0B4A5D006451C7 /* everyDayRead-tvOS.app */, 508 | 2D02E4901E0B4A5D006451C7 /* everyDayRead-tvOSTests.xctest */, 509 | ); 510 | name = Products; 511 | sourceTree = ""; 512 | }; 513 | EFE57E72CF314F70AADF36A7 /* Resources */ = { 514 | isa = "PBXGroup"; 515 | children = ( 516 | AB921BEEC228417F8F57B5C0 /* Entypo.ttf */, 517 | E255330D83C84224A862743A /* EvilIcons.ttf */, 518 | EC3F84FE948041A58A54D44B /* Feather.ttf */, 519 | B330D2684DFB4A22B6484AD2 /* FontAwesome.ttf */, 520 | 32885C55B62C46F9B720872E /* Foundation.ttf */, 521 | 0D1E08600C8449D7B42F5D06 /* Ionicons.ttf */, 522 | 53599A90A5314E84ABB67AFB /* MaterialCommunityIcons.ttf */, 523 | E5D4070D771842929E86493F /* MaterialIcons.ttf */, 524 | 1F5CE7D76D694907A8FCC286 /* Octicons.ttf */, 525 | 9A6027BCEF254AF2A6D12F10 /* SimpleLineIcons.ttf */, 526 | 72B4D85CF892413793069F4B /* Zocial.ttf */, 527 | ); 528 | name = Resources; 529 | sourceTree = ""; 530 | path = ""; 531 | }; 532 | /* End PBXGroup section */ 533 | 534 | /* Begin PBXNativeTarget section */ 535 | 00E356ED1AD99517003FC87E /* everyDayReadTests */ = { 536 | isa = PBXNativeTarget; 537 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "everyDayReadTests" */; 538 | buildPhases = ( 539 | 00E356EA1AD99517003FC87E /* Sources */, 540 | 00E356EB1AD99517003FC87E /* Frameworks */, 541 | 00E356EC1AD99517003FC87E /* Resources */, 542 | ); 543 | buildRules = ( 544 | ); 545 | dependencies = ( 546 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 547 | ); 548 | name = everyDayReadTests; 549 | productName = everyDayReadTests; 550 | productReference = 00E356EE1AD99517003FC87E /* everyDayReadTests.xctest */; 551 | productType = "com.apple.product-type.bundle.unit-test"; 552 | }; 553 | 13B07F861A680F5B00A75B9A /* everyDayRead */ = { 554 | isa = PBXNativeTarget; 555 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "everyDayRead" */; 556 | buildPhases = ( 557 | 13B07F871A680F5B00A75B9A /* Sources */, 558 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 559 | 13B07F8E1A680F5B00A75B9A /* Resources */, 560 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 561 | ); 562 | buildRules = ( 563 | ); 564 | dependencies = ( 565 | ); 566 | name = everyDayRead; 567 | productName = "Hello World"; 568 | productReference = 13B07F961A680F5B00A75B9A /* everyDayRead.app */; 569 | productType = "com.apple.product-type.application"; 570 | }; 571 | 2D02E47A1E0B4A5D006451C7 /* everyDayRead-tvOS */ = { 572 | isa = PBXNativeTarget; 573 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "everyDayRead-tvOS" */; 574 | buildPhases = ( 575 | 2D02E4771E0B4A5D006451C7 /* Sources */, 576 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 577 | 2D02E4791E0B4A5D006451C7 /* Resources */, 578 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 579 | ); 580 | buildRules = ( 581 | ); 582 | dependencies = ( 583 | ); 584 | name = "everyDayRead-tvOS"; 585 | productName = "everyDayRead-tvOS"; 586 | productReference = 2D02E47B1E0B4A5D006451C7 /* everyDayRead-tvOS.app */; 587 | productType = "com.apple.product-type.application"; 588 | }; 589 | 2D02E48F1E0B4A5D006451C7 /* everyDayRead-tvOSTests */ = { 590 | isa = PBXNativeTarget; 591 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "everyDayRead-tvOSTests" */; 592 | buildPhases = ( 593 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 594 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 595 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 596 | ); 597 | buildRules = ( 598 | ); 599 | dependencies = ( 600 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 601 | ); 602 | name = "everyDayRead-tvOSTests"; 603 | productName = "everyDayRead-tvOSTests"; 604 | productReference = 2D02E4901E0B4A5D006451C7 /* everyDayRead-tvOSTests.xctest */; 605 | productType = "com.apple.product-type.bundle.unit-test"; 606 | }; 607 | /* End PBXNativeTarget section */ 608 | 609 | /* Begin PBXProject section */ 610 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 611 | isa = PBXProject; 612 | attributes = { 613 | LastUpgradeCheck = 610; 614 | ORGANIZATIONNAME = Facebook; 615 | TargetAttributes = { 616 | 00E356ED1AD99517003FC87E = { 617 | CreatedOnToolsVersion = 6.2; 618 | TestTargetID = 13B07F861A680F5B00A75B9A; 619 | }; 620 | 2D02E47A1E0B4A5D006451C7 = { 621 | CreatedOnToolsVersion = 8.2.1; 622 | ProvisioningStyle = Automatic; 623 | }; 624 | 2D02E48F1E0B4A5D006451C7 = { 625 | CreatedOnToolsVersion = 8.2.1; 626 | ProvisioningStyle = Automatic; 627 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 628 | }; 629 | }; 630 | }; 631 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "everyDayRead" */; 632 | compatibilityVersion = "Xcode 3.2"; 633 | developmentRegion = English; 634 | hasScannedForEncodings = 0; 635 | knownRegions = ( 636 | en, 637 | Base, 638 | ); 639 | mainGroup = 83CBB9F61A601CBA00E9B192; 640 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 641 | projectDirPath = ""; 642 | projectReferences = ( 643 | { 644 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 645 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 646 | }, 647 | { 648 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 649 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 650 | }, 651 | { 652 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 653 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 654 | }, 655 | { 656 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 657 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 658 | }, 659 | { 660 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 661 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 662 | }, 663 | { 664 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 665 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 666 | }, 667 | { 668 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 669 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 670 | }, 671 | { 672 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 673 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 674 | }, 675 | { 676 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 677 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 678 | }, 679 | { 680 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 681 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 682 | }, 683 | { 684 | ProductGroup = 146834001AC3E56700842450 /* Products */; 685 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 686 | }, 687 | ); 688 | projectRoot = ""; 689 | targets = ( 690 | 13B07F861A680F5B00A75B9A /* everyDayRead */, 691 | 00E356ED1AD99517003FC87E /* everyDayReadTests */, 692 | 2D02E47A1E0B4A5D006451C7 /* everyDayRead-tvOS */, 693 | 2D02E48F1E0B4A5D006451C7 /* everyDayRead-tvOSTests */, 694 | ); 695 | }; 696 | /* End PBXProject section */ 697 | 698 | /* Begin PBXReferenceProxy section */ 699 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 700 | isa = PBXReferenceProxy; 701 | fileType = archive.ar; 702 | path = libRCTActionSheet.a; 703 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 704 | sourceTree = BUILT_PRODUCTS_DIR; 705 | }; 706 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 707 | isa = PBXReferenceProxy; 708 | fileType = archive.ar; 709 | path = libRCTGeolocation.a; 710 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 711 | sourceTree = BUILT_PRODUCTS_DIR; 712 | }; 713 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 714 | isa = PBXReferenceProxy; 715 | fileType = archive.ar; 716 | path = libRCTImage.a; 717 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 718 | sourceTree = BUILT_PRODUCTS_DIR; 719 | }; 720 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 721 | isa = PBXReferenceProxy; 722 | fileType = archive.ar; 723 | path = libRCTNetwork.a; 724 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 725 | sourceTree = BUILT_PRODUCTS_DIR; 726 | }; 727 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 728 | isa = PBXReferenceProxy; 729 | fileType = archive.ar; 730 | path = libRCTVibration.a; 731 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 732 | sourceTree = BUILT_PRODUCTS_DIR; 733 | }; 734 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 735 | isa = PBXReferenceProxy; 736 | fileType = archive.ar; 737 | path = libRCTSettings.a; 738 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 739 | sourceTree = BUILT_PRODUCTS_DIR; 740 | }; 741 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 742 | isa = PBXReferenceProxy; 743 | fileType = archive.ar; 744 | path = libRCTWebSocket.a; 745 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 746 | sourceTree = BUILT_PRODUCTS_DIR; 747 | }; 748 | 146834041AC3E56700842450 /* libReact.a */ = { 749 | isa = PBXReferenceProxy; 750 | fileType = archive.ar; 751 | path = libReact.a; 752 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 753 | sourceTree = BUILT_PRODUCTS_DIR; 754 | }; 755 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 756 | isa = PBXReferenceProxy; 757 | fileType = archive.ar; 758 | path = "libRCTImage-tvOS.a"; 759 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 760 | sourceTree = BUILT_PRODUCTS_DIR; 761 | }; 762 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 763 | isa = PBXReferenceProxy; 764 | fileType = archive.ar; 765 | path = "libRCTLinking-tvOS.a"; 766 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 767 | sourceTree = BUILT_PRODUCTS_DIR; 768 | }; 769 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 770 | isa = PBXReferenceProxy; 771 | fileType = archive.ar; 772 | path = "libRCTNetwork-tvOS.a"; 773 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 774 | sourceTree = BUILT_PRODUCTS_DIR; 775 | }; 776 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 777 | isa = PBXReferenceProxy; 778 | fileType = archive.ar; 779 | path = "libRCTSettings-tvOS.a"; 780 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 781 | sourceTree = BUILT_PRODUCTS_DIR; 782 | }; 783 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 784 | isa = PBXReferenceProxy; 785 | fileType = archive.ar; 786 | path = "libRCTText-tvOS.a"; 787 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 788 | sourceTree = BUILT_PRODUCTS_DIR; 789 | }; 790 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 791 | isa = PBXReferenceProxy; 792 | fileType = archive.ar; 793 | path = "libRCTWebSocket-tvOS.a"; 794 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 795 | sourceTree = BUILT_PRODUCTS_DIR; 796 | }; 797 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 798 | isa = PBXReferenceProxy; 799 | fileType = archive.ar; 800 | path = libReact.a; 801 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 802 | sourceTree = BUILT_PRODUCTS_DIR; 803 | }; 804 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 805 | isa = PBXReferenceProxy; 806 | fileType = archive.ar; 807 | path = libyoga.a; 808 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 809 | sourceTree = BUILT_PRODUCTS_DIR; 810 | }; 811 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 812 | isa = PBXReferenceProxy; 813 | fileType = archive.ar; 814 | path = libyoga.a; 815 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 816 | sourceTree = BUILT_PRODUCTS_DIR; 817 | }; 818 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 819 | isa = PBXReferenceProxy; 820 | fileType = archive.ar; 821 | path = libcxxreact.a; 822 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 823 | sourceTree = BUILT_PRODUCTS_DIR; 824 | }; 825 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 826 | isa = PBXReferenceProxy; 827 | fileType = archive.ar; 828 | path = libcxxreact.a; 829 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 830 | sourceTree = BUILT_PRODUCTS_DIR; 831 | }; 832 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 833 | isa = PBXReferenceProxy; 834 | fileType = archive.ar; 835 | path = libjschelpers.a; 836 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 837 | sourceTree = BUILT_PRODUCTS_DIR; 838 | }; 839 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 840 | isa = PBXReferenceProxy; 841 | fileType = archive.ar; 842 | path = libjschelpers.a; 843 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 844 | sourceTree = BUILT_PRODUCTS_DIR; 845 | }; 846 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 847 | isa = PBXReferenceProxy; 848 | fileType = archive.ar; 849 | path = libRCTAnimation.a; 850 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 851 | sourceTree = BUILT_PRODUCTS_DIR; 852 | }; 853 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 854 | isa = PBXReferenceProxy; 855 | fileType = archive.ar; 856 | path = "libRCTAnimation-tvOS.a"; 857 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 858 | sourceTree = BUILT_PRODUCTS_DIR; 859 | }; 860 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 861 | isa = PBXReferenceProxy; 862 | fileType = archive.ar; 863 | path = libRCTLinking.a; 864 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 865 | sourceTree = BUILT_PRODUCTS_DIR; 866 | }; 867 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 868 | isa = PBXReferenceProxy; 869 | fileType = archive.ar; 870 | path = libRCTText.a; 871 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 872 | sourceTree = BUILT_PRODUCTS_DIR; 873 | }; 874 | /* End PBXReferenceProxy section */ 875 | 876 | /* Begin PBXResourcesBuildPhase section */ 877 | 00E356EC1AD99517003FC87E /* Resources */ = { 878 | isa = PBXResourcesBuildPhase; 879 | buildActionMask = 2147483647; 880 | files = ( 881 | ); 882 | runOnlyForDeploymentPostprocessing = 0; 883 | }; 884 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 885 | isa = PBXResourcesBuildPhase; 886 | buildActionMask = 2147483647; 887 | files = ( 888 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 889 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 890 | BFAF86AE650647C9B2373AAF /* Entypo.ttf in Resources */, 891 | CFB9C73558194AACA8836CD5 /* EvilIcons.ttf in Resources */, 892 | DD86ED303CCC442EBA093766 /* Feather.ttf in Resources */, 893 | 9C4AB84EFC78445BB8FAA229 /* FontAwesome.ttf in Resources */, 894 | 1AC4FE91BD864041BECD2B78 /* Foundation.ttf in Resources */, 895 | C26D9CE6427B40A2AAE73B13 /* Ionicons.ttf in Resources */, 896 | 76020BF5396F415D8F60456D /* MaterialCommunityIcons.ttf in Resources */, 897 | EFE35887E0A94E4794247E53 /* MaterialIcons.ttf in Resources */, 898 | BC96A47294A34C5D875A1667 /* Octicons.ttf in Resources */, 899 | 055F5DAFAA564618961819DD /* SimpleLineIcons.ttf in Resources */, 900 | 9517C371A92F445791137648 /* Zocial.ttf in Resources */, 901 | ); 902 | runOnlyForDeploymentPostprocessing = 0; 903 | }; 904 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 905 | isa = PBXResourcesBuildPhase; 906 | buildActionMask = 2147483647; 907 | files = ( 908 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 909 | ); 910 | runOnlyForDeploymentPostprocessing = 0; 911 | }; 912 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 913 | isa = PBXResourcesBuildPhase; 914 | buildActionMask = 2147483647; 915 | files = ( 916 | ); 917 | runOnlyForDeploymentPostprocessing = 0; 918 | }; 919 | /* End PBXResourcesBuildPhase section */ 920 | 921 | /* Begin PBXShellScriptBuildPhase section */ 922 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 923 | isa = PBXShellScriptBuildPhase; 924 | buildActionMask = 2147483647; 925 | files = ( 926 | ); 927 | inputPaths = ( 928 | ); 929 | name = "Bundle React Native code and images"; 930 | outputPaths = ( 931 | ); 932 | runOnlyForDeploymentPostprocessing = 0; 933 | shellPath = /bin/sh; 934 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 935 | }; 936 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 937 | isa = PBXShellScriptBuildPhase; 938 | buildActionMask = 2147483647; 939 | files = ( 940 | ); 941 | inputPaths = ( 942 | ); 943 | name = "Bundle React Native Code And Images"; 944 | outputPaths = ( 945 | ); 946 | runOnlyForDeploymentPostprocessing = 0; 947 | shellPath = /bin/sh; 948 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 949 | }; 950 | /* End PBXShellScriptBuildPhase section */ 951 | 952 | /* Begin PBXSourcesBuildPhase section */ 953 | 00E356EA1AD99517003FC87E /* Sources */ = { 954 | isa = PBXSourcesBuildPhase; 955 | buildActionMask = 2147483647; 956 | files = ( 957 | 00E356F31AD99517003FC87E /* everyDayReadTests.m in Sources */, 958 | ); 959 | runOnlyForDeploymentPostprocessing = 0; 960 | }; 961 | 13B07F871A680F5B00A75B9A /* Sources */ = { 962 | isa = PBXSourcesBuildPhase; 963 | buildActionMask = 2147483647; 964 | files = ( 965 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 966 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 967 | ); 968 | runOnlyForDeploymentPostprocessing = 0; 969 | }; 970 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 971 | isa = PBXSourcesBuildPhase; 972 | buildActionMask = 2147483647; 973 | files = ( 974 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 975 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 976 | ); 977 | runOnlyForDeploymentPostprocessing = 0; 978 | }; 979 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 980 | isa = PBXSourcesBuildPhase; 981 | buildActionMask = 2147483647; 982 | files = ( 983 | 2DCD954D1E0B4F2C00145EB5 /* everyDayReadTests.m in Sources */, 984 | ); 985 | runOnlyForDeploymentPostprocessing = 0; 986 | }; 987 | /* End PBXSourcesBuildPhase section */ 988 | 989 | /* Begin PBXTargetDependency section */ 990 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 991 | isa = PBXTargetDependency; 992 | target = 13B07F861A680F5B00A75B9A /* everyDayRead */; 993 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 994 | }; 995 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 996 | isa = PBXTargetDependency; 997 | target = 2D02E47A1E0B4A5D006451C7 /* everyDayRead-tvOS */; 998 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 999 | }; 1000 | /* End PBXTargetDependency section */ 1001 | 1002 | /* Begin PBXVariantGroup section */ 1003 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1004 | isa = PBXVariantGroup; 1005 | children = ( 1006 | 13B07FB21A68108700A75B9A /* Base */, 1007 | ); 1008 | name = LaunchScreen.xib; 1009 | path = everyDayRead; 1010 | sourceTree = ""; 1011 | }; 1012 | /* End PBXVariantGroup section */ 1013 | 1014 | /* Begin XCBuildConfiguration section */ 1015 | 00E356F61AD99517003FC87E /* Debug */ = { 1016 | isa = XCBuildConfiguration; 1017 | buildSettings = { 1018 | BUNDLE_LOADER = "$(TEST_HOST)"; 1019 | GCC_PREPROCESSOR_DEFINITIONS = ( 1020 | "DEBUG=1", 1021 | "$(inherited)", 1022 | ); 1023 | INFOPLIST_FILE = everyDayReadTests/Info.plist; 1024 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1025 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1026 | OTHER_LDFLAGS = ( 1027 | "-ObjC", 1028 | "-lc++", 1029 | ); 1030 | PRODUCT_NAME = "$(TARGET_NAME)"; 1031 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/everyDayRead.app/everyDayRead"; 1032 | LIBRARY_SEARCH_PATHS = ( 1033 | "$(inherited)", 1034 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1035 | ); 1036 | HEADER_SEARCH_PATHS = ( 1037 | "$(inherited)", 1038 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1039 | ); 1040 | }; 1041 | name = Debug; 1042 | }; 1043 | 00E356F71AD99517003FC87E /* Release */ = { 1044 | isa = XCBuildConfiguration; 1045 | buildSettings = { 1046 | BUNDLE_LOADER = "$(TEST_HOST)"; 1047 | COPY_PHASE_STRIP = NO; 1048 | INFOPLIST_FILE = everyDayReadTests/Info.plist; 1049 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1050 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1051 | OTHER_LDFLAGS = ( 1052 | "-ObjC", 1053 | "-lc++", 1054 | ); 1055 | PRODUCT_NAME = "$(TARGET_NAME)"; 1056 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/everyDayRead.app/everyDayRead"; 1057 | LIBRARY_SEARCH_PATHS = ( 1058 | "$(inherited)", 1059 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1060 | ); 1061 | HEADER_SEARCH_PATHS = ( 1062 | "$(inherited)", 1063 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1064 | ); 1065 | }; 1066 | name = Release; 1067 | }; 1068 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1069 | isa = XCBuildConfiguration; 1070 | buildSettings = { 1071 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1072 | CURRENT_PROJECT_VERSION = 1; 1073 | DEAD_CODE_STRIPPING = NO; 1074 | INFOPLIST_FILE = everyDayRead/Info.plist; 1075 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1076 | OTHER_LDFLAGS = ( 1077 | "$(inherited)", 1078 | "-ObjC", 1079 | "-lc++", 1080 | ); 1081 | PRODUCT_NAME = everyDayRead; 1082 | VERSIONING_SYSTEM = "apple-generic"; 1083 | HEADER_SEARCH_PATHS = ( 1084 | "$(inherited)", 1085 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1086 | ); 1087 | }; 1088 | name = Debug; 1089 | }; 1090 | 13B07F951A680F5B00A75B9A /* Release */ = { 1091 | isa = XCBuildConfiguration; 1092 | buildSettings = { 1093 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1094 | CURRENT_PROJECT_VERSION = 1; 1095 | INFOPLIST_FILE = everyDayRead/Info.plist; 1096 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1097 | OTHER_LDFLAGS = ( 1098 | "$(inherited)", 1099 | "-ObjC", 1100 | "-lc++", 1101 | ); 1102 | PRODUCT_NAME = everyDayRead; 1103 | VERSIONING_SYSTEM = "apple-generic"; 1104 | HEADER_SEARCH_PATHS = ( 1105 | "$(inherited)", 1106 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1107 | ); 1108 | }; 1109 | name = Release; 1110 | }; 1111 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1112 | isa = XCBuildConfiguration; 1113 | buildSettings = { 1114 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1115 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1116 | CLANG_ANALYZER_NONNULL = YES; 1117 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1118 | CLANG_WARN_INFINITE_RECURSION = YES; 1119 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1120 | DEBUG_INFORMATION_FORMAT = dwarf; 1121 | ENABLE_TESTABILITY = YES; 1122 | GCC_NO_COMMON_BLOCKS = YES; 1123 | INFOPLIST_FILE = "everyDayRead-tvOS/Info.plist"; 1124 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1125 | OTHER_LDFLAGS = ( 1126 | "-ObjC", 1127 | "-lc++", 1128 | ); 1129 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.everyDayRead-tvOS"; 1130 | PRODUCT_NAME = "$(TARGET_NAME)"; 1131 | SDKROOT = appletvos; 1132 | TARGETED_DEVICE_FAMILY = 3; 1133 | TVOS_DEPLOYMENT_TARGET = 9.2; 1134 | LIBRARY_SEARCH_PATHS = ( 1135 | "$(inherited)", 1136 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1137 | ); 1138 | HEADER_SEARCH_PATHS = ( 1139 | "$(inherited)", 1140 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1141 | ); 1142 | }; 1143 | name = Debug; 1144 | }; 1145 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1146 | isa = XCBuildConfiguration; 1147 | buildSettings = { 1148 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1149 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1150 | CLANG_ANALYZER_NONNULL = YES; 1151 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1152 | CLANG_WARN_INFINITE_RECURSION = YES; 1153 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1154 | COPY_PHASE_STRIP = NO; 1155 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1156 | GCC_NO_COMMON_BLOCKS = YES; 1157 | INFOPLIST_FILE = "everyDayRead-tvOS/Info.plist"; 1158 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1159 | OTHER_LDFLAGS = ( 1160 | "-ObjC", 1161 | "-lc++", 1162 | ); 1163 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.everyDayRead-tvOS"; 1164 | PRODUCT_NAME = "$(TARGET_NAME)"; 1165 | SDKROOT = appletvos; 1166 | TARGETED_DEVICE_FAMILY = 3; 1167 | TVOS_DEPLOYMENT_TARGET = 9.2; 1168 | LIBRARY_SEARCH_PATHS = ( 1169 | "$(inherited)", 1170 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1171 | ); 1172 | HEADER_SEARCH_PATHS = ( 1173 | "$(inherited)", 1174 | "$(SRCROOT)/../node_modules/react-native-vector-icons/RNVectorIconsManager", 1175 | ); 1176 | }; 1177 | name = Release; 1178 | }; 1179 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1180 | isa = XCBuildConfiguration; 1181 | buildSettings = { 1182 | BUNDLE_LOADER = "$(TEST_HOST)"; 1183 | CLANG_ANALYZER_NONNULL = YES; 1184 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1185 | CLANG_WARN_INFINITE_RECURSION = YES; 1186 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1187 | DEBUG_INFORMATION_FORMAT = dwarf; 1188 | ENABLE_TESTABILITY = YES; 1189 | GCC_NO_COMMON_BLOCKS = YES; 1190 | INFOPLIST_FILE = "everyDayRead-tvOSTests/Info.plist"; 1191 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1192 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.everyDayRead-tvOSTests"; 1193 | PRODUCT_NAME = "$(TARGET_NAME)"; 1194 | SDKROOT = appletvos; 1195 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/everyDayRead-tvOS.app/everyDayRead-tvOS"; 1196 | TVOS_DEPLOYMENT_TARGET = 10.1; 1197 | LIBRARY_SEARCH_PATHS = ( 1198 | "$(inherited)", 1199 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1200 | ); 1201 | }; 1202 | name = Debug; 1203 | }; 1204 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1205 | isa = XCBuildConfiguration; 1206 | buildSettings = { 1207 | BUNDLE_LOADER = "$(TEST_HOST)"; 1208 | CLANG_ANALYZER_NONNULL = YES; 1209 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1210 | CLANG_WARN_INFINITE_RECURSION = YES; 1211 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1212 | COPY_PHASE_STRIP = NO; 1213 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1214 | GCC_NO_COMMON_BLOCKS = YES; 1215 | INFOPLIST_FILE = "everyDayRead-tvOSTests/Info.plist"; 1216 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1217 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.everyDayRead-tvOSTests"; 1218 | PRODUCT_NAME = "$(TARGET_NAME)"; 1219 | SDKROOT = appletvos; 1220 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/everyDayRead-tvOS.app/everyDayRead-tvOS"; 1221 | TVOS_DEPLOYMENT_TARGET = 10.1; 1222 | LIBRARY_SEARCH_PATHS = ( 1223 | "$(inherited)", 1224 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1225 | ); 1226 | }; 1227 | name = Release; 1228 | }; 1229 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1230 | isa = XCBuildConfiguration; 1231 | buildSettings = { 1232 | ALWAYS_SEARCH_USER_PATHS = NO; 1233 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1234 | CLANG_CXX_LIBRARY = "libc++"; 1235 | CLANG_ENABLE_MODULES = YES; 1236 | CLANG_ENABLE_OBJC_ARC = YES; 1237 | CLANG_WARN_BOOL_CONVERSION = YES; 1238 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1239 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1240 | CLANG_WARN_EMPTY_BODY = YES; 1241 | CLANG_WARN_ENUM_CONVERSION = YES; 1242 | CLANG_WARN_INT_CONVERSION = YES; 1243 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1244 | CLANG_WARN_UNREACHABLE_CODE = YES; 1245 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1246 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1247 | COPY_PHASE_STRIP = NO; 1248 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1249 | GCC_C_LANGUAGE_STANDARD = gnu99; 1250 | GCC_DYNAMIC_NO_PIC = NO; 1251 | GCC_OPTIMIZATION_LEVEL = 0; 1252 | GCC_PREPROCESSOR_DEFINITIONS = ( 1253 | "DEBUG=1", 1254 | "$(inherited)", 1255 | ); 1256 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1257 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1258 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1259 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1260 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1261 | GCC_WARN_UNUSED_FUNCTION = YES; 1262 | GCC_WARN_UNUSED_VARIABLE = YES; 1263 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1264 | MTL_ENABLE_DEBUG_INFO = YES; 1265 | ONLY_ACTIVE_ARCH = YES; 1266 | SDKROOT = iphoneos; 1267 | }; 1268 | name = Debug; 1269 | }; 1270 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1271 | isa = XCBuildConfiguration; 1272 | buildSettings = { 1273 | ALWAYS_SEARCH_USER_PATHS = NO; 1274 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1275 | CLANG_CXX_LIBRARY = "libc++"; 1276 | CLANG_ENABLE_MODULES = YES; 1277 | CLANG_ENABLE_OBJC_ARC = YES; 1278 | CLANG_WARN_BOOL_CONVERSION = YES; 1279 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1280 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1281 | CLANG_WARN_EMPTY_BODY = YES; 1282 | CLANG_WARN_ENUM_CONVERSION = YES; 1283 | CLANG_WARN_INT_CONVERSION = YES; 1284 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1285 | CLANG_WARN_UNREACHABLE_CODE = YES; 1286 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1287 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1288 | COPY_PHASE_STRIP = YES; 1289 | ENABLE_NS_ASSERTIONS = NO; 1290 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1291 | GCC_C_LANGUAGE_STANDARD = gnu99; 1292 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1293 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1294 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1295 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1296 | GCC_WARN_UNUSED_FUNCTION = YES; 1297 | GCC_WARN_UNUSED_VARIABLE = YES; 1298 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1299 | MTL_ENABLE_DEBUG_INFO = NO; 1300 | SDKROOT = iphoneos; 1301 | VALIDATE_PRODUCT = YES; 1302 | }; 1303 | name = Release; 1304 | }; 1305 | /* End XCBuildConfiguration section */ 1306 | 1307 | /* Begin XCConfigurationList section */ 1308 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "everyDayReadTests" */ = { 1309 | isa = XCConfigurationList; 1310 | buildConfigurations = ( 1311 | 00E356F61AD99517003FC87E /* Debug */, 1312 | 00E356F71AD99517003FC87E /* Release */, 1313 | ); 1314 | defaultConfigurationIsVisible = 0; 1315 | defaultConfigurationName = Release; 1316 | }; 1317 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "everyDayRead" */ = { 1318 | isa = XCConfigurationList; 1319 | buildConfigurations = ( 1320 | 13B07F941A680F5B00A75B9A /* Debug */, 1321 | 13B07F951A680F5B00A75B9A /* Release */, 1322 | ); 1323 | defaultConfigurationIsVisible = 0; 1324 | defaultConfigurationName = Release; 1325 | }; 1326 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "everyDayRead-tvOS" */ = { 1327 | isa = XCConfigurationList; 1328 | buildConfigurations = ( 1329 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1330 | 2D02E4981E0B4A5E006451C7 /* Release */, 1331 | ); 1332 | defaultConfigurationIsVisible = 0; 1333 | defaultConfigurationName = Release; 1334 | }; 1335 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "everyDayRead-tvOSTests" */ = { 1336 | isa = XCConfigurationList; 1337 | buildConfigurations = ( 1338 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1339 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1340 | ); 1341 | defaultConfigurationIsVisible = 0; 1342 | defaultConfigurationName = Release; 1343 | }; 1344 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "everyDayRead" */ = { 1345 | isa = XCConfigurationList; 1346 | buildConfigurations = ( 1347 | 83CBBA201A601CBA00E9B192 /* Debug */, 1348 | 83CBBA211A601CBA00E9B192 /* Release */, 1349 | ); 1350 | defaultConfigurationIsVisible = 0; 1351 | defaultConfigurationName = Release; 1352 | }; 1353 | /* End XCConfigurationList section */ 1354 | }; 1355 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1356 | } 1357 | -------------------------------------------------------------------------------- /ios/everyDayRead.xcodeproj/xcshareddata/xcschemes/everyDayRead-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/everyDayRead.xcodeproj/xcshareddata/xcschemes/everyDayRead.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/everyDayRead/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/everyDayRead/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"everyDayRead" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /ios/everyDayRead/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /ios/everyDayRead/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/everyDayRead/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | everyDayRead 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | Feather.ttf 59 | FontAwesome.ttf 60 | Foundation.ttf 61 | Ionicons.ttf 62 | MaterialCommunityIcons.ttf 63 | MaterialIcons.ttf 64 | Octicons.ttf 65 | SimpleLineIcons.ttf 66 | Zocial.ttf 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /ios/everyDayRead/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ios/everyDayReadTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/everyDayReadTests/everyDayReadTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import 14 | #import 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface everyDayReadTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation everyDayReadTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "everyDayRead", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "axios": "^0.18.0", 11 | "prop-types": "^15.6.1", 12 | "react": "16.0.0-alpha.6", 13 | "react-native": "0.44.3", 14 | "react-native-drawer": "^2.5.0", 15 | "react-native-easy-toast": "^1.1.0", 16 | "react-native-modal": "^6.0.0", 17 | "react-native-vector-icons": "^4.6.0", 18 | "react-navigation": "^1.5.11" 19 | }, 20 | "devDependencies": { 21 | "babel-jest": "22.4.4", 22 | "babel-preset-react-native": "4.0.0", 23 | "jest": "22.4.4", 24 | "react-test-renderer": "16.0.0-alpha.6" 25 | }, 26 | "jest": { 27 | "preset": "react-native" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/common/LocalStorageUtils.js: -------------------------------------------------------------------------------- 1 | import React, { 2 | AsyncStorage 3 | }from 'react-native'; 4 | export default { 5 | constructor() { 6 | }, 7 | get(key) { 8 | if(!key) { 9 | return null; 10 | } 11 | key = key.toString(); 12 | return AsyncStorage.getItem(key).then((value)=>{ 13 | if(value) { 14 | let obj = JSON.parse(value) 15 | return obj.data; 16 | } 17 | return null; 18 | }).catch(()=>{ 19 | return null 20 | }) 21 | }, 22 | set(key, value) { 23 | if(!key) { 24 | return; 25 | } 26 | key = key.toString(); 27 | AsyncStorage.setItem(key, JSON.stringify({ 28 | data: value 29 | })); 30 | } 31 | } -------------------------------------------------------------------------------- /src/components/FontSizeContro.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | Button, 5 | Text, 6 | StyleSheet, 7 | TouchableOpacity 8 | } from 'react-native'; 9 | export default class FontSizeContro extends Component { 10 | constructor(props) { 11 | super(props); 12 | } 13 | eventFontSizeChange(activity) { 14 | this.props.onFontSizeChange && this.props.onFontSizeChange(activity); 15 | } 16 | render() { 17 | return ( 18 | 19 | 20 | 加大 21 | 22 | 23 | 减小 24 | 25 | 26 | ) 27 | } 28 | } 29 | const fontSizeContrStyles = StyleSheet.create({ 30 | content: { 31 | width: '100%', 32 | justifyContent: 'space-around', 33 | padding: 10, 34 | flexDirection: 'row', 35 | backgroundColor: '#999', 36 | }, 37 | controBtn: { 38 | width: '45%', 39 | alignItems: 'center', 40 | justifyContent: 'center', 41 | height: 40, 42 | backgroundColor: '#fff', 43 | }, 44 | itemBtn: { 45 | 46 | 47 | textAlign: 'center', 48 | }, 49 | }) -------------------------------------------------------------------------------- /src/components/ItemBg.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | View, 4 | TouchableOpacity, 5 | Text, 6 | StyleSheet, 7 | } from 'react-native'; 8 | 9 | const styles = StyleSheet.create({ 10 | itemBg: { 11 | justifyContent: 'center', 12 | alignItems: 'center' 13 | }, 14 | bg: { 15 | borderRadius: 10, 16 | width: 45, 17 | height: 45, 18 | }, 19 | title: { 20 | lineHeight: 25 21 | } 22 | }) 23 | export default class ItemBg extends  Component { 24 | eventClick = () => { 25 | this.props && this.props.onClick() 26 | } 27 | render() { 28 | return ( 29 | 30 | 31 | 32 | {this.props.title} 33 | 34 | 35 | ) 36 | } 37 | } -------------------------------------------------------------------------------- /src/components/ItemMenu.js: -------------------------------------------------------------------------------- 1 | import Icon from 'react-native-vector-icons/FontAwesome'; 2 | import React, { Component } from 'react'; 3 | import { 4 | View, 5 | TouchableOpacity, 6 | Text, 7 | StyleSheet, 8 | } from 'react-native'; 9 | 10 | const styles = StyleSheet.create({ 11 | itemMenuTitle: { 12 | color: '#fff', 13 | height: 35, 14 | lineHeight: 35 15 | }, 16 | itemMenu: { 17 | flex: 1, 18 | justifyContent: 'center', 19 | alignItems: 'center' 20 | }, 21 | title: { 22 | marginTop: 10, 23 | fontSize: 30, 24 | textAlign: 'center', 25 | } 26 | }) 27 | export default class ItemMenu extends Component{ 28 | eventClick = () => { 29 | this.props.onPress() 30 | } 31 | render() { 32 | return ( 33 | 34 | 35 | 36 | {this.props.title} 37 | 38 | 39 | ) 40 | } 41 | } -------------------------------------------------------------------------------- /src/components/NavigationBar.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { PropTypes } from 'prop-types'; 3 | import { 4 | View, 5 | StatusBar, 6 | Text, 7 | Image, 8 | StyleSheet, 9 | Platform 10 | } from 'react-native'; 11 | 12 | const NAV_BAR_HEIGHT_ANDROID = 50; //ANDROID下的高度 13 | const NAV_BAR_HEIGHT_IOS = 44; // IOS下的高度 14 | const STATUS_BAR_HEIGHT = 20;// 状态栏的高度 15 | const StatusBarShape = { 16 | backgroundColor: PropTypes.string, 17 | barStyle: PropTypes.oneOf(['default', 'light-content', 'dark-content']), 18 | hidden: PropTypes.bool 19 | } 20 | export default class NavigationBar extends Component { 21 | static propTypes = { 22 | style: View.propTypes.style, 23 | title: PropTypes.string, 24 | titleView: PropTypes.element, 25 | hide: PropTypes.bool, 26 | leftButton: PropTypes.element, 27 | rightButton: PropTypes.element, 28 | statusBar: PropTypes.shape(StatusBarShape) 29 | } 30 | static defaultProps = { 31 | statusBar: { 32 | barStyle: 'light-content', 33 | hidden: false, 34 | backgroundColor: '#f00' 35 | } 36 | } 37 | constructor(props) { 38 | super(props); 39 | this.state = { 40 | title: '', 41 | hide: false 42 | } 43 | } 44 | render() { 45 | let statusBar = 46 | 47 | 48 | let titleView = this.props.titleView ? this.props.titleView : 49 | {this.props.title} 50 | let content = 51 | {this.props.leftButton} 52 | 53 | {titleView} 54 | 55 | {this.props.rightButton} 56 | 57 | return ( 58 | 59 | {statusBar} 60 | {content} 61 | 62 | ) 63 | } 64 | } 65 | const styles = StyleSheet.create({ 66 | container: { 67 | backgroundColor: '#f00' 68 | }, 69 | navBar: { 70 | paddingLeft: 10, 71 | paddingRight: 10, 72 | alignItems: 'center', 73 | backgroundColor: '#fff', 74 | height: Platform.OS === 'ios' ? NAV_BAR_HEIGHT_IOS : NAV_BAR_HEIGHT_ANDROID, 75 | justifyContent: 'space-between', 76 | flexDirection: 'row', 77 | }, 78 | titleViewContainer: { 79 | justifyContent: 'center', 80 | alignItems: 'center', 81 | position: 'absolute', 82 | left: 40, 83 | right: 40, 84 | top: 0, 85 | bottom: 0 86 | }, 87 | statusBar: { 88 | // height: Platform.OS === 'ios'?STATUS_BAR_HEIGHT:0 89 | height: 0 90 | }, 91 | title: { 92 | fontSize: 20, 93 | color: '#333' 94 | } 95 | }) -------------------------------------------------------------------------------- /src/entry.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { AppRegistry, ScrollView, StyleSheet, Text, View, Image } from 'react-native' 3 | import { DrawerItems, DrawerNavigator } from 'react-navigation' 4 | import ReaderPage from './page/ReaderPage' 5 | import CollectList from './page/CollectList' 6 | const everyDayRead = DrawerNavigator({ 7 | ReadPage: { 8 | screen: ReaderPage, 9 | navigationOptions: { 10 | title: '阅读' 11 | } 12 | }, 13 | CollectList: { 14 | screen: CollectList, 15 | navigationOptions: { 16 | title: '我的收藏' 17 | } 18 | } 19 | }, { 20 | contentComponent: props => { 21 | return ( 22 | 23 | 24 | 25 | 26 | 27 | 28 | ) 29 | } 30 | }); 31 | 32 | export default everyDayRead; -------------------------------------------------------------------------------- /src/expand/dao/DaoArticle.js: -------------------------------------------------------------------------------- 1 | import React, { 2 | AsyncStorage 3 | } from 'react-native'; 4 | import axios from 'axios' 5 | import LocalStorageUtils from '../../common/LocalStorageUtils' 6 | // 每日一文 7 | const toDay_url = "https://www.easy-mock.com/mock/5b0029ac8aca094b58bb0c9e/dev/today#!method=get"; 8 | // 随机一文 9 | const random_url = 'https://www.easy-mock.com/mock/5b0029ac8aca094b58bb0c9e/dev/random#!method=get'; 10 | export default { 11 | COLLECT_KEY: "_TODAY_ARTICLE_01", 12 | COLLECTTOP_KEY: "_TODAY_ARTICLE_02", 13 | GetArtilceMethod: { 14 | Random: 1, 15 | ToDay: 2, 16 | Date: 3 17 | }, 18 | /** 19 | * 已收藏的文章牵引 20 | */ 21 | setCollectToc(value) { 22 | this.getCollectToc().then((currCollect) => { 23 | if (!currCollect) { 24 | currCollect = new Array(); 25 | } 26 | currCollect.push(value); 27 | LocalStorageUtils.set(this.COLLECTTOP_KEY, currCollect); 28 | }) 29 | }, 30 | createdTocStr(article) { 31 | return `${article.title}-${article.author}` 32 | }, 33 | async getCollectToc() { 34 | return LocalStorageUtils.get(this.COLLECTTOP_KEY).then((value) => { 35 | return value; 36 | }).catch(() => { 37 | return null; 38 | }); 39 | }, 40 | /** 41 | * 文章是否已经被收藏过 42 | */ 43 | async hasArticleCollected({ date, title, author }) { 44 | let collectList = await this.getCollectArticle(); 45 | let existIndex = -1; 46 | if (collectList) { 47 | collectList.forEach((item, index) => { 48 | if (item.date.curr == date.curr) { 49 | existIndex = index; 50 | return; 51 | } 52 | }) 53 | } 54 | return existIndex; 55 | }, 56 | /** 57 | * 收藏文章 58 | */ 59 | async collectArticle(article) { 60 | let collectList = await this.getCollectArticle(); 61 | let existIndex = await this.hasArticleCollected(article); 62 | if (!collectList) { 63 | collectList = new Array(); 64 | } 65 | if (existIndex != -1) { 66 | collectList.splice(existIndex, 1); 67 | } else { 68 | collectList.push({ 69 | title: article.title, 70 | date: article.date, 71 | author: article.author 72 | }) 73 | } 74 | LocalStorageUtils.set(this.COLLECT_KEY, collectList); 75 | }, 76 | /** 77 | * 获取收藏的所有文章 78 | */ 79 | getCollectArticle() { 80 | return LocalStorageUtils.get(this.COLLECT_KEY).then((value) => { 81 | return value; 82 | }).catch(() => { 83 | return null; 84 | }); 85 | }, 86 | getArticleByTagrteDate(date) { 87 | const url = `https://interface.meiriyiwen.com/article/day?dev=1&date=${date}`; 88 | return this._getArticle(url); 89 | }, 90 | getArticle(type, params) { 91 | switch (type) { 92 | case this.GetArtilceMethod.Random: 93 | return this._getArticle(random_url); 94 | case this.GetArtilceMethod.ToDay: 95 | return this._getArticle(toDay_url); 96 | case this.GetArtilceMethod.Date: 97 | return this.getArticleByTagrteDate(params) 98 | } 99 | }, 100 | _getArticle(url) { 101 | return new Promise((resolve, reject) => { 102 | fetch(url).then((response) => { 103 | return response.json(); 104 | }).then(result => { 105 | result.data.content = result.data.content.replace(/

/g, ""); 106 | result.data.content = result.data.content.replace(/<\/p>/g, "\n"); 107 | resolve(result); 108 | }).catch(error => { 109 | console.log(error); 110 | reject(error); 111 | }) 112 | }) 113 | } 114 | } -------------------------------------------------------------------------------- /src/page/CollectList.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import NavigtionBar from '../components/NavigationBar' 3 | import { 4 | View, 5 | FlatList, 6 | TouchableOpacity, 7 | Image, 8 | Text, 9 | StyleSheet, 10 | TextInput, 11 | Animated, 12 | ScrollView, 13 | WebView 14 | } from 'react-native'; 15 | const collectItemStyle = StyleSheet.create({ 16 | item: { 17 | padding: 20, 18 | flexDirection: 'row', 19 | alignItems: 'center', 20 | }, 21 | name: { 22 | fontSize: 20, 23 | color: '#333' 24 | }, 25 | separator: { 26 | height: 0.5, 27 | backgroundColor: '#666' 28 | }, 29 | author: { 30 | paddingLeft: 10, 31 | fontSize: 12, 32 | color: '#666', 33 | } 34 | }) 35 | import DaoArticle from '../expand/dao/DaoArticle' 36 | export default class AnimPage extends Component { 37 | static navigationOptions = { 38 | title: 'Details', 39 | }; 40 | componentDidMount(){ 41 | DaoArticle.getCollectArticle().then((value)=>{ 42 | this.setState({ 43 | collectList: value 44 | }) 45 | }) 46 | } 47 | getCollectItem(props) { 48 | return ( 49 | 50 | {props.title} 51 | {props.author} 52 | 53 | ) 54 | } 55 | gotoArticle = (article) => { 56 | //接口有问题,暂不可点击跳转。 57 | return; 58 | this.props.navigation.navigate('ReadPage', { 59 | article 60 | }) 61 | } 62 | constructor(props) { 63 | super(props); 64 | this.state = { 65 | collectList: [] 66 | }; 67 | } 68 | back = () => { 69 | this.props.navigation.goBack(); 70 | } 71 | render() { 72 | let leftBackBtn = 73 | 76 | 77 | 78 | return ( 79 | 80 | 93 | 94 | } 96 | data={this.state.collectList} 97 | keyExtractor={(item, index) => item.date.curr} 98 | renderItem={({ item }) => this.getCollectItem(item)} 99 | /> 100 | 101 | ) 102 | } 103 | } -------------------------------------------------------------------------------- /src/page/ReaderPage.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import Modal from "react-native-modal"; 3 | import Icon from 'react-native-vector-icons/FontAwesome'; 4 | import ItemMenu from '../components/ItemMenu'; 5 | import ItemBg from '../components/ItemBg' 6 | import { 7 | Platform, 8 | View, 9 | AsyncStorage, 10 | Button, 11 | TouchableOpacity, 12 | Image, 13 | Text, 14 | StyleSheet, 15 | TextInput, 16 | ScrollView, 17 | Dimensions, 18 | WebView 19 | } from 'react-native'; 20 | import DaoArticle from '../expand/dao/DaoArticle' 21 | import Drawer from 'react-native-drawer' 22 | import NavigtionBar from '../components/NavigationBar' 23 | import FontSizeContro from '../components/FontSizeContro' 24 | const styles = StyleSheet.create({ 25 | endView: { 26 | borderStyle: 'solid', 27 | paddingTop: 15, 28 | paddingBottom: 15, 29 | borderTopWidth: 1, 30 | borderColor: '#666', 31 | borderBottomWidth: 1, 32 | }, 33 | endText: { 34 | textAlign: 'center' 35 | }, 36 | content: { 37 | marginTop: 20, 38 | }, 39 | itemMenuTitle: { 40 | color: '#fff', 41 | height: 35, 42 | lineHeight: 35 43 | }, 44 | author: { 45 | marginTop: 20, 46 | fontSize: 14, 47 | color: '#666', 48 | textAlign: 'center', 49 | }, 50 | title: { 51 | marginTop: 20, 52 | textAlign: 'center' 53 | }, 54 | itemMenu: { 55 | flex: 1, 56 | justifyContent: 'center', 57 | alignItems: 'center' 58 | }, 59 | menu: { 60 | justifyContent: "flex-end", 61 | margin: 0 62 | }, 63 | menuContent: { 64 | height: 80, 65 | backgroundColor: '#333', 66 | flexDirection: 'row', 67 | alignItems: 'center' 68 | }, 69 | 70 | cut: { 71 | height: 1, 72 | marginTop: 10, 73 | marginBottom: 10, 74 | marginLeft: 30, 75 | marginRight: 30, 76 | backgroundColor: '#999' 77 | }, 78 | tips: { 79 | fontSize: 30, 80 | }, 81 | bgList: { 82 | height: 100, 83 | padding: 10, 84 | alignItems: 'center', 85 | justifyContent: 'space-around', 86 | backgroundColor: '#8e949d', 87 | flexDirection: 'row' 88 | } 89 | }); 90 | 91 | const MODE = { 92 | NIGHT: 1, 93 | DAY: 0 94 | } 95 | const dayStyle = { 96 | bgStyles: { 97 | backgroundColor: '#333' 98 | }, 99 | title: { 100 | color: '#fff' 101 | }, 102 | content: { 103 | color: '#fff' 104 | } 105 | 106 | } 107 | const sunStyle = { 108 | bgStyles: { 109 | backgroundColor: '#fff' 110 | }, 111 | title: { 112 | color: '#333' 113 | }, 114 | content: { 115 | color: '#333' 116 | } 117 | } 118 | const subMenuTye = { 119 | font: 1, 120 | bg: 2 121 | } 122 | export default class ReadPage extends Component { 123 | constructor(props) { 124 | super(props) 125 | this.state = { 126 | fontSizeStyle: { 127 | endCountFontSize: 15, 128 | authorFontSize: 16, 129 | contentFontSize: 18, 130 | titleFontSize: 33, 131 | }, 132 | modeStyle: { 133 | icon: 'moon-o', 134 | title: '夜间' 135 | }, 136 | readStyle: { 137 | bgStyles: { 138 | backgroundColor: '#fff' 139 | } 140 | }, 141 | article: null, 142 | modalVisible: false, 143 | title: '', 144 | hasLive: false, 145 | currShowMenu: -1, 146 | mode: MODE.DAY, // 1 夜间模式 0 日间模式 147 | thresholdFontSize: 2, 148 | bgStyles: [ 149 | { title: '羊皮纸', bgColor: '#e5dfce' }, 150 | { title: '淡雅白', bgColor: '#f6f4f0' }, 151 | { title: '冰爽蓝', bgColor: '#c9e0ef' }, 152 | { title: '浪漫粉', bgColor: '#e0b7c4' }, 153 | { title: '护眼绿', bgColor: '#a5bd9c' } 154 | ] 155 | } 156 | } 157 | componentDidMount() { 158 | let article = this.props.navigation.getParam("article"); 159 | if (article) { 160 | this.getArticle(DaoArticle.GetArtilceMethod.Date, article.date.curr) 161 | return; 162 | } 163 | this.getArticle(DaoArticle.GetArtilceMethod.ToDay); 164 | } 165 | getArticle(type, params) { 166 | DaoArticle.getArticle(type, params).then((result) => { 167 | this.setState({ 168 | article: result.data 169 | }) 170 | this.initLiveState(); 171 | }).catch((e) => { 172 | console.log("error", e) 173 | }) 174 | } 175 | async initLiveState() { 176 | if (this.state.article) { 177 | this.setState({ 178 | hasLive: await DaoArticle.hasArticleCollected(this.state.article) != -1 179 | }) 180 | } 181 | } 182 | onLiveToggle = () => { 183 | DaoArticle.collectArticle(this.state.article) 184 | this.setState({ 185 | hasLive: !this.state.hasLive 186 | }) 187 | } 188 | setBgStyles = (target) => { 189 | this.setState({ 190 | readStyle: { 191 | bgStyles: { 192 | backgroundColor: target.bgColor 193 | }, 194 | title: { 195 | color: '#333' 196 | }, 197 | content: { 198 | color: '#333' 199 | } 200 | } 201 | }); 202 | } 203 | getSubMenu = (type) => { 204 | if (type == subMenuTye.bg) { 205 | return 206 | { 207 | this.state.bgStyles.map((item) => { 208 | return 209 | }) 210 | } 211 | 212 | } else { 213 | return 214 | } 215 | } 216 | onOpenMenuPanel = () => { 217 | this.setState({ 218 | modalVisible: true 219 | }) 220 | } 221 | onFontSizeChange = (activity) => { 222 | let newFontSizeStyle = Object.assign({}, this.state.fontSizeStyle); 223 | if (activity == 'sub') { 224 | for (let key in this.state.fontSizeStyle) { 225 | newFontSizeStyle[key] -= this.state.thresholdFontSize 226 | } 227 | } else { 228 | for (let key in this.state.fontSizeStyle) { 229 | newFontSizeStyle[key] += this.state.thresholdFontSize 230 | } 231 | } 232 | this.setState({ 233 | fontSizeStyle: newFontSizeStyle 234 | }); 235 | } 236 | onScroll = (e) => { 237 | let y = e.nativeEvent.contentOffset.y; 238 | if (y > 70) { 239 | if (this.state.title != this.state.article.title) { 240 | console.log("设置标题") 241 | this.setState({ 242 | title: this.state.article.title 243 | }) 244 | } 245 | } else { 246 | if (this.state.title == this.state.article.title) { 247 | this.setState({ 248 | title: '' 249 | }) 250 | } 251 | } 252 | } 253 | toggleDraw = () => { 254 | this.props.navigation.navigate('DrawerOpen') 255 | } 256 | /** 257 | * 日常夜间模式切换 258 | */ 259 | onModeClickToggle = () => { 260 | let modeStyle = null; 261 | let targetStyle = null; 262 | if (this.state.mode == MODE.DAY) { 263 | modeStyle = { 264 | icon: 'moon-o', 265 | title: '夜间' 266 | } 267 | targetStyle = dayStyle; 268 | } else { 269 | modeStyle = { 270 | icon: 'sun-o', 271 | title: '日常' 272 | } 273 | targetStyle = sunStyle; 274 | } 275 | this.setState({ 276 | modeStyle: modeStyle, 277 | readStyle: Object.assign({}, this.state.readStyle, targetStyle) 278 | }) 279 | this.setState({ 280 | mode: !this.state.mode 281 | }) 282 | } 283 | onMenuClick = (type) => { 284 | this.setState({ 285 | currShowMenu: type 286 | }) 287 | } 288 | render() { 289 | return ( 290 | 291 | this.setState({ modalVisible: false })} 295 | style={styles.menu}> 296 | 297 | { 298 | this.getSubMenu(this.state.currShowMenu) 299 | } 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 311 | 312 | 313 | } 314 | leftButton={ 315 | 316 | 319 | 320 | 321 | } 322 | navBar={{ 323 | backgroundColor: this.state.readStyle.bgStyles.backgroundColor 324 | }} 325 | title={this.state.title} 326 | statusBar={{ 327 | backgroundColor: this.state.bgColor 328 | }} 329 | /> 330 | 331 | 335 | 338 | 340 | {this.state.article && this.state.article.title} 341 | {this.state.article && this.state.article.author} 342 | 343 | {this.state.article && this.state.article.content} 344 | 345 | { 346 | this.state.article && ( 347 | 348 | 全文完 共{this.state.article.wc}字 349 | 350 | ) 351 | } 352 | 353 | 354 | 355 | 356 | ) 357 | } 358 | } -------------------------------------------------------------------------------- /src/res/images/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/src/res/images/head.png -------------------------------------------------------------------------------- /src/res/images/ic_arrow_back_white_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/src/res/images/ic_arrow_back_white_36pt.png -------------------------------------------------------------------------------- /src/res/images/ic_arrow_back_white_36pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/src/res/images/ic_arrow_back_white_36pt@2x.png -------------------------------------------------------------------------------- /src/res/images/ic_arrow_back_white_36pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/src/res/images/ic_arrow_back_white_36pt@3x.png -------------------------------------------------------------------------------- /src/res/images/icon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/src/res/images/icon_menu.png -------------------------------------------------------------------------------- /src/res/images/menuBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenotsai/ReactNativeEveryDayRead/3c397749be5a732753f9583ed0c14260325306d9/src/res/images/menuBg.jpg --------------------------------------------------------------------------------