├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Privacy-Policy.html ├── Privacy-Policy.md ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── crashlytics-build.properties │ │ ├── fonts │ │ │ ├── Andale Mono.ttf │ │ │ ├── Arial Black.ttf │ │ │ ├── Arial.ttf │ │ │ ├── Comic Sans MS.ttf │ │ │ ├── Courier New.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Georgia.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Microsoft Sans Serif.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── Rubik-Black.ttf │ │ │ ├── Rubik-BlackItalic.ttf │ │ │ ├── Rubik-Bold.ttf │ │ │ ├── Rubik-BoldItalic.ttf │ │ │ ├── Rubik-Italic.ttf │ │ │ ├── Rubik-Light.ttf │ │ │ ├── Rubik-LightItalic.ttf │ │ │ ├── Rubik-Medium.ttf │ │ │ ├── Rubik-MediumItalic.ttf │ │ │ ├── Rubik-Regular.ttf │ │ │ ├── SF-UI-Text-Regular.otf │ │ │ ├── SanFrancisco.ttf │ │ │ ├── SanFranciscoBold.ttf │ │ │ ├── SanFranciscoThin.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Skia.ttf │ │ │ ├── Times New Roman.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── index.android.bundle │ │ └── index.android.bundle.meta │ │ ├── java │ │ └── org │ │ │ └── gdgsrilanka │ │ │ └── codelanka │ │ │ └── eznet │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-mdpi │ │ ├── img_.jpg │ │ ├── img_derana.png │ │ ├── img_divaina.png │ │ ├── img_lankadeepa.png │ │ ├── img_newspapers.png │ │ ├── img_rivira.png │ │ ├── img_unknown.png │ │ ├── node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xhdpi │ │ ├── node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxhdpi │ │ ├── node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── drawable-xxxhdpi │ │ ├── node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png │ │ └── node_modules_reactnavigation_src_views_assets_backicon.png │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── com_crashlytics_export_strings.xml │ │ ├── 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 └── yarn.lock ├── app.json ├── components ├── Drawer.js └── SideBar.js ├── debug.keystore.enc ├── img ├── Banner.png ├── card-showcase.jpg ├── card-showcase.png ├── derana.png ├── divaina.png ├── index.js ├── lankadeepa.png ├── login_logo.png ├── logo.png ├── news-papers.png ├── rivira.png ├── unknown.png ├── දිවයින.jpg └── ලංකාදීප.jpg ├── index.android.js ├── index.ios.js ├── ios ├── EZNet-tvOS │ └── Info.plist ├── EZNet-tvOSTests │ └── Info.plist ├── EZNet.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── EZNet-tvOS.xcscheme │ │ └── EZNet.xcscheme ├── EZNet │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── EZNetTests │ ├── EZNetTests.m │ └── Info.plist ├── package.json ├── src ├── EZNetApp.js ├── actions │ ├── index.js │ └── types.js ├── api │ └── dummy_api.js ├── components │ ├── App.js │ ├── DetailScreen.js │ └── common │ │ ├── BoxItem.js │ │ └── TwoColumnView.js ├── index.js └── reducers │ ├── data_reducer.js │ └── index.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb", 3 | "parser": "babel-eslint", 4 | "rules": { 5 | "strict": 0, 6 | "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], 7 | "import/prefer-default-export": "off" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/reactnative 3 | 4 | ### ReactNative ### 5 | # React Native Stack Base 6 | ### ReactNative.Buck Stack ### 7 | buck-out/ 8 | .buckconfig.local 9 | .buckd/ 10 | .buckversion 11 | .fakebuckversion 12 | 13 | ### ReactNative.macOS Stack ### 14 | *.DS_Store 15 | .AppleDouble 16 | .LSOverride 17 | 18 | # Icon must end with two \r 19 | Icon 20 | 21 | 22 | # Thumbnails 23 | ._* 24 | 25 | # Files that might appear in the root of a volume 26 | .DocumentRevisions-V100 27 | .fseventsd 28 | .Spotlight-V100 29 | .TemporaryItems 30 | .Trashes 31 | .VolumeIcon.icns 32 | .com.apple.timemachine.donotpresent 33 | 34 | # Directories potentially created on remote AFP share 35 | .AppleDB 36 | .AppleDesktop 37 | Network Trash Folder 38 | Temporary Items 39 | .apdisk 40 | 41 | ### ReactNative.Android Stack ### 42 | # Built application files 43 | *.apk 44 | *.ap_ 45 | 46 | # Files for the ART/Dalvik VM 47 | *.dex 48 | 49 | # Java class files 50 | *.class 51 | 52 | # Generated files 53 | bin/ 54 | gen/ 55 | out/ 56 | 57 | # Gradle files 58 | .gradle/ 59 | build/ 60 | 61 | # Local configuration file (sdk path, etc) 62 | local.properties 63 | 64 | # Proguard folder generated by Eclipse 65 | proguard/ 66 | 67 | # Log Files 68 | *.log 69 | 70 | # Android Studio Navigation editor temp files 71 | .navigation/ 72 | 73 | # Android Studio captures folder 74 | captures/ 75 | 76 | # Intellij 77 | *.iml 78 | .idea/workspace.xml 79 | .idea/tasks.xml 80 | .idea/gradle.xml 81 | .idea/dictionaries 82 | .idea/libraries 83 | 84 | # External native build folder generated in Android Studio 2.2 and later 85 | .externalNativeBuild 86 | 87 | # Freeline 88 | freeline.py 89 | freeline/ 90 | freeline_project_description.json 91 | 92 | ### ReactNative.Gradle Stack ### 93 | .gradle 94 | **/build/ 95 | 96 | # Ignore Gradle GUI config 97 | gradle-app.setting 98 | 99 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 100 | !gradle-wrapper.jar 101 | 102 | # Cache of project 103 | .gradletasknamecache 104 | 105 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 106 | # gradle/wrapper/gradle-wrapper.properties 107 | 108 | ### ReactNative.Xcode Stack ### 109 | # Xcode 110 | # 111 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 112 | 113 | ## Build generated 114 | DerivedData/ 115 | 116 | ## Various settings 117 | *.pbxuser 118 | !default.pbxuser 119 | *.mode1v3 120 | !default.mode1v3 121 | *.mode2v3 122 | !default.mode2v3 123 | *.perspectivev3 124 | !default.perspectivev3 125 | xcuserdata/ 126 | 127 | ## Other 128 | *.moved-aside 129 | *.xccheckout 130 | *.xcscmblueprint 131 | 132 | ### ReactNative.Linux Stack ### 133 | *~ 134 | 135 | # temporary files which can be created if a process still has a handle open of a deleted file 136 | .fuse_hidden* 137 | 138 | # KDE directory preferences 139 | .directory 140 | 141 | # Linux trash folder which might appear on any partition or disk 142 | .Trash-* 143 | 144 | # .nfs files are created when an open file is removed but is still being accessed 145 | .nfs* 146 | 147 | ### ReactNative.Node Stack ### 148 | # Logs 149 | logs 150 | npm-debug.log* 151 | yarn-debug.log* 152 | yarn-error.log* 153 | 154 | # Runtime data 155 | pids 156 | *.pid 157 | *.seed 158 | *.pid.lock 159 | 160 | # Directory for instrumented libs generated by jscoverage/JSCover 161 | lib-cov 162 | 163 | # Coverage directory used by tools like istanbul 164 | coverage 165 | 166 | # nyc test coverage 167 | .nyc_output 168 | 169 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 170 | .grunt 171 | 172 | # Bower dependency directory (https://bower.io/) 173 | bower_components 174 | 175 | # node-waf configuration 176 | .lock-wscript 177 | 178 | # Compiled binary addons (http://nodejs.org/api/addons.html) 179 | build/Release 180 | 181 | # Dependency directories 182 | node_modules/ 183 | jspm_packages/ 184 | 185 | # Typescript v1 declaration files 186 | typings/ 187 | 188 | # Optional npm cache directory 189 | .npm 190 | 191 | # Optional eslint cache 192 | .eslintcache 193 | 194 | # Optional REPL history 195 | .node_repl_history 196 | 197 | # Output of 'npm pack' 198 | *.tgz 199 | 200 | # Yarn Integrity file 201 | .yarn-integrity 202 | 203 | # dotenv environment variables file 204 | .env 205 | 206 | 207 | # End of https://www.gitignore.io/api/reactnative 208 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "6.9" 4 | - "7.1" 5 | sudo: false 6 | cache: 7 | directories: 8 | - $HOME/.yarn-cache 9 | - $HOME/.gradle/caches/ 10 | - $HOME/.gradle/wrapper/ 11 | env: 12 | matrix: 13 | - NODE_ENV='ci' 14 | global: 15 | - secure: lC+SUm2cVW+6E6utt45i5NDe+zrrjbNtB+F4qFLOm8edTLl/ZMRas6atRCcrSBUQdGIfFsH/cN7+HHI2qwz/1nQtX4Oe/K4glVBj8zb87C1W5/l0kDk1QWlCubm2++CCjqGG+G9iOsMaXNxxeeo4M1GhCOTFCOLud2kzhNWY1Y1e+WbAESJpYrAtxo1gB1SmDhHzhnsHL+27JeQ1DVakNLRfO8FIaaFwjoq6W3zRGM80M3xGpqSyoHNp5DWWKJzqyAIsdmQmm9ik55Lx5+eFq4iV+gvniY15cWFzb7+tskFli7CsMmH04glKxlQJV5it5vHDNoB5f6wSDRb3T+7knxaVcjIltWZd3zF3TBkndym2pavb4c+kH3lYznM7ExsDQtULeU0c4GeDiZKARUhqBq2ZHi1t4IyvHYsOcjSG00UGFxBzTfTtCpmTfZypnXbHbuS5oDq1aKlOuL2UA5hS1S77BHaB1nTOVRmxPscqoix9KLhPOQdJWMEQwONz5lJUinTELLO7mwqnph4mO9hhix3NalXFGxScBvi7aP0zdD/H2q+bzliEzLXZd/BuoVmqcSU2dgYeocLYxFy4mBzypnfQE/FXWIpUBOL+vWdX9uCeCYUgB/1Dtxgp4pFPPG/suMBkbU2WZUBkAwX5m3LIc1jM+d8mROxAlzbr3TTDx24= 16 | - secure: fEXjYYuNUHO4+cX/rpRnE39LLfSbIpIepgMmvRiJWDS/0O16vYl4SBvj8h/pShnmRlVX5yhyd4XAS0yZODReq0AjZetupsfmnUXDRhVTe0CbYnR/CVBUTiO2rUcuFxSAuaqgoE1x6wNT8pwvcp+G5dh1RKSl/Z8pdLggg6slVvRRo9LV9ddiZvJKwBh3R8mPltI/9HQHD8ym2UESN7hUcB/oMDd84pnGU5/ce4UHzeMaqd+jL0GUH+ab8kiTe+GbrKXouT0RyiBVGgJAjtDruaDr7wBpAJ+5yqo5qsO5atansLECPE6NVHpFjtLEx0JA96VLh7Kp0wHV9JNJmlrsi+wHSwXrfD5nnQdtSwiWcTXL7+k8txRblUTnFTsHMhJzI6dB67k5wniw/MbVvYgIfrPnOgIFeooe1hQco+Mmo6Rtuz5ihWDFbp2ATZXRYMl6iDHrU9ncXnrt+eU7ct+BCtlEtBAHOZ7831tu4+BvYdkeGfHA1gCSmmJJkdhWdRMbxslLDJ2OdTnL3F2+ehb5mnqMo3q160OkpCnrsO9yMfrEYkfqImTby+4Zt1wS4lQxd6bP7V+osZ1pVUXdDwTXPMMeZvS/Z3Z1NUyR6TPJ6bYJ5IcMdtOpVFKejey9yXnn5vpvg2poc0fFm86c1GWFkMLSC2tI/+Lzvgf5c6YuYBI= 17 | script: 18 | - react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bu‌​ndle --assets-dest android/app/src/main/res/ 19 | - react-native bundle --platform ios --dev false --entry-file index.ios.js --bundle-output ios/main.jsbundle --assets-dest ios 20 | matrix: 21 | include: 22 | - language: android 23 | os: linux 24 | jdk: oraclejdk8 25 | before_cache: 26 | - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock 27 | - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ 28 | sudo: required 29 | node_js: false 30 | before_install: 31 | - nvm install 7 32 | - node --version 33 | - travis_retry curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - 34 | - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list 35 | - travis_retry sudo apt-get update -qq 36 | - travis_retry sudo apt-get install -y -qq yarn 37 | - openssl aes-256-cbc -K $encrypted_26b4962af0e7_key -iv $encrypted_26b4962af0e7_iv 38 | -in debug.keystore.enc -out debug.keystore -d 39 | install: 40 | - yarn 41 | android: 42 | components: 43 | - tools 44 | - build-tools-23.0.1 45 | - build-tools-25.0.2 46 | - android-23 47 | - android-25 48 | - extra-android-m2repository 49 | - extra-google-google_play_services 50 | - extra-google-m2repository 51 | - addon-google_apis-google-16 52 | 53 | script: 54 | - cd android && ./gradlew assembleDebug && ./gradlew assembleRelease 55 | before_deploy: 56 | - cp $TRAVIS_BUILD_DIR/debug.keystore $HOME 57 | - jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 $TRAVIS_BUILD_DIR/android/app/build/outputs/apk/app-release-unsigned.apk androiddebugkey -keystore $HOME/debug.keystore -storepass $storepass -keypass $keypass 58 | - "${ANDROID_HOME}/build-tools/23.0.1/zipalign 4 $TRAVIS_BUILD_DIR/android/app/build/outputs/apk/app-release-unsigned.apk $TRAVIS_BUILD_DIR/android/app/build/outputs/apk/app-debug-signed.apk" 59 | deploy: # mostly generated by `> travis deploy releases` 60 | skip_cleanup: true 61 | provider: releases 62 | api_key: 63 | secure: 2fYSjSPMmTUDhcgd6w/nXVMtsp6O+GHb0gFjpTjPA33xodEYsNlEvmdk9fvUJakWi2z0VxBaGw1iHaYCQmzj8858caQVjlSpdTRUVw3d/CMw0O3kZWKD37GaX5ocY1LZ2QSJS1ePXitOZYkgqbfK104Tiuru1/SKKziLgM5OIHVQj4CGdlvqRr5rERU2Sy9yPi+XgrlnTgcNGIzZ+3In19jhaZzFLvVTQckk0R6oQaQQnt/GudEPdft2SNLQS0ecHuUj8n8dGb0TR2G9ej5gVq7aDo4oyn2k8FOKa86XwT6cGpjm3VdOb5rfvAVxglm4GqWWjxXkm8Wq69Awrhb6PDHGvq1H68ShvEudSPr1ABRj6grWsf8n5IxKQL4FG+pV2d3D6wtD/mnljguvCjw8Gb652VFwij/Vhm4z8W/VvviUXF+sWnivdEOgvUOG3XW9DZP84I1IWPLSfj2nVnmgVYJVIrCmcSWh2B2iednJeWP75mz5PyXfUp+Q9ECuu0C19oi7C2pTHTqq3GhXAhtZszmllW4cRftw7kUYsyzDzVutB8SVSkKqSCiO/NXIfvbaHQ1BHabzV5aAhD1n2fitB7UDROaXZSlAWzq2eSpbKzITHmkUateEgig89oDIE9NUJ/iITTtWzGjqTxwQkhpFWN6HUSIJleC0658kgI/izwI= 64 | file: $TRAVIS_BUILD_DIR/android/app/build/outputs/apk/app-debug-signed-$TRAVIS_TAG.apk 65 | on: 66 | repo: CodeLanka/ez-net-app 67 | branch: master 68 | tags: true 69 | - language: objective-c 70 | os: osx 71 | osx_image: xcode8.2 72 | node_js: false 73 | before_install: 74 | - nvm install 7 75 | - node --version 76 | - travis_retry npm install -g yarn 77 | - yarn -version 78 | install: 79 | - travis_retry gem install xcpretty 80 | - travis_retry yarn 81 | xcode_project: ios/ReactNativeProject.xcodeproj 82 | xcode_scheme: ios/ReactNativeProjectTests 83 | script: 84 | - cd ios 85 | - xcodebuild -scheme ReactNativeProject -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty 86 | 87 | notifications: 88 | slack: 89 | rooms: 90 | - codelanka:t20DKGCWPBZybOLsuPcCARUI#travis-ci 91 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 CodeLanka Initiative 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Privacy-Policy.html: -------------------------------------------------------------------------------- 1 | Privacy Policy

Privacy Policy

GDG Sri Lanka built the EZNet app as an Open Source app. This SERVICE is provided by GDG Sri Lanka at no cost and is intended for use as is.

This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at EZNet unless otherwise defined in this Privacy Policy.

Information Collection and Use

For a better experience, while using our Service, we may require you to provide us with certain personally identifiable information. The information that we request is will be retained by us and used as described in this privacy policy.

The app does use third party services that may collect information used to identify you.

Link to privacy policy of third party service providers used by the app

Log Data

We want to inform you that whenever you use our Service, in a case of an error in the app we collect data and information (through third party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing our Service, the time and date of your use of the Service, and other statistics.

Cookies

Cookies are files with small amount of data that is commonly used an anonymous unique identifier. These are sent to your browser from the website that you visit and are stored on your device internal memory.

This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collection information and to improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service.

Service Providers

We may employ third-party companies and individuals due to the following reasons:

We want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.

Security

We value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and we cannot guarantee its absolute security.

Links to Other Sites

This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.

Children’s Privacy

These Services do not address anyone under the age of 13. We do not knowingly collect personally identifiable information from children under 13. In the case we discover that a child under 13 has provided us with personal information, we immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact us so that we will be able to do necessary actions.

Changes to This Privacy Policy

We may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately after they are posted on this page.

Contact Us

If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us.

This privacy policy page was created at privacypolicytemplate.net and modified/generated by App Privacy Policy Generator

2 | -------------------------------------------------------------------------------- /Privacy-Policy.md: -------------------------------------------------------------------------------- 1 | ## Privacy Policy 2 | 3 | GDG Sri Lanka built the EZNet app as an Open Source app. This SERVICE is provided by GDG Sri Lanka at no cost and is intended for use as is. 4 | 5 | This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service. 6 | 7 | If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy. 8 | 9 | The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at EZNet unless otherwise defined in this Privacy Policy. 10 | 11 | **Information Collection and Use** 12 | 13 | For a better experience, while using our Service, we may require you to provide us with certain personally identifiable information. The information that we request is will be retained by us and used as described in this privacy policy. 14 | 15 | The app does use third party services that may collect information used to identify you. 16 | 17 |
18 | 19 | Link to privacy policy of third party service providers used by the app 20 | 21 | * [Google Play Services](https://www.google.com/policies/privacy/) 22 | * [Firebase Analytics](https://firebase.google.com/policies/analytics) 23 | 24 |
25 | 26 | **Log Data** 27 | 28 | We want to inform you that whenever you use our Service, in a case of an error in the app we collect data and information (through third party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing our Service, the time and date of your use of the Service, and other statistics. 29 | 30 | **Cookies** 31 | 32 | Cookies are files with small amount of data that is commonly used an anonymous unique identifier. These are sent to your browser from the website that you visit and are stored on your device internal memory. 33 | 34 | This Service does not use these “cookies” explicitly. However, the app may use third party code and libraries that use “cookies” to collection information and to improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. 35 | 36 | **Service Providers** 37 | 38 | We may employ third-party companies and individuals due to the following reasons: 39 | 40 | * To facilitate our Service; 41 | * To provide the Service on our behalf; 42 | * To perform Service-related services; or 43 | * To assist us in analyzing how our Service is used. 44 | 45 | We want to inform users of this Service that these third parties have access to your Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. 46 | 47 | **Security** 48 | 49 | We value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and we cannot guarantee its absolute security. 50 | 51 | **Links to Other Sites** 52 | 53 | This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. 54 | 55 | **Children’s Privacy** 56 | 57 | These Services do not address anyone under the age of 13\. We do not knowingly collect personally identifiable information from children under 13\. In the case we discover that a child under 13 has provided us with personal information, we immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact us so that we will be able to do necessary actions. 58 | 59 | **Changes to This Privacy Policy** 60 | 61 | We may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. These changes are effective immediately after they are posted on this page. 62 | 63 | **Contact Us** 64 | 65 | If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us. 66 | 67 | This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.firebaseapp.com/) 68 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # EZNet App [![Build Status](https://travis-ci.org/CodeLanka/ez-net-app.svg?branch=master)](https://travis-ci.org/CodeLanka/ez-net-app) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/9b8f07b92ceb4e9fa9cd17f2226a0f4a)](https://www.codacy.com/app/agentmilindu/ez-net-app?utm_source=github.com&utm_medium=referral&utm_content=CodeLanka/ez-net-app&utm_campaign=Badge_Grade) [![Open Source Helpers](https://www.codetriage.com/codelanka/ez-net-app/badges/users.svg)](https://www.codetriage.com/codelanka/ez-net-app) 2 | 3 | 4 | ![EZNet](https://github.com/CodeLanka/ez-net-app/blob/master/img/Banner.png) 5 | 6 | ## Overview 7 | EZ Net is an application developed for rural internet users which are not tech savy and shows interest in the internet and the resources it has. 8 | 9 | It contains simple images to assist the user to open a webpage by clicking through app pages. This app is supposed to help the user familiarize with the web, and it would serve its purpose for users who are also new to the smartphone. 10 | 11 | ### Idea 12 | We would have a main page with several icons of title type 13 | e.g. News Papers, TV/Radio, Recipies, Religious material etc. 14 | 15 | When the user clicks one category, webpages related to that category open up. There should be a few notably easy ones to click, and then maybe a "more..." button which shows more links. The idea is to have all as icons with their usual logos. 16 | 17 | When the user clicks the logo, the link should open up in the default browser. We need not complicate this app with browser capabilities. 18 | 19 | ### Design examples 20 | You may use the following as a guideline to build 21 | 22 | 23 | 24 | 25 | 26 | ## Where did this start? 27 | This project is done to assist a sustainability project done by Dialog Axiata to help out bridge the gender gap in internet users in Sri Lanka. 28 | The need for this app arose when sustainability initiatives saw that most users like to browse the net, but are reluctant or is uneasy to type using the on screen soft keyboard of the mobile phone. 29 | 30 | Therefore we decided we would pitch in and help users to start their internet experience and help them get familiarized with webpages in their first stages of accessing the internet. 31 | 32 | ## Why is Codelanka and GDG doing this? Isn't this some company's problem? 33 | The reasons this project was taken up by codelanka are; 34 | - If a commercial organization got this project they will try to earn money out of this and display paid ad-type links in the app 35 | - Even if paid ad-type links are probable, it would be hard for someone to monetize this app, making it nonsensible for a for-profit venture 36 | - Making the app will help a lot of people 37 | 38 | Codelanka's core is to make software which help people but doesn't make any sense when it comes to monetization. 39 | 40 | ## What can I do? 41 | Fork, take up an issue, and then work on it. Then create pull requests. The usual deal. We want everyone who are interested to come and pitch in to bring our rural communities to the internet and the possibilities it offer. 42 | 43 | ## Uh, wait, this is in React Native! I don't know React Native. (Can't we just use Java and Swift?) 44 | Fantastic. You're exactly whom we're looking for! Me, the README writer even don't know the language. Isn't it great? You now have a real world problem to solve while learning something new.! You'll be able to learn React Native AND help a lot of people. Wouldn't that be fun? 45 | 46 | ## How to start 47 | 48 | This is a React Native app, thus you have to have tools neede for React and React native like NodeJS, NPM, ( Yarn ), etc. Android tools if you are building on Android. ( And iOS tools if you are building on iOS. ) 49 | 50 | Issue a `yarn` or `npm install` to get all the dependencies. Run with `yarn start` or `npm start`. You should have an Android virtual Device running. 51 | 52 | Look at `App.js` as a starting point. ;) 53 | 54 | ## Licensing 55 | This application is licensed under the MIT license 56 | 57 | Lets work together and make this possible. 58 | 59 | 60 | -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.android.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- 1 | import 'react-native'; 2 | import React from 'react'; 3 | import Index from '../index.ios.js'; 4 | 5 | // Note: test renderer must be required after react-native. 6 | import renderer from 'react-test-renderer'; 7 | 8 | it('renders correctly', () => { 9 | const tree = renderer.create( 10 | 11 | ); 12 | }); 13 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'org.gdgsrilanka.codelanka.eznet', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'org.gdgsrilanka.codelanka.eznet', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | apply plugin: "com.google.firebase.firebase-perf" 3 | 4 | 5 | import com.android.build.OutputFile 6 | 7 | /** 8 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 9 | * and bundleReleaseJsAndAssets). 10 | * These basically call `react-native bundle` with the correct arguments during the Android build 11 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 12 | * bundle directly from the development server. Below you can see all the possible configurations 13 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 14 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 15 | * 16 | * project.ext.react = [ 17 | * // the name of the generated asset file containing your JS bundle 18 | * bundleAssetName: "index.android.bundle", 19 | * 20 | * // the entry file for bundle generation 21 | * entryFile: "index.android.js", 22 | * 23 | * // whether to bundle JS and assets in debug mode 24 | * bundleInDebug: false, 25 | * 26 | * // whether to bundle JS and assets in release mode 27 | * bundleInRelease: true, 28 | * 29 | * // whether to bundle JS and assets in another build variant (if configured). 30 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 31 | * // The configuration property can be in the following formats 32 | * // 'bundleIn${productFlavor}${buildType}' 33 | * // 'bundleIn${buildType}' 34 | * // bundleInFreeDebug: true, 35 | * // bundleInPaidRelease: true, 36 | * // bundleInBeta: true, 37 | * 38 | * // the root of your project, i.e. where "package.json" lives 39 | * root: "../../", 40 | * 41 | * // where to put the JS bundle asset in debug mode 42 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 43 | * 44 | * // where to put the JS bundle asset in release mode 45 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 46 | * 47 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 48 | * // require('./image.png')), in debug mode 49 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 50 | * 51 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 52 | * // require('./image.png')), in release mode 53 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 54 | * 55 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 56 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 57 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 58 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 59 | * // for example, you might want to remove it from here. 60 | * inputExcludes: ["android/**", "ios/**"], 61 | * 62 | * // override which node gets called and with what additional arguments 63 | * nodeExecutableAndArgs: ["node"] 64 | * 65 | * // supply additional arguments to the packager 66 | * extraPackagerArgs: [] 67 | * ] 68 | */ 69 | 70 | apply from: "../../node_modules/react-native/react.gradle" 71 | 72 | /** 73 | * Set this to true to create two separate APKs instead of one: 74 | * - An APK that only works on ARM devices 75 | * - An APK that only works on x86 devices 76 | * The advantage is the size of the APK is reduced by about 4MB. 77 | * Upload all the APKs to the Play Store and people will download 78 | * the correct one based on the CPU architecture of their device. 79 | */ 80 | def enableSeparateBuildPerCPUArchitecture = false 81 | 82 | /** 83 | * Run Proguard to shrink the Java bytecode in release builds. 84 | */ 85 | def enableProguardInReleaseBuilds = false 86 | 87 | android { 88 | compileSdkVersion 23 89 | buildToolsVersion "23.0.1" 90 | 91 | defaultConfig { 92 | applicationId "org.gdgsrilanka.codelanka.eznet" 93 | minSdkVersion 16 94 | targetSdkVersion 22 95 | versionCode 1 96 | versionName "1.0" 97 | ndk { 98 | abiFilters "armeabi-v7a", "x86" 99 | } 100 | } 101 | splits { 102 | abi { 103 | reset() 104 | enable enableSeparateBuildPerCPUArchitecture 105 | universalApk false // If true, also generate a universal APK 106 | include "armeabi-v7a", "x86" 107 | } 108 | } 109 | buildTypes { 110 | release { 111 | minifyEnabled enableProguardInReleaseBuilds 112 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 113 | } 114 | } 115 | // applicationVariants are e.g. debug, release 116 | applicationVariants.all { variant -> 117 | variant.outputs.each { output -> 118 | // For each separate APK per architecture, set a unique version code as described here: 119 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 120 | def versionCodes = ["armeabi-v7a":1, "x86":2] 121 | def abi = output.getFilter(OutputFile.ABI) 122 | if (abi != null) { // null for the universal-debug, universal-release variants 123 | output.versionCodeOverride = 124 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 125 | } 126 | } 127 | } 128 | } 129 | 130 | dependencies { 131 | compile project(':react-native-vector-icons') 132 | compile fileTree(dir: "libs", include: ["*.jar"]) 133 | compile "com.android.support:appcompat-v7:23.0.1" 134 | compile "com.facebook.react:react-native:+" // From node_modules 135 | 136 | // RNFirebase required dependencies 137 | compile(project(':react-native-firebase')) { 138 | transitive = false 139 | } 140 | compile "com.google.firebase:firebase-core:11.0.0" 141 | compile "com.google.firebase:firebase-analytics:11.0.0" 142 | compile "com.google.firebase:firebase-perf:11.0.0" 143 | 144 | // If you are receiving Google Play API availability issues, add the following dependency 145 | // compile "com.google.android.gms:play-services-base:11.0.0" 146 | } 147 | 148 | apply plugin: 'com.google.gms.google-services' 149 | 150 | // Run this once to be able to run the application with BUCK 151 | // puts all compile dependencies into folder libs for BUCK to use 152 | task copyDownloadableDepsToLibs(type: Copy) { 153 | from configurations.compile 154 | into 'libs' 155 | } 156 | -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_info": { 3 | "project_number": "502584752547", 4 | "firebase_url": "https://project-7593821828655173684.firebaseio.com", 5 | "project_id": "project-7593821828655173684", 6 | "storage_bucket": "project-7593821828655173684.appspot.com" 7 | }, 8 | "client": [ 9 | { 10 | "client_info": { 11 | "mobilesdk_app_id": "1:502584752547:android:e3d7a6ebd70b1482", 12 | "android_client_info": { 13 | "package_name": "org.gdgsrilanka.codelanka.eznet" 14 | } 15 | }, 16 | "oauth_client": [ 17 | { 18 | "client_id": "502584752547-ofmc6qbtfmbvsthbn5pj8ih3kg3ddsrd.apps.googleusercontent.com", 19 | "client_type": 1, 20 | "android_info": { 21 | "package_name": "org.gdgsrilanka.codelanka.eznet", 22 | "certificate_hash": "031b3fda8372c21778b1bf9e5f12974d7dc95fd0" 23 | } 24 | }, 25 | { 26 | "client_id": "502584752547-oq47kki31psm060pn8r7fbs87a2n7jef.apps.googleusercontent.com", 27 | "client_type": 3 28 | } 29 | ], 30 | "api_key": [ 31 | { 32 | "current_key": "AIzaSyDXV-ym30hM8mMLzhBOc6JudoOjdqhUPJ4" 33 | } 34 | ], 35 | "services": { 36 | "analytics_service": { 37 | "status": 1 38 | }, 39 | "appinvite_service": { 40 | "status": 2, 41 | "other_platform_oauth_client": [ 42 | { 43 | "client_id": "502584752547-oq47kki31psm060pn8r7fbs87a2n7jef.apps.googleusercontent.com", 44 | "client_type": 3 45 | } 46 | ] 47 | }, 48 | "ads_service": { 49 | "status": 2 50 | } 51 | } 52 | } 53 | ], 54 | "configuration_version": "1" 55 | } -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /android/app/src/main/assets/crashlytics-build.properties: -------------------------------------------------------------------------------- 1 | #This file is automatically generated by Crashlytics to uniquely 2 | #identify individual builds of your Android application. 3 | # 4 | #Do NOT modify, delete, or commit to source control! 5 | # 6 | #Tue Jun 27 21:50:05 IST 2017 7 | version_name=1.0 8 | package_name=com.reactnativeproject 9 | build_id=660a34d1-4ff3-4d4b-9696-a79103517463 10 | version_code=1 11 | app_name=ReactNativeProject 12 | -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Andale Mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Andale Mono.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Arial Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Arial Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Arial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Comic Sans MS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Comic Sans MS.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Courier New.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Courier New.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Georgia.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Microsoft Sans Serif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Microsoft Sans Serif.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-BlackItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-BoldItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-LightItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-MediumItalic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Rubik-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SF-UI-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/SF-UI-Text-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SanFrancisco.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/SanFrancisco.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SanFranciscoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/SanFranciscoBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SanFranciscoThin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/SanFranciscoThin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Skia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Skia.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Times New Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Times New Roman.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/assets/index.android.bundle.meta -------------------------------------------------------------------------------- /android/app/src/main/java/org/gdgsrilanka/codelanka/eznet/MainActivity.java: -------------------------------------------------------------------------------- 1 | package org.gdgsrilanka.codelanka.eznet; 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 "EZNet"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /android/app/src/main/java/org/gdgsrilanka/codelanka/eznet/MainApplication.java: -------------------------------------------------------------------------------- 1 | package org.gdgsrilanka.codelanka.eznet; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.oblador.vectoricons.VectorIconsPackage; 8 | import com.facebook.react.ReactInstanceManager; 9 | import com.facebook.react.ReactNativeHost; 10 | import com.facebook.react.ReactPackage; 11 | import com.facebook.react.shell.MainReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | import io.invertase.firebase.RNFirebasePackage; 17 | import io.invertase.firebase.analytics.RNFirebaseAnalyticsPackage; 18 | import io.invertase.firebase.crash.RNFirebaseCrashPackage; 19 | import io.invertase.firebase.perf.RNFirebasePerformancePackage; 20 | 21 | public class MainApplication extends Application implements ReactApplication { 22 | 23 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 24 | @Override 25 | public boolean getUseDeveloperSupport() { 26 | return BuildConfig.DEBUG; 27 | } 28 | 29 | @Override 30 | protected List getPackages() { 31 | return Arrays.asList( 32 | new MainReactPackage(), 33 | new RNFirebasePackage(), 34 | new RNFirebaseAnalyticsPackage(), 35 | new RNFirebaseCrashPackage(), 36 | new RNFirebasePerformancePackage(), 37 | new VectorIconsPackage() 38 | ); 39 | } 40 | }; 41 | 42 | @Override 43 | public ReactNativeHost getReactNativeHost() { 44 | return mReactNativeHost; 45 | } 46 | 47 | @Override 48 | public void onCreate() { 49 | super.onCreate(); 50 | SoLoader.init(this, /* native exopackage */ false); 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-hdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_.jpg -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_derana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_derana.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_divaina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_divaina.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_lankadeepa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_lankadeepa.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_newspapers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_newspapers.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_rivira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_rivira.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/img_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/img_unknown.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-xhdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnative_libraries_customcomponents_navigationexperimental_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_src_views_assets_backicon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/com_crashlytics_export_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 660a34d1-4ff3-4d4b-9696-a79103517463 10 | 11 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | EZNet 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 | classpath 'com.google.gms:google-services:3.0.0' 10 | 11 | classpath 'com.google.firebase:firebase-plugins:1.1.0' 12 | 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | mavenLocal() 21 | jcenter() 22 | maven { 23 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 24 | url "$rootDir/../node_modules/react-native/android" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /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/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue May 23 09:59:03 IST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'EZNet' 2 | include ':react-native-vector-icons' 3 | project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android') 4 | include ':react-native-firebase' 5 | project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android') 6 | 7 | include ':app' 8 | -------------------------------------------------------------------------------- /android/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EZNetApp", 3 | "displayName": "EZNetApp" 4 | } 5 | -------------------------------------------------------------------------------- /components/Drawer.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Drawer } from 'native-base'; 3 | import SideBar from './SideBar'; 4 | 5 | export default class MainDrawer extends Component { 6 | 7 | closeDrawer = () => { 8 | console.log("Open Drawer"); 9 | }; 10 | 11 | openDrawer = () => { 12 | console.log("Open Drawer"); 13 | }; 14 | 15 | render() { 16 | 17 | return ( 18 | { this._drawer = ref; }} 20 | content={} 21 | onClose={() => this.closeDrawer()} 22 | > 23 | // Main View 24 | 25 | ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /components/SideBar.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | AppRegistry, 4 | StyleSheet, 5 | Image, 6 | TextInput, 7 | View 8 | } from 'react-native'; 9 | import { Container, Header, Title, Content, Card, CardItem, Left, Right, Thumbnail, Body, Text, Button, Icon } from 'native-base'; 10 | 11 | 12 | export default class SideBar extends Component { 13 | render() { 14 | return ( 15 | 16 |
17 | 18 | 21 | 22 | 23 | Header 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
32 | ); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /debug.keystore.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/debug.keystore.enc -------------------------------------------------------------------------------- /img/Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/Banner.png -------------------------------------------------------------------------------- /img/card-showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/card-showcase.jpg -------------------------------------------------------------------------------- /img/card-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/card-showcase.png -------------------------------------------------------------------------------- /img/derana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/derana.png -------------------------------------------------------------------------------- /img/divaina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/divaina.png -------------------------------------------------------------------------------- /img/index.js: -------------------------------------------------------------------------------- 1 | export const UNKNOWN = require('./unknown.png'); 2 | 3 | export const CATEGORY_NEWSPAPERS = require('./news-papers.png'); 4 | 5 | export const NEWSPAPERS_DIVAINA = require('./divaina.png'); 6 | export const NEWSPAPERS_LANKADEEPA = require('./lankadeepa.png'); 7 | export const NEWSPAPERS_RIVIRA = require('./rivira.png'); 8 | export const NEWSPAPERS_DERANA = require('./derana.png'); 9 | -------------------------------------------------------------------------------- /img/lankadeepa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/lankadeepa.png -------------------------------------------------------------------------------- /img/login_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/login_logo.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/logo.png -------------------------------------------------------------------------------- /img/news-papers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/news-papers.png -------------------------------------------------------------------------------- /img/rivira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/rivira.png -------------------------------------------------------------------------------- /img/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/unknown.png -------------------------------------------------------------------------------- /img/දිවයින.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/දිවයින.jpg -------------------------------------------------------------------------------- /img/ලංකාදීප.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLanka/ez-net-app/23e22c967a7801d337fd93f208b6be7ae1dcb5f3/img/ලංකාදීප.jpg -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | import { 2 | AppRegistry, 3 | } from 'react-native'; 4 | 5 | import Root from './src'; 6 | 7 | AppRegistry.registerComponent('EZNet', () => Root); 8 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | import { 2 | AppRegistry, 3 | } from 'react-native'; 4 | 5 | import Root from './src'; 6 | 7 | AppRegistry.registerComponent('EZNet', () => Root); 8 | -------------------------------------------------------------------------------- /ios/EZNet-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/EZNet-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/EZNet.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 /* EZNetTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* EZNetTests.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 /* EZNetTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* EZNetTests.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 | 1A783CBED7964A1B943028BB /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = DA4C8771327D4F309CF96B46 /* Entypo.ttf */; }; 39 | 15E39152B359427283F1C3DA /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 39DA23C7AA9D42299B118FF6 /* EvilIcons.ttf */; }; 40 | 1914C80F342446179522A19D /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DB763D275554B5D804284C2 /* FontAwesome.ttf */; }; 41 | 930240A7ABC14E2B9F6B7070 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 20C2A7EFCCA94B809F9C67C1 /* Foundation.ttf */; }; 42 | 6E936BD77A66421CA1711802 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B9B8C594A62A42919ABAC0BB /* Ionicons.ttf */; }; 43 | 9AF758E383EA4772A10EBDB3 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2A5E9C2E373240FD92C4B8EC /* MaterialIcons.ttf */; }; 44 | D331EA4237F144C99977BEDB /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FAE7F714F8D54ECE9D97F3FD /* Octicons.ttf */; }; 45 | B5A11F8C4FA94BC9AC950BF7 /* Roboto_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B6A06C50455D4D568AE8843D /* Roboto_medium.ttf */; }; 46 | 5ECC8051418B4EC9A8F9407D /* Roboto.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 582A162BFA3D48888DC77CA1 /* Roboto.ttf */; }; 47 | 8EB94ED2666648F3ACD427C1 /* rubicon-icon-font.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2F9381A263934921AA18C788 /* rubicon-icon-font.ttf */; }; 48 | EFC080D9C57740B9BE42CFA6 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FDD3CCE7476B4FCBB6E40BE9 /* SimpleLineIcons.ttf */; }; 49 | E36E03D4C0614347BD1FF529 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = C5F2973332314F3090CE044D /* 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 = EZNet; 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 = "EZNet-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 /* EZNetTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EZNetTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 252 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 253 | 00E356F21AD99517003FC87E /* EZNetTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EZNetTests.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 /* EZNet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EZNet.app; sourceTree = BUILT_PRODUCTS_DIR; }; 257 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = EZNet/AppDelegate.h; sourceTree = ""; }; 258 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = EZNet/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 = EZNet/Images.xcassets; sourceTree = ""; }; 261 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = EZNet/Info.plist; sourceTree = ""; }; 262 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = EZNet/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 /* EZNet-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "EZNet-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 265 | 2D02E4901E0B4A5D006451C7 /* EZNet-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "EZNet-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 | DA4C8771327D4F309CF96B46 /* Entypo.ttf */ = {isa = PBXFileReference; name = "Entypo.ttf"; path = "../node_modules/native-base/Fonts/Entypo.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 270 | 39DA23C7AA9D42299B118FF6 /* EvilIcons.ttf */ = {isa = PBXFileReference; name = "EvilIcons.ttf"; path = "../node_modules/native-base/Fonts/EvilIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 271 | 7DB763D275554B5D804284C2 /* FontAwesome.ttf */ = {isa = PBXFileReference; name = "FontAwesome.ttf"; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 272 | 20C2A7EFCCA94B809F9C67C1 /* Foundation.ttf */ = {isa = PBXFileReference; name = "Foundation.ttf"; path = "../node_modules/native-base/Fonts/Foundation.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 273 | B9B8C594A62A42919ABAC0BB /* Ionicons.ttf */ = {isa = PBXFileReference; name = "Ionicons.ttf"; path = "../node_modules/native-base/Fonts/Ionicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 274 | 2A5E9C2E373240FD92C4B8EC /* MaterialIcons.ttf */ = {isa = PBXFileReference; name = "MaterialIcons.ttf"; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 275 | FAE7F714F8D54ECE9D97F3FD /* Octicons.ttf */ = {isa = PBXFileReference; name = "Octicons.ttf"; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 276 | B6A06C50455D4D568AE8843D /* Roboto_medium.ttf */ = {isa = PBXFileReference; name = "Roboto_medium.ttf"; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 277 | 582A162BFA3D48888DC77CA1 /* Roboto.ttf */ = {isa = PBXFileReference; name = "Roboto.ttf"; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 278 | 2F9381A263934921AA18C788 /* rubicon-icon-font.ttf */ = {isa = PBXFileReference; name = "rubicon-icon-font.ttf"; path = "../node_modules/native-base/Fonts/rubicon-icon-font.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 279 | FDD3CCE7476B4FCBB6E40BE9 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; name = "SimpleLineIcons.ttf"; path = "../node_modules/native-base/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 280 | C5F2973332314F3090CE044D /* Zocial.ttf */ = {isa = PBXFileReference; name = "Zocial.ttf"; path = "../node_modules/native-base/Fonts/Zocial.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; 281 | /* End PBXFileReference section */ 282 | 283 | /* Begin PBXFrameworksBuildPhase section */ 284 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 285 | isa = PBXFrameworksBuildPhase; 286 | buildActionMask = 2147483647; 287 | files = ( 288 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 293 | isa = PBXFrameworksBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 297 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 298 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 299 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 300 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 301 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 302 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 303 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 304 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 305 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 306 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 307 | ); 308 | runOnlyForDeploymentPostprocessing = 0; 309 | }; 310 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 311 | isa = PBXFrameworksBuildPhase; 312 | buildActionMask = 2147483647; 313 | files = ( 314 | 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */, 315 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation-tvOS.a in Frameworks */, 316 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 317 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 318 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 319 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 320 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 321 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | }; 325 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 326 | isa = PBXFrameworksBuildPhase; 327 | buildActionMask = 2147483647; 328 | files = ( 329 | ); 330 | runOnlyForDeploymentPostprocessing = 0; 331 | }; 332 | /* End PBXFrameworksBuildPhase section */ 333 | 334 | /* Begin PBXGroup section */ 335 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 336 | isa = PBXGroup; 337 | children = ( 338 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 339 | ); 340 | name = Products; 341 | sourceTree = ""; 342 | }; 343 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 344 | isa = PBXGroup; 345 | children = ( 346 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 347 | ); 348 | name = Products; 349 | sourceTree = ""; 350 | }; 351 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 352 | isa = PBXGroup; 353 | children = ( 354 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 355 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 356 | ); 357 | name = Products; 358 | sourceTree = ""; 359 | }; 360 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 361 | isa = PBXGroup; 362 | children = ( 363 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 364 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 365 | ); 366 | name = Products; 367 | sourceTree = ""; 368 | }; 369 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 370 | isa = PBXGroup; 371 | children = ( 372 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 373 | ); 374 | name = Products; 375 | sourceTree = ""; 376 | }; 377 | 00E356EF1AD99517003FC87E /* EZNetTests */ = { 378 | isa = PBXGroup; 379 | children = ( 380 | 00E356F21AD99517003FC87E /* EZNetTests.m */, 381 | 00E356F01AD99517003FC87E /* Supporting Files */, 382 | ); 383 | path = EZNetTests; 384 | sourceTree = ""; 385 | }; 386 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 387 | isa = PBXGroup; 388 | children = ( 389 | 00E356F11AD99517003FC87E /* Info.plist */, 390 | ); 391 | name = "Supporting Files"; 392 | sourceTree = ""; 393 | }; 394 | 139105B71AF99BAD00B5F7CC /* Products */ = { 395 | isa = PBXGroup; 396 | children = ( 397 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 398 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 399 | ); 400 | name = Products; 401 | sourceTree = ""; 402 | }; 403 | 139FDEE71B06529A00C62182 /* Products */ = { 404 | isa = PBXGroup; 405 | children = ( 406 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 407 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 408 | ); 409 | name = Products; 410 | sourceTree = ""; 411 | }; 412 | 13B07FAE1A68108700A75B9A /* EZNet */ = { 413 | isa = PBXGroup; 414 | children = ( 415 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 416 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 417 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 418 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 419 | 13B07FB61A68108700A75B9A /* Info.plist */, 420 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 421 | 13B07FB71A68108700A75B9A /* main.m */, 422 | ); 423 | name = EZNet; 424 | sourceTree = ""; 425 | }; 426 | 146834001AC3E56700842450 /* Products */ = { 427 | isa = PBXGroup; 428 | children = ( 429 | 146834041AC3E56700842450 /* libReact.a */, 430 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 431 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 432 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 433 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 434 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 435 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 436 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 437 | ); 438 | name = Products; 439 | sourceTree = ""; 440 | }; 441 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 442 | isa = PBXGroup; 443 | children = ( 444 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 445 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */, 446 | ); 447 | name = Products; 448 | sourceTree = ""; 449 | }; 450 | 78C398B11ACF4ADC00677621 /* Products */ = { 451 | isa = PBXGroup; 452 | children = ( 453 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 454 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 455 | ); 456 | name = Products; 457 | sourceTree = ""; 458 | }; 459 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 460 | isa = PBXGroup; 461 | children = ( 462 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 463 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 464 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 465 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 466 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 467 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 468 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 469 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 470 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 471 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 472 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 473 | ); 474 | name = Libraries; 475 | sourceTree = ""; 476 | }; 477 | 832341B11AAA6A8300B99B32 /* Products */ = { 478 | isa = PBXGroup; 479 | children = ( 480 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 481 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 482 | ); 483 | name = Products; 484 | sourceTree = ""; 485 | }; 486 | 83CBB9F61A601CBA00E9B192 = { 487 | isa = PBXGroup; 488 | children = ( 489 | 13B07FAE1A68108700A75B9A /* EZNet */, 490 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 491 | 00E356EF1AD99517003FC87E /* EZNetTests */, 492 | 83CBBA001A601CBA00E9B192 /* Products */, 493 | BDC8E4CEC50D4B129C0520B2 /* Resources */, 494 | ); 495 | indentWidth = 2; 496 | sourceTree = ""; 497 | tabWidth = 2; 498 | }; 499 | 83CBBA001A601CBA00E9B192 /* Products */ = { 500 | isa = PBXGroup; 501 | children = ( 502 | 13B07F961A680F5B00A75B9A /* EZNet.app */, 503 | 00E356EE1AD99517003FC87E /* EZNetTests.xctest */, 504 | 2D02E47B1E0B4A5D006451C7 /* EZNet-tvOS.app */, 505 | 2D02E4901E0B4A5D006451C7 /* EZNet-tvOSTests.xctest */, 506 | ); 507 | name = Products; 508 | sourceTree = ""; 509 | }; 510 | BDC8E4CEC50D4B129C0520B2 /* Resources */ = { 511 | isa = "PBXGroup"; 512 | children = ( 513 | DA4C8771327D4F309CF96B46 /* Entypo.ttf */, 514 | 39DA23C7AA9D42299B118FF6 /* EvilIcons.ttf */, 515 | 7DB763D275554B5D804284C2 /* FontAwesome.ttf */, 516 | 20C2A7EFCCA94B809F9C67C1 /* Foundation.ttf */, 517 | B9B8C594A62A42919ABAC0BB /* Ionicons.ttf */, 518 | 2A5E9C2E373240FD92C4B8EC /* MaterialIcons.ttf */, 519 | FAE7F714F8D54ECE9D97F3FD /* Octicons.ttf */, 520 | B6A06C50455D4D568AE8843D /* Roboto_medium.ttf */, 521 | 582A162BFA3D48888DC77CA1 /* Roboto.ttf */, 522 | 2F9381A263934921AA18C788 /* rubicon-icon-font.ttf */, 523 | FDD3CCE7476B4FCBB6E40BE9 /* SimpleLineIcons.ttf */, 524 | C5F2973332314F3090CE044D /* Zocial.ttf */, 525 | ); 526 | name = Resources; 527 | sourceTree = ""; 528 | path = ""; 529 | }; 530 | /* End PBXGroup section */ 531 | 532 | /* Begin PBXNativeTarget section */ 533 | 00E356ED1AD99517003FC87E /* EZNetTests */ = { 534 | isa = PBXNativeTarget; 535 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "EZNetTests" */; 536 | buildPhases = ( 537 | 00E356EA1AD99517003FC87E /* Sources */, 538 | 00E356EB1AD99517003FC87E /* Frameworks */, 539 | 00E356EC1AD99517003FC87E /* Resources */, 540 | ); 541 | buildRules = ( 542 | ); 543 | dependencies = ( 544 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 545 | ); 546 | name = EZNetTests; 547 | productName = EZNetTests; 548 | productReference = 00E356EE1AD99517003FC87E /* EZNetTests.xctest */; 549 | productType = "com.apple.product-type.bundle.unit-test"; 550 | }; 551 | 13B07F861A680F5B00A75B9A /* EZNet */ = { 552 | isa = PBXNativeTarget; 553 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "EZNet" */; 554 | buildPhases = ( 555 | 13B07F871A680F5B00A75B9A /* Sources */, 556 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 557 | 13B07F8E1A680F5B00A75B9A /* Resources */, 558 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 559 | ); 560 | buildRules = ( 561 | ); 562 | dependencies = ( 563 | ); 564 | name = EZNet; 565 | productName = "Hello World"; 566 | productReference = 13B07F961A680F5B00A75B9A /* EZNet.app */; 567 | productType = "com.apple.product-type.application"; 568 | }; 569 | 2D02E47A1E0B4A5D006451C7 /* EZNet-tvOS */ = { 570 | isa = PBXNativeTarget; 571 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EZNet-tvOS" */; 572 | buildPhases = ( 573 | 2D02E4771E0B4A5D006451C7 /* Sources */, 574 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 575 | 2D02E4791E0B4A5D006451C7 /* Resources */, 576 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 577 | ); 578 | buildRules = ( 579 | ); 580 | dependencies = ( 581 | ); 582 | name = "EZNet-tvOS"; 583 | productName = "EZNet-tvOS"; 584 | productReference = 2D02E47B1E0B4A5D006451C7 /* EZNet-tvOS.app */; 585 | productType = "com.apple.product-type.application"; 586 | }; 587 | 2D02E48F1E0B4A5D006451C7 /* EZNet-tvOSTests */ = { 588 | isa = PBXNativeTarget; 589 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EZNet-tvOSTests" */; 590 | buildPhases = ( 591 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 592 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 593 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 594 | ); 595 | buildRules = ( 596 | ); 597 | dependencies = ( 598 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 599 | ); 600 | name = "EZNet-tvOSTests"; 601 | productName = "EZNet-tvOSTests"; 602 | productReference = 2D02E4901E0B4A5D006451C7 /* EZNet-tvOSTests.xctest */; 603 | productType = "com.apple.product-type.bundle.unit-test"; 604 | }; 605 | /* End PBXNativeTarget section */ 606 | 607 | /* Begin PBXProject section */ 608 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 609 | isa = PBXProject; 610 | attributes = { 611 | LastUpgradeCheck = 610; 612 | ORGANIZATIONNAME = Facebook; 613 | TargetAttributes = { 614 | 00E356ED1AD99517003FC87E = { 615 | CreatedOnToolsVersion = 6.2; 616 | TestTargetID = 13B07F861A680F5B00A75B9A; 617 | }; 618 | 2D02E47A1E0B4A5D006451C7 = { 619 | CreatedOnToolsVersion = 8.2.1; 620 | ProvisioningStyle = Automatic; 621 | }; 622 | 2D02E48F1E0B4A5D006451C7 = { 623 | CreatedOnToolsVersion = 8.2.1; 624 | ProvisioningStyle = Automatic; 625 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 626 | }; 627 | }; 628 | }; 629 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "EZNet" */; 630 | compatibilityVersion = "Xcode 3.2"; 631 | developmentRegion = English; 632 | hasScannedForEncodings = 0; 633 | knownRegions = ( 634 | en, 635 | Base, 636 | ); 637 | mainGroup = 83CBB9F61A601CBA00E9B192; 638 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 639 | projectDirPath = ""; 640 | projectReferences = ( 641 | { 642 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 643 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 644 | }, 645 | { 646 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 647 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 648 | }, 649 | { 650 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 651 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 652 | }, 653 | { 654 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 655 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 656 | }, 657 | { 658 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 659 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 660 | }, 661 | { 662 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 663 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 664 | }, 665 | { 666 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 667 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 668 | }, 669 | { 670 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 671 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 672 | }, 673 | { 674 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 675 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 676 | }, 677 | { 678 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 679 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 680 | }, 681 | { 682 | ProductGroup = 146834001AC3E56700842450 /* Products */; 683 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 684 | }, 685 | ); 686 | projectRoot = ""; 687 | targets = ( 688 | 13B07F861A680F5B00A75B9A /* EZNet */, 689 | 00E356ED1AD99517003FC87E /* EZNetTests */, 690 | 2D02E47A1E0B4A5D006451C7 /* EZNet-tvOS */, 691 | 2D02E48F1E0B4A5D006451C7 /* EZNet-tvOSTests */, 692 | ); 693 | }; 694 | /* End PBXProject section */ 695 | 696 | /* Begin PBXReferenceProxy section */ 697 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 698 | isa = PBXReferenceProxy; 699 | fileType = archive.ar; 700 | path = libRCTActionSheet.a; 701 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 702 | sourceTree = BUILT_PRODUCTS_DIR; 703 | }; 704 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 705 | isa = PBXReferenceProxy; 706 | fileType = archive.ar; 707 | path = libRCTGeolocation.a; 708 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 709 | sourceTree = BUILT_PRODUCTS_DIR; 710 | }; 711 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 712 | isa = PBXReferenceProxy; 713 | fileType = archive.ar; 714 | path = libRCTImage.a; 715 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 716 | sourceTree = BUILT_PRODUCTS_DIR; 717 | }; 718 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 719 | isa = PBXReferenceProxy; 720 | fileType = archive.ar; 721 | path = libRCTNetwork.a; 722 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 723 | sourceTree = BUILT_PRODUCTS_DIR; 724 | }; 725 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 726 | isa = PBXReferenceProxy; 727 | fileType = archive.ar; 728 | path = libRCTVibration.a; 729 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 730 | sourceTree = BUILT_PRODUCTS_DIR; 731 | }; 732 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 733 | isa = PBXReferenceProxy; 734 | fileType = archive.ar; 735 | path = libRCTSettings.a; 736 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 737 | sourceTree = BUILT_PRODUCTS_DIR; 738 | }; 739 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 740 | isa = PBXReferenceProxy; 741 | fileType = archive.ar; 742 | path = libRCTWebSocket.a; 743 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 744 | sourceTree = BUILT_PRODUCTS_DIR; 745 | }; 746 | 146834041AC3E56700842450 /* libReact.a */ = { 747 | isa = PBXReferenceProxy; 748 | fileType = archive.ar; 749 | path = libReact.a; 750 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 751 | sourceTree = BUILT_PRODUCTS_DIR; 752 | }; 753 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 754 | isa = PBXReferenceProxy; 755 | fileType = archive.ar; 756 | path = "libRCTImage-tvOS.a"; 757 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 758 | sourceTree = BUILT_PRODUCTS_DIR; 759 | }; 760 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 761 | isa = PBXReferenceProxy; 762 | fileType = archive.ar; 763 | path = "libRCTLinking-tvOS.a"; 764 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 765 | sourceTree = BUILT_PRODUCTS_DIR; 766 | }; 767 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 768 | isa = PBXReferenceProxy; 769 | fileType = archive.ar; 770 | path = "libRCTNetwork-tvOS.a"; 771 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 772 | sourceTree = BUILT_PRODUCTS_DIR; 773 | }; 774 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 775 | isa = PBXReferenceProxy; 776 | fileType = archive.ar; 777 | path = "libRCTSettings-tvOS.a"; 778 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 779 | sourceTree = BUILT_PRODUCTS_DIR; 780 | }; 781 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 782 | isa = PBXReferenceProxy; 783 | fileType = archive.ar; 784 | path = "libRCTText-tvOS.a"; 785 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 786 | sourceTree = BUILT_PRODUCTS_DIR; 787 | }; 788 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 789 | isa = PBXReferenceProxy; 790 | fileType = archive.ar; 791 | path = "libRCTWebSocket-tvOS.a"; 792 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 793 | sourceTree = BUILT_PRODUCTS_DIR; 794 | }; 795 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 796 | isa = PBXReferenceProxy; 797 | fileType = archive.ar; 798 | path = libReact.a; 799 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 800 | sourceTree = BUILT_PRODUCTS_DIR; 801 | }; 802 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 803 | isa = PBXReferenceProxy; 804 | fileType = archive.ar; 805 | path = libyoga.a; 806 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 807 | sourceTree = BUILT_PRODUCTS_DIR; 808 | }; 809 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 810 | isa = PBXReferenceProxy; 811 | fileType = archive.ar; 812 | path = libyoga.a; 813 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 814 | sourceTree = BUILT_PRODUCTS_DIR; 815 | }; 816 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 817 | isa = PBXReferenceProxy; 818 | fileType = archive.ar; 819 | path = libcxxreact.a; 820 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 821 | sourceTree = BUILT_PRODUCTS_DIR; 822 | }; 823 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 824 | isa = PBXReferenceProxy; 825 | fileType = archive.ar; 826 | path = libcxxreact.a; 827 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 828 | sourceTree = BUILT_PRODUCTS_DIR; 829 | }; 830 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 831 | isa = PBXReferenceProxy; 832 | fileType = archive.ar; 833 | path = libjschelpers.a; 834 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 835 | sourceTree = BUILT_PRODUCTS_DIR; 836 | }; 837 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 838 | isa = PBXReferenceProxy; 839 | fileType = archive.ar; 840 | path = libjschelpers.a; 841 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 842 | sourceTree = BUILT_PRODUCTS_DIR; 843 | }; 844 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 845 | isa = PBXReferenceProxy; 846 | fileType = archive.ar; 847 | path = libRCTAnimation.a; 848 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 849 | sourceTree = BUILT_PRODUCTS_DIR; 850 | }; 851 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = { 852 | isa = PBXReferenceProxy; 853 | fileType = archive.ar; 854 | path = "libRCTAnimation-tvOS.a"; 855 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 856 | sourceTree = BUILT_PRODUCTS_DIR; 857 | }; 858 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 859 | isa = PBXReferenceProxy; 860 | fileType = archive.ar; 861 | path = libRCTLinking.a; 862 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 863 | sourceTree = BUILT_PRODUCTS_DIR; 864 | }; 865 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 866 | isa = PBXReferenceProxy; 867 | fileType = archive.ar; 868 | path = libRCTText.a; 869 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 870 | sourceTree = BUILT_PRODUCTS_DIR; 871 | }; 872 | /* End PBXReferenceProxy section */ 873 | 874 | /* Begin PBXResourcesBuildPhase section */ 875 | 00E356EC1AD99517003FC87E /* Resources */ = { 876 | isa = PBXResourcesBuildPhase; 877 | buildActionMask = 2147483647; 878 | files = ( 879 | ); 880 | runOnlyForDeploymentPostprocessing = 0; 881 | }; 882 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 883 | isa = PBXResourcesBuildPhase; 884 | buildActionMask = 2147483647; 885 | files = ( 886 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 887 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 888 | 1A783CBED7964A1B943028BB /* Entypo.ttf in Resources */, 889 | 15E39152B359427283F1C3DA /* EvilIcons.ttf in Resources */, 890 | 1914C80F342446179522A19D /* FontAwesome.ttf in Resources */, 891 | 930240A7ABC14E2B9F6B7070 /* Foundation.ttf in Resources */, 892 | 6E936BD77A66421CA1711802 /* Ionicons.ttf in Resources */, 893 | 9AF758E383EA4772A10EBDB3 /* MaterialIcons.ttf in Resources */, 894 | D331EA4237F144C99977BEDB /* Octicons.ttf in Resources */, 895 | B5A11F8C4FA94BC9AC950BF7 /* Roboto_medium.ttf in Resources */, 896 | 5ECC8051418B4EC9A8F9407D /* Roboto.ttf in Resources */, 897 | 8EB94ED2666648F3ACD427C1 /* rubicon-icon-font.ttf in Resources */, 898 | EFC080D9C57740B9BE42CFA6 /* SimpleLineIcons.ttf in Resources */, 899 | E36E03D4C0614347BD1FF529 /* Zocial.ttf in Resources */, 900 | ); 901 | runOnlyForDeploymentPostprocessing = 0; 902 | }; 903 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 904 | isa = PBXResourcesBuildPhase; 905 | buildActionMask = 2147483647; 906 | files = ( 907 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 908 | ); 909 | runOnlyForDeploymentPostprocessing = 0; 910 | }; 911 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 912 | isa = PBXResourcesBuildPhase; 913 | buildActionMask = 2147483647; 914 | files = ( 915 | ); 916 | runOnlyForDeploymentPostprocessing = 0; 917 | }; 918 | /* End PBXResourcesBuildPhase section */ 919 | 920 | /* Begin PBXShellScriptBuildPhase section */ 921 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 922 | isa = PBXShellScriptBuildPhase; 923 | buildActionMask = 2147483647; 924 | files = ( 925 | ); 926 | inputPaths = ( 927 | ); 928 | name = "Bundle React Native code and images"; 929 | outputPaths = ( 930 | ); 931 | runOnlyForDeploymentPostprocessing = 0; 932 | shellPath = /bin/sh; 933 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 934 | }; 935 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 936 | isa = PBXShellScriptBuildPhase; 937 | buildActionMask = 2147483647; 938 | files = ( 939 | ); 940 | inputPaths = ( 941 | ); 942 | name = "Bundle React Native Code And Images"; 943 | outputPaths = ( 944 | ); 945 | runOnlyForDeploymentPostprocessing = 0; 946 | shellPath = /bin/sh; 947 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/packager/react-native-xcode.sh"; 948 | }; 949 | /* End PBXShellScriptBuildPhase section */ 950 | 951 | /* Begin PBXSourcesBuildPhase section */ 952 | 00E356EA1AD99517003FC87E /* Sources */ = { 953 | isa = PBXSourcesBuildPhase; 954 | buildActionMask = 2147483647; 955 | files = ( 956 | 00E356F31AD99517003FC87E /* EZNetTests.m in Sources */, 957 | ); 958 | runOnlyForDeploymentPostprocessing = 0; 959 | }; 960 | 13B07F871A680F5B00A75B9A /* Sources */ = { 961 | isa = PBXSourcesBuildPhase; 962 | buildActionMask = 2147483647; 963 | files = ( 964 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 965 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 966 | ); 967 | runOnlyForDeploymentPostprocessing = 0; 968 | }; 969 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 970 | isa = PBXSourcesBuildPhase; 971 | buildActionMask = 2147483647; 972 | files = ( 973 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 974 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 975 | ); 976 | runOnlyForDeploymentPostprocessing = 0; 977 | }; 978 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 979 | isa = PBXSourcesBuildPhase; 980 | buildActionMask = 2147483647; 981 | files = ( 982 | 2DCD954D1E0B4F2C00145EB5 /* EZNetTests.m in Sources */, 983 | ); 984 | runOnlyForDeploymentPostprocessing = 0; 985 | }; 986 | /* End PBXSourcesBuildPhase section */ 987 | 988 | /* Begin PBXTargetDependency section */ 989 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 990 | isa = PBXTargetDependency; 991 | target = 13B07F861A680F5B00A75B9A /* EZNet */; 992 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 993 | }; 994 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 995 | isa = PBXTargetDependency; 996 | target = 2D02E47A1E0B4A5D006451C7 /* EZNet-tvOS */; 997 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 998 | }; 999 | /* End PBXTargetDependency section */ 1000 | 1001 | /* Begin PBXVariantGroup section */ 1002 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1003 | isa = PBXVariantGroup; 1004 | children = ( 1005 | 13B07FB21A68108700A75B9A /* Base */, 1006 | ); 1007 | name = LaunchScreen.xib; 1008 | path = EZNet; 1009 | sourceTree = ""; 1010 | }; 1011 | /* End PBXVariantGroup section */ 1012 | 1013 | /* Begin XCBuildConfiguration section */ 1014 | 00E356F61AD99517003FC87E /* Debug */ = { 1015 | isa = XCBuildConfiguration; 1016 | buildSettings = { 1017 | BUNDLE_LOADER = "$(TEST_HOST)"; 1018 | GCC_PREPROCESSOR_DEFINITIONS = ( 1019 | "DEBUG=1", 1020 | "$(inherited)", 1021 | ); 1022 | INFOPLIST_FILE = EZNetTests/Info.plist; 1023 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1024 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1025 | OTHER_LDFLAGS = ( 1026 | "-ObjC", 1027 | "-lc++", 1028 | ); 1029 | PRODUCT_NAME = "$(TARGET_NAME)"; 1030 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EZNet.app/EZNet"; 1031 | }; 1032 | name = Debug; 1033 | }; 1034 | 00E356F71AD99517003FC87E /* Release */ = { 1035 | isa = XCBuildConfiguration; 1036 | buildSettings = { 1037 | BUNDLE_LOADER = "$(TEST_HOST)"; 1038 | COPY_PHASE_STRIP = NO; 1039 | INFOPLIST_FILE = EZNetTests/Info.plist; 1040 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1041 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1042 | OTHER_LDFLAGS = ( 1043 | "-ObjC", 1044 | "-lc++", 1045 | ); 1046 | PRODUCT_NAME = "$(TARGET_NAME)"; 1047 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EZNet.app/EZNet"; 1048 | }; 1049 | name = Release; 1050 | }; 1051 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1052 | isa = XCBuildConfiguration; 1053 | buildSettings = { 1054 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1055 | CURRENT_PROJECT_VERSION = 1; 1056 | DEAD_CODE_STRIPPING = NO; 1057 | INFOPLIST_FILE = EZNet/Info.plist; 1058 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1059 | OTHER_LDFLAGS = ( 1060 | "$(inherited)", 1061 | "-ObjC", 1062 | "-lc++", 1063 | ); 1064 | PRODUCT_NAME = EZNet; 1065 | VERSIONING_SYSTEM = "apple-generic"; 1066 | }; 1067 | name = Debug; 1068 | }; 1069 | 13B07F951A680F5B00A75B9A /* Release */ = { 1070 | isa = XCBuildConfiguration; 1071 | buildSettings = { 1072 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1073 | CURRENT_PROJECT_VERSION = 1; 1074 | INFOPLIST_FILE = EZNet/Info.plist; 1075 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1076 | OTHER_LDFLAGS = ( 1077 | "$(inherited)", 1078 | "-ObjC", 1079 | "-lc++", 1080 | ); 1081 | PRODUCT_NAME = EZNet; 1082 | VERSIONING_SYSTEM = "apple-generic"; 1083 | }; 1084 | name = Release; 1085 | }; 1086 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1087 | isa = XCBuildConfiguration; 1088 | buildSettings = { 1089 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1090 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1091 | CLANG_ANALYZER_NONNULL = YES; 1092 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1093 | CLANG_WARN_INFINITE_RECURSION = YES; 1094 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1095 | DEBUG_INFORMATION_FORMAT = dwarf; 1096 | ENABLE_TESTABILITY = YES; 1097 | GCC_NO_COMMON_BLOCKS = YES; 1098 | INFOPLIST_FILE = "EZNet-tvOS/Info.plist"; 1099 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1100 | OTHER_LDFLAGS = ( 1101 | "-ObjC", 1102 | "-lc++", 1103 | ); 1104 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EZNet-tvOS"; 1105 | PRODUCT_NAME = "$(TARGET_NAME)"; 1106 | SDKROOT = appletvos; 1107 | TARGETED_DEVICE_FAMILY = 3; 1108 | TVOS_DEPLOYMENT_TARGET = 9.2; 1109 | }; 1110 | name = Debug; 1111 | }; 1112 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1113 | isa = XCBuildConfiguration; 1114 | buildSettings = { 1115 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1116 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1117 | CLANG_ANALYZER_NONNULL = YES; 1118 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1119 | CLANG_WARN_INFINITE_RECURSION = YES; 1120 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1121 | COPY_PHASE_STRIP = NO; 1122 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1123 | GCC_NO_COMMON_BLOCKS = YES; 1124 | INFOPLIST_FILE = "EZNet-tvOS/Info.plist"; 1125 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1126 | OTHER_LDFLAGS = ( 1127 | "-ObjC", 1128 | "-lc++", 1129 | ); 1130 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EZNet-tvOS"; 1131 | PRODUCT_NAME = "$(TARGET_NAME)"; 1132 | SDKROOT = appletvos; 1133 | TARGETED_DEVICE_FAMILY = 3; 1134 | TVOS_DEPLOYMENT_TARGET = 9.2; 1135 | }; 1136 | name = Release; 1137 | }; 1138 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1139 | isa = XCBuildConfiguration; 1140 | buildSettings = { 1141 | BUNDLE_LOADER = "$(TEST_HOST)"; 1142 | CLANG_ANALYZER_NONNULL = YES; 1143 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1144 | CLANG_WARN_INFINITE_RECURSION = YES; 1145 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1146 | DEBUG_INFORMATION_FORMAT = dwarf; 1147 | ENABLE_TESTABILITY = YES; 1148 | GCC_NO_COMMON_BLOCKS = YES; 1149 | INFOPLIST_FILE = "EZNet-tvOSTests/Info.plist"; 1150 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1151 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EZNet-tvOSTests"; 1152 | PRODUCT_NAME = "$(TARGET_NAME)"; 1153 | SDKROOT = appletvos; 1154 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EZNet-tvOS.app/EZNet-tvOS"; 1155 | TVOS_DEPLOYMENT_TARGET = 10.1; 1156 | }; 1157 | name = Debug; 1158 | }; 1159 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1160 | isa = XCBuildConfiguration; 1161 | buildSettings = { 1162 | BUNDLE_LOADER = "$(TEST_HOST)"; 1163 | CLANG_ANALYZER_NONNULL = YES; 1164 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1165 | CLANG_WARN_INFINITE_RECURSION = YES; 1166 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1167 | COPY_PHASE_STRIP = NO; 1168 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1169 | GCC_NO_COMMON_BLOCKS = YES; 1170 | INFOPLIST_FILE = "EZNet-tvOSTests/Info.plist"; 1171 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1172 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EZNet-tvOSTests"; 1173 | PRODUCT_NAME = "$(TARGET_NAME)"; 1174 | SDKROOT = appletvos; 1175 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EZNet-tvOS.app/EZNet-tvOS"; 1176 | TVOS_DEPLOYMENT_TARGET = 10.1; 1177 | }; 1178 | name = Release; 1179 | }; 1180 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1181 | isa = XCBuildConfiguration; 1182 | buildSettings = { 1183 | ALWAYS_SEARCH_USER_PATHS = NO; 1184 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1185 | CLANG_CXX_LIBRARY = "libc++"; 1186 | CLANG_ENABLE_MODULES = YES; 1187 | CLANG_ENABLE_OBJC_ARC = YES; 1188 | CLANG_WARN_BOOL_CONVERSION = YES; 1189 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1190 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1191 | CLANG_WARN_EMPTY_BODY = YES; 1192 | CLANG_WARN_ENUM_CONVERSION = YES; 1193 | CLANG_WARN_INT_CONVERSION = YES; 1194 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1195 | CLANG_WARN_UNREACHABLE_CODE = YES; 1196 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1197 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1198 | COPY_PHASE_STRIP = NO; 1199 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1200 | GCC_C_LANGUAGE_STANDARD = gnu99; 1201 | GCC_DYNAMIC_NO_PIC = NO; 1202 | GCC_OPTIMIZATION_LEVEL = 0; 1203 | GCC_PREPROCESSOR_DEFINITIONS = ( 1204 | "DEBUG=1", 1205 | "$(inherited)", 1206 | ); 1207 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1208 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1209 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1210 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1211 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1212 | GCC_WARN_UNUSED_FUNCTION = YES; 1213 | GCC_WARN_UNUSED_VARIABLE = YES; 1214 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1215 | MTL_ENABLE_DEBUG_INFO = YES; 1216 | ONLY_ACTIVE_ARCH = YES; 1217 | SDKROOT = iphoneos; 1218 | }; 1219 | name = Debug; 1220 | }; 1221 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1222 | isa = XCBuildConfiguration; 1223 | buildSettings = { 1224 | ALWAYS_SEARCH_USER_PATHS = NO; 1225 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1226 | CLANG_CXX_LIBRARY = "libc++"; 1227 | CLANG_ENABLE_MODULES = YES; 1228 | CLANG_ENABLE_OBJC_ARC = YES; 1229 | CLANG_WARN_BOOL_CONVERSION = YES; 1230 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1231 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1232 | CLANG_WARN_EMPTY_BODY = YES; 1233 | CLANG_WARN_ENUM_CONVERSION = YES; 1234 | CLANG_WARN_INT_CONVERSION = YES; 1235 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1236 | CLANG_WARN_UNREACHABLE_CODE = YES; 1237 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1238 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1239 | COPY_PHASE_STRIP = YES; 1240 | ENABLE_NS_ASSERTIONS = NO; 1241 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1242 | GCC_C_LANGUAGE_STANDARD = gnu99; 1243 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1244 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1245 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1246 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1247 | GCC_WARN_UNUSED_FUNCTION = YES; 1248 | GCC_WARN_UNUSED_VARIABLE = YES; 1249 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1250 | MTL_ENABLE_DEBUG_INFO = NO; 1251 | SDKROOT = iphoneos; 1252 | VALIDATE_PRODUCT = YES; 1253 | }; 1254 | name = Release; 1255 | }; 1256 | /* End XCBuildConfiguration section */ 1257 | 1258 | /* Begin XCConfigurationList section */ 1259 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "EZNetTests" */ = { 1260 | isa = XCConfigurationList; 1261 | buildConfigurations = ( 1262 | 00E356F61AD99517003FC87E /* Debug */, 1263 | 00E356F71AD99517003FC87E /* Release */, 1264 | ); 1265 | defaultConfigurationIsVisible = 0; 1266 | defaultConfigurationName = Release; 1267 | }; 1268 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "EZNet" */ = { 1269 | isa = XCConfigurationList; 1270 | buildConfigurations = ( 1271 | 13B07F941A680F5B00A75B9A /* Debug */, 1272 | 13B07F951A680F5B00A75B9A /* Release */, 1273 | ); 1274 | defaultConfigurationIsVisible = 0; 1275 | defaultConfigurationName = Release; 1276 | }; 1277 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EZNet-tvOS" */ = { 1278 | isa = XCConfigurationList; 1279 | buildConfigurations = ( 1280 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1281 | 2D02E4981E0B4A5E006451C7 /* Release */, 1282 | ); 1283 | defaultConfigurationIsVisible = 0; 1284 | defaultConfigurationName = Release; 1285 | }; 1286 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EZNet-tvOSTests" */ = { 1287 | isa = XCConfigurationList; 1288 | buildConfigurations = ( 1289 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1290 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1291 | ); 1292 | defaultConfigurationIsVisible = 0; 1293 | defaultConfigurationName = Release; 1294 | }; 1295 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "EZNet" */ = { 1296 | isa = XCConfigurationList; 1297 | buildConfigurations = ( 1298 | 83CBBA201A601CBA00E9B192 /* Debug */, 1299 | 83CBBA211A601CBA00E9B192 /* Release */, 1300 | ); 1301 | defaultConfigurationIsVisible = 0; 1302 | defaultConfigurationName = Release; 1303 | }; 1304 | /* End XCConfigurationList section */ 1305 | }; 1306 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1307 | } 1308 | -------------------------------------------------------------------------------- /ios/EZNet.xcodeproj/xcshareddata/xcschemes/EZNet-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/EZNet.xcodeproj/xcshareddata/xcschemes/EZNet.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/EZNet/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/EZNet/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:@"EZNet" 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/EZNet/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/EZNet/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/EZNet/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | EZNet 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | NSExceptionDomains 46 | 47 | localhost 48 | 49 | NSExceptionAllowsInsecureHTTPLoads 50 | 51 | 52 | 53 | 54 | UIAppFonts 55 | 56 | Entypo.ttf 57 | EvilIcons.ttf 58 | FontAwesome.ttf 59 | Foundation.ttf 60 | Ionicons.ttf 61 | MaterialIcons.ttf 62 | Octicons.ttf 63 | Roboto_medium.ttf 64 | Roboto.ttf 65 | rubicon-icon-font.ttf 66 | SimpleLineIcons.ttf 67 | Zocial.ttf 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /ios/EZNet/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/EZNetTests/EZNetTests.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 EZNetTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation EZNetTests 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 | -------------------------------------------------------------------------------- /ios/EZNetTests/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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EZNet", 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 | "native-base": "^2.2.0", 11 | "prop-types": "^15.5.10", 12 | "react": "16.0.0-alpha.12", 13 | "react-burger-menu": "^2.1.3", 14 | "react-burger-nav": "^2.0.2", 15 | "react-native": "0.45.1", 16 | "react-native-firebase": "^2.0.2", 17 | "react-native-material-ui": "^1.12.0", 18 | "react-native-responsive-image": "^2.1.0", 19 | "react-navigation": "^1.0.0-beta.11", 20 | "react-redux": "^5.0.5", 21 | "redux": "^3.7.1" 22 | }, 23 | "devDependencies": { 24 | "babel-eslint": "^7.2.3", 25 | "babel-jest": "20.0.3", 26 | "babel-preset-react-native": "2.0.0", 27 | "eslint": "^3.19.0", 28 | "eslint-config-airbnb": "^15.0.1", 29 | "eslint-plugin-import": "^2.2.0", 30 | "eslint-plugin-jsx-a11y": "^5.0.1", 31 | "eslint-plugin-react": "^7.0.1", 32 | "jest": "20.0.4", 33 | "react-test-renderer": "16.0.0-alpha.12" 34 | }, 35 | "jest": { 36 | "preset": "react-native" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/EZNetApp.js: -------------------------------------------------------------------------------- 1 | import { StackNavigator } from 'react-navigation'; 2 | 3 | import ReactNativeProject from './components/App'; 4 | import DetailScreen from './components/DetailScreen'; 5 | 6 | 7 | const EZNetApp = StackNavigator({ 8 | Home: { screen: ReactNativeProject }, 9 | Detail: { screen: DetailScreen }, 10 | }); 11 | 12 | export default EZNetApp; 13 | -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- 1 | import { FETCH_DATA } from './types'; 2 | 3 | import { categories as data } from './../api/dummy_api'; 4 | 5 | export const actionFetchData = () => ({ 6 | type: FETCH_DATA, 7 | payload: data, 8 | }); 9 | -------------------------------------------------------------------------------- /src/actions/types.js: -------------------------------------------------------------------------------- 1 | export const FETCH_DATA = 'fetch_data'; 2 | -------------------------------------------------------------------------------- /src/api/dummy_api.js: -------------------------------------------------------------------------------- 1 | export const categories = [ 2 | { 3 | id: '1', 4 | title: 'පුවත් පත්', 5 | thumbnail: 'CATEGORY_NEWSPAPERS', 6 | items: [ 7 | { 8 | id: '1_1', 9 | title: 'දිවයින', 10 | thumbnail: 'NEWSPAPERS_DIVAINA', 11 | url: 'http://www.divaina.com/', 12 | }, 13 | { 14 | id: '1_2', 15 | title: 'ලංකාදීප', 16 | thumbnail: 'NEWSPAPERS_LANKADEEPA', 17 | url: 'http://www.lankadeepa.lk/', 18 | }, 19 | { 20 | id: '1_3', 21 | title: 'රිවිර', 22 | thumbnail: 'NEWSPAPERS_RIVIRA', 23 | url: 'http://www.rivira.lk/online/', 24 | }, 25 | { 26 | id: '1_4', 27 | title: 'දෙරණ', 28 | thumbnail: 'NEWSPAPERS_DERANA', 29 | url: 'http://www.adaderana.lk/', 30 | }, 31 | ], 32 | }, 33 | ]; 34 | -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | StyleSheet, 4 | View, 5 | } from 'react-native'; 6 | import { Container, Content } from 'native-base'; 7 | import PropTypes from 'prop-types'; 8 | import { connect } from 'react-redux'; 9 | 10 | import TwoColumnView from './common/TwoColumnView'; 11 | import BoxItem from './common/BoxItem'; 12 | 13 | import * as actions from './../actions'; 14 | 15 | const styles = StyleSheet.create({ 16 | container: { 17 | flex: 1, 18 | }, 19 | }); 20 | 21 | class Categories extends Component { 22 | static propTypes = { 23 | actionFetchData: PropTypes.func.isRequired, 24 | categoryData: PropTypes.array.isRequired, 25 | navigation: PropTypes.object.isRequired, 26 | }; 27 | 28 | static navigationOptions = { 29 | title: 'අන්තර්ජාල නැබ', 30 | }; 31 | 32 | componentWillMount() { 33 | this.props.actionFetchData(); 34 | } 35 | 36 | renderCategories() { 37 | const { navigate } = this.props.navigation; 38 | 39 | const nodes = this.props.categoryData.map(category => ( 40 | navigate('Detail', { title: category.title, items: category.items })} 43 | {...category} 44 | /> 45 | )); 46 | 47 | return ( 48 | 49 | {nodes} 50 | 51 | ); 52 | } 53 | 54 | render() { 55 | return ( 56 | 57 | 58 | 59 | {this.renderCategories()} 60 | 61 | 62 | 63 | ); 64 | } 65 | } 66 | 67 | const mapStateToProps = ({ data }) => ({ 68 | categoryData: data, 69 | }); 70 | 71 | export default connect(mapStateToProps, actions)(Categories); 72 | -------------------------------------------------------------------------------- /src/components/DetailScreen.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { 3 | StyleSheet, 4 | Linking, 5 | } from 'react-native'; 6 | import { Container, Content } from 'native-base'; 7 | import PropTypes from 'prop-types'; 8 | 9 | import TwoColumnView from './common/TwoColumnView'; 10 | import BoxItem from './common/BoxItem'; 11 | 12 | const styles = StyleSheet.create({ 13 | container: { 14 | flex: 1, 15 | }, 16 | layout: { 17 | flex: 1, 18 | flexDirection: 'row', 19 | justifyContent: 'center', 20 | alignItems: 'center', 21 | }, 22 | box: { 23 | padding: 20, 24 | backgroundColor: 'rgba(0,0,0,0.05)', 25 | margin: 10, 26 | }, 27 | }); 28 | 29 | export default class DetailScreen extends Component { 30 | 31 | static propTypes = { 32 | navigation: PropTypes.object.isRequired, 33 | }; 34 | 35 | static navigationOptions = ({ navigation }) => ({ 36 | title: `${navigation.state.params.title}`, 37 | }); 38 | 39 | renderDetails() { 40 | const { items } = this.props.navigation.state.params; 41 | const details = items.map(item => ( 42 | Linking.openURL(item.url)} 45 | {...item} 46 | /> 47 | )); 48 | return ( 49 | 50 | {details} 51 | 52 | ); 53 | } 54 | 55 | render() { 56 | return ( 57 | 58 | 59 | {this.renderDetails()} 60 | 61 | 62 | ); 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/components/common/BoxItem.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import { StyleSheet, TouchableHighlight, View } from 'react-native'; 4 | import ResponsiveImage from 'react-native-responsive-image'; 5 | 6 | import * as staticImages from './../../../img'; 7 | 8 | const styles = StyleSheet.create({ 9 | box: { 10 | padding: 20, 11 | backgroundColor: 'rgba(0,0,0,0.05)', 12 | margin: 10, 13 | }, 14 | }); 15 | 16 | class Item extends Component { 17 | static defaultProps = { 18 | thumbnail: 'UNKNOWN', 19 | onPress: () => {}, 20 | }; 21 | 22 | static propTypes = { 23 | thumbnail: PropTypes.string, 24 | onPress: PropTypes.func, 25 | }; 26 | 27 | render() { 28 | const { thumbnail, onPress } = this.props; 29 | 30 | return ( 31 | 32 | 33 | 38 | 39 | 40 | ); 41 | } 42 | } 43 | 44 | export default Item; 45 | -------------------------------------------------------------------------------- /src/components/common/TwoColumnView.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { StyleSheet, View } from 'react-native'; 3 | import PropTypes from 'prop-types'; 4 | 5 | const styles = StyleSheet.create({ 6 | layout: { 7 | flex: 1, 8 | flexDirection: 'row', 9 | justifyContent: 'space-between', 10 | }, 11 | }); 12 | 13 | const TwoColumnView = (props) => { 14 | const { children } = props; 15 | 16 | if (!Array.isArray(children)) { 17 | console.log('Children to the TwoColumnView is not an array') 18 | return null; 19 | } 20 | 21 | const left = []; 22 | const right = []; 23 | 24 | children.forEach((child, index) => { 25 | if (index % 2 === 0) { // even 26 | left.push(child); 27 | } else { 28 | right.push(child); 29 | } 30 | }); 31 | 32 | return ( 33 | 34 | 35 | {left} 36 | 37 | 38 | {right} 39 | 40 | 41 | ); 42 | }; 43 | 44 | TwoColumnView.propTypes = { 45 | children: PropTypes.arrayOf(PropTypes.node).isRequired, 46 | }; 47 | 48 | export default TwoColumnView; 49 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Provider } from 'react-redux'; 3 | import { createStore } from 'redux'; 4 | import reducers from './reducers'; 5 | 6 | import EZNetApp from './EZNetApp'; 7 | 8 | export default () => ( 9 | 10 | 11 | 12 | ); 13 | -------------------------------------------------------------------------------- /src/reducers/data_reducer.js: -------------------------------------------------------------------------------- 1 | import { FETCH_DATA } from './../actions/types'; 2 | 3 | const InitialState = []; 4 | 5 | export default (state = InitialState, action) => { 6 | switch (action.type) { 7 | case FETCH_DATA: 8 | { 9 | return action.payload; 10 | } 11 | default: 12 | return state; 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- 1 | import { combineReducers } from 'redux'; 2 | 3 | import dataReducer from './data_reducer'; 4 | 5 | export default combineReducers({ 6 | data: dataReducer, 7 | }); 8 | --------------------------------------------------------------------------------