├── .nvmrc ├── .watchmanconfig ├── iOS ├── BuddyBuildSDK.framework │ ├── build.num │ ├── BuddyBuildSDK │ └── Headers │ │ └── BuddyBuildSDK.h ├── Fonts │ ├── Entypo.ttf │ ├── Ionicons.ttf │ ├── Octicons.ttf │ ├── Zocial.ttf │ ├── EvilIcons.ttf │ ├── Foundation.ttf │ ├── FontAwesome.ttf │ └── MaterialIcons.ttf ├── main.jsbundle ├── DribbbleApp │ ├── AppDelegate.h │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.m │ └── Base.lproj │ │ └── LaunchScreen.xib ├── DribbbleAppTests │ ├── Info.plist │ └── DribbbleAppTests.m └── DribbbleApp.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ └── DribbbleApp.xcscheme │ └── project.pbxproj ├── android ├── settings.gradle ├── build.gradle ├── gradle.properties └── app │ ├── proguard-rules.pro │ ├── src │ └── main │ │ └── java │ │ └── com │ │ └── dribbbleapp │ │ └── MainActivity.java │ ├── build.gradle │ └── react.gradle ├── img ├── AuthorAvatar.png ├── AuthorAvatar@2x.png └── AuthorAvatar@3x.png ├── ios └── DribbbleApp │ ├── Images.xcassets │ └── Contents.json │ ├── main.m │ └── Info.plist ├── .npmignore ├── .gitignore ├── app ├── helpers │ ├── getImage.js │ └── api.js ├── Loading.js ├── ShotCell.js ├── CommentItem.js ├── Player.js ├── ShotList.js └── ShotDetails.js ├── package.json ├── .github └── FUNDING.yml ├── LICENSE ├── .flowconfig ├── README.md └── index.ios.js /.nvmrc: -------------------------------------------------------------------------------- 1 | v4.2.1 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /iOS/BuddyBuildSDK.framework/build.num: -------------------------------------------------------------------------------- 1 | 1745605 2 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DribbbleApp' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /iOS/Fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/Entypo.ttf -------------------------------------------------------------------------------- /iOS/Fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/Ionicons.ttf -------------------------------------------------------------------------------- /iOS/Fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/Octicons.ttf -------------------------------------------------------------------------------- /iOS/Fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/Zocial.ttf -------------------------------------------------------------------------------- /img/AuthorAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/img/AuthorAvatar.png -------------------------------------------------------------------------------- /iOS/Fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /iOS/Fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/Foundation.ttf -------------------------------------------------------------------------------- /img/AuthorAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/img/AuthorAvatar@2x.png -------------------------------------------------------------------------------- /img/AuthorAvatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/img/AuthorAvatar@3x.png -------------------------------------------------------------------------------- /iOS/Fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /iOS/Fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/Fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /ios/DribbbleApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /iOS/BuddyBuildSDK.framework/BuddyBuildSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catalinmiron/react-native-dribbble-app/HEAD/iOS/BuddyBuildSDK.framework/BuddyBuildSDK -------------------------------------------------------------------------------- /iOS/BuddyBuildSDK.framework/Headers/BuddyBuildSDK.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2015 Doe Pics Hit, Inc. All rights reserved. 2 | 3 | #import 4 | #import 5 | 6 | @interface BuddyBuildSDK : NSObject 7 | + (void)setup:(id)bbAppDelegate; 8 | + (void)setup; 9 | @end 10 | -------------------------------------------------------------------------------- /iOS/main.jsbundle: -------------------------------------------------------------------------------- 1 | // Offline JS 2 | // To re-generate the offline bundle, run this from the root of your project: 3 | // 4 | // $ react-native bundle --minify 5 | // 6 | // See http://facebook.github.io/react-native/docs/runningondevice.html for more details. 7 | 8 | throw new Error('Offline JS file is empty. See iOS/main.jsbundle for instructions'); 9 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | 24 | # node.js 25 | # 26 | node_modules/ 27 | npm-debug.log 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | .idea 28 | .gradle 29 | local.properties 30 | 31 | # node.js 32 | # 33 | node_modules/ 34 | npm-debug.log 35 | -------------------------------------------------------------------------------- /app/helpers/getImage.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | shotImage: function(shot: Object): {uri: ?string} { 5 | var uri = shot.images.normal ? shot.images.normal : shot.images.teaser; 6 | return {uri}; 7 | }, 8 | authorAvatar: function(player: Object): {uri: ?string} { 9 | var uri; 10 | if (player) { 11 | uri = player.avatar_url; 12 | return {uri}; 13 | } else { 14 | uri = require('../../img/AuthorAvatar.png'); 15 | return uri; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /iOS/DribbbleApp/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/DribbbleApp/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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "DribbbleApp", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node_modules/react-native/packager/packager.sh" 7 | }, 8 | "dependencies": { 9 | "react-native": "^0.14.1", 10 | "react-native-blur": "^0.7.6", 11 | "react-native-htmlview": "^0.2.0", 12 | "react-native-parallax-view": "git+https://github.com/jesseruder/react-native-parallax-view.git", 13 | "react-native-vector-icons": "^0.8.5" 14 | }, 15 | "devDependencies": { 16 | "flow-bin": "0.17.0" 17 | }, 18 | "engines": { 19 | "node": "4.2.1", 20 | "npm": "3.3.x" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/helpers/api.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var API_URL = "https://api.dribbble.com/v1/", 4 | ACCESS_TOKEN = "7a22f910dcdff63bd3ebbe48d022f05e8268c67249709b5489d923f97bcf96ec"; 5 | 6 | function fetchData(URL) { 7 | return fetch(URL, { 8 | headers: { 9 | "Authorization": "Bearer " + ACCESS_TOKEN 10 | } 11 | }).then((response) => response.json()) 12 | } 13 | 14 | module.exports = { 15 | getShotsByType: function(type: string, pageNumber: ?number): ?Object { 16 | var URL = API_URL + "shots/?list=" + type; 17 | if (pageNumber) { 18 | URL += "&per_page=10&page=" + pageNumber; 19 | } 20 | 21 | return fetchData(URL); 22 | }, 23 | getResources: function(url: ?string): ?Object { 24 | return fetchData(url); 25 | } 26 | }; 27 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: catalinmiron # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: catalinmiron # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /iOS/DribbbleApp/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 | } -------------------------------------------------------------------------------- /app/Loading.js: -------------------------------------------------------------------------------- 1 | var React = require("react-native"); 2 | var { 3 | ActivityIndicatorIOS, 4 | StyleSheet, 5 | View, 6 | } = React; 7 | 8 | var Loading = React.createClass({ 9 | render: function() { 10 | return ( 11 | 12 | 16 | 17 | ); 18 | } 19 | }); 20 | 21 | var styles = StyleSheet.create({ 22 | container: { 23 | flex: 1, 24 | backgroundColor: "white", 25 | flexDirection: "column", 26 | justifyContent: "center", 27 | }, 28 | centerText: { 29 | alignItems: "center", 30 | }, 31 | spinner: { 32 | width: 50, 33 | } 34 | }); 35 | 36 | module.exports = Loading; 37 | -------------------------------------------------------------------------------- /iOS/DribbbleAppTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 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 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | maven { 4 | url "https://plugins.gradle.org/m2/" 5 | } 6 | } 7 | dependencies { 8 | classpath "gradle.plugin.com.buddybuild:plugins:0.0.21" 9 | } 10 | } 11 | 12 | apply plugin: "com.buddybuild.androidinterceptor" 13 | apply plugin: "com.buddybuild.sdkmanager" 14 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 15 | 16 | buildscript { 17 | repositories { 18 | jcenter() 19 | } 20 | dependencies { 21 | classpath 'com.android.tools.build:gradle:1.3.1' 22 | 23 | // NOTE: Do not place your application dependencies here; they belong 24 | // in the individual module build.gradle files 25 | } 26 | } 27 | 28 | allprojects { 29 | repositories { 30 | mavenLocal() 31 | jcenter() 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Catalin Miron 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 | -------------------------------------------------------------------------------- /app/ShotCell.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var React = require("react-native"); 4 | var { 5 | Image, 6 | PixelRatio, 7 | StyleSheet, 8 | Text, 9 | TouchableHighlight, 10 | View, 11 | Dimensions 12 | } = React; 13 | 14 | var getImage = require("./helpers/getImage"), 15 | screen = Dimensions.get('window'); 16 | 17 | var ShotCell = React.createClass({ 18 | render: function() { 19 | return ( 20 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | ); 33 | } 34 | }); 35 | 36 | var styles = StyleSheet.create({ 37 | textContainer: { 38 | flex: 1, 39 | }, 40 | row: { 41 | backgroundColor: "white", 42 | flexDirection: "column" 43 | }, 44 | cellImage: { 45 | height: 300, 46 | width: screen.width, 47 | backgroundColor: "transparent", 48 | resizeMode: "cover" 49 | }, 50 | cellBorder: { 51 | backgroundColor: "rgba(0, 0, 0, 0.2)", 52 | // Trick to get the thinest line the device can display 53 | height: 1 / PixelRatio.get(), 54 | marginLeft: 4, 55 | }, 56 | }); 57 | 58 | module.exports = ShotCell; 59 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | # We fork some components by platform. 4 | .*/*.web.js 5 | .*/*.android.js 6 | 7 | # Some modules have their own node_modules with overlap 8 | .*/node_modules/node-haste/.* 9 | 10 | # Ignore react-tools where there are overlaps, but don't ignore anything that 11 | # react-native relies on 12 | .*/node_modules/react-tools/src/React.js 13 | .*/node_modules/react-tools/src/renderers/shared/event/EventPropagators.js 14 | .*/node_modules/react-tools/src/renderers/shared/event/eventPlugins/ResponderEventPlugin.js 15 | .*/node_modules/react-tools/src/shared/vendor/core/ExecutionEnvironment.js 16 | 17 | # Ignore commoner tests 18 | .*/node_modules/commoner/test/.* 19 | 20 | # See https://github.com/facebook/flow/issues/442 21 | .*/react-tools/node_modules/commoner/lib/reader.js 22 | 23 | # Ignore jest 24 | .*/node_modules/jest-cli/.* 25 | 26 | # Ignore Website 27 | .*/website/.* 28 | 29 | [include] 30 | 31 | [libs] 32 | node_modules/react-native/Libraries/react-native/react-native-interface.js 33 | 34 | [options] 35 | module.system=haste 36 | 37 | munge_underscores=true 38 | 39 | module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub' 40 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.png$' -> 'RelativeImageStub' 41 | 42 | suppress_type=$FlowIssue 43 | suppress_type=$FlowFixMe 44 | suppress_type=$FixMe 45 | 46 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-7]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 47 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-7]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+ 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 49 | 50 | [version] 51 | 0.17.0 52 | -------------------------------------------------------------------------------- /ios/DribbbleApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 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 | NSAppTransportSecurity 26 | 27 | NSAllowsArbitraryLoads 28 | 29 | 30 | NSLocationWhenInUseUsageDescription 31 | 32 | UIAppFonts 33 | 34 | FontAwesome.ttf 35 | Foundation.ttf 36 | Ionicons.ttf 37 | MaterialIcons.ttf 38 | 39 | UILaunchStoryboardName 40 | LaunchScreen 41 | UIRequiredDeviceCapabilities 42 | 43 | armv7 44 | 45 | UISupportedInterfaceOrientations 46 | 47 | UIInterfaceOrientationPortrait 48 | UIInterfaceOrientationLandscapeLeft 49 | UIInterfaceOrientationLandscapeRight 50 | 51 | UIViewControllerBasedStatusBarAppearance 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /app/CommentItem.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var React = require("react-native"); 4 | var { 5 | Image, 6 | StyleSheet, 7 | PixelRatio, 8 | Text, 9 | TouchableHighlight, 10 | View, 11 | Component, 12 | Dimensions 13 | } = React; 14 | 15 | var Icon = require("react-native-vector-icons/FontAwesome"), 16 | getImage = require("./helpers/getImage"), 17 | HTML = require("react-native-htmlview"), 18 | screen = Dimensions.get('window'); 19 | 20 | var CommentItem = React.createClass({ 21 | getDefaultProps: function() { 22 | return { 23 | comments: [] 24 | } 25 | }, 26 | 27 | render: function() { 28 | return 29 | 31 | 32 | 33 | 35 | 36 | 37 | {this.props.comment.user.name} 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | ; 48 | } 49 | }); 50 | 51 | var styles = StyleSheet.create({ 52 | commentContent: { 53 | padding: 10, 54 | flex: 1, 55 | flexDirection: "row", 56 | alignItems: "flex-start" 57 | }, 58 | userName: { 59 | fontWeight: "700" 60 | }, 61 | commentBody: { 62 | flex: 1, 63 | flexDirection: "column", 64 | justifyContent: "center" 65 | }, 66 | commentText: { 67 | flex: 1, 68 | flexDirection: "row" 69 | }, 70 | cellBorder: { 71 | backgroundColor: "rgba(0, 0, 0, 0.2)", 72 | // Trick to get the thinest line the device can display 73 | height: 1 / PixelRatio.get(), 74 | marginLeft: 4, 75 | }, 76 | avatar: { 77 | borderRadius: 20, 78 | width: 40, 79 | height: 40, 80 | marginRight: 10 81 | } 82 | }); 83 | 84 | module.exports = CommentItem; 85 | -------------------------------------------------------------------------------- /iOS/DribbbleApp/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 "RCTRootView.h" 13 | #import 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | [BuddyBuildSDK setup]; 20 | 21 | NSURL *jsCodeLocation; 22 | 23 | /** 24 | * Loading JavaScript code - uncomment the one you want. 25 | * 26 | * OPTION 1 27 | * Load from development server. Start the server from the repository root: 28 | * 29 | * $ npm start 30 | * 31 | * To run on device, change `localhost` to the IP address of your computer 32 | * (you can get this by typing `ifconfig` into the terminal and selecting the 33 | * `inet` value under `en0:`) and make sure your computer and iOS device are 34 | * on the same Wi-Fi network. 35 | */ 36 | 37 | jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"]; 38 | 39 | /** 40 | * OPTION 2 41 | * Load from pre-bundled file on disk. The static bundle is automatically 42 | * generated by "Bundle React Native code and images" build step. 43 | */ 44 | 45 | // jsCodeLocation = [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 46 | 47 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 48 | moduleName:@"DribbbleApp" 49 | initialProperties:nil 50 | launchOptions:launchOptions]; 51 | 52 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 53 | UIViewController *rootViewController = [[UIViewController alloc] init]; 54 | rootViewController.view = rootView; 55 | self.window.rootViewController = rootViewController; 56 | [self.window makeKeyAndVisible]; 57 | return YES; 58 | } 59 | 60 | @end 61 | -------------------------------------------------------------------------------- /iOS/DribbbleAppTests/DribbbleAppTests.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 "RCTLog.h" 14 | #import "RCTRootView.h" 15 | 16 | #define TIMEOUT_SECONDS 240 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface DribbbleAppTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation DribbbleAppTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Would you like to support me? 2 | 3 | Buy Me A Coffee 4 | 5 | ---- 6 | 7 | PayPal donate button 8 | 9 | [![BuddyBuild](https://dashboard.buddybuild.com/api/statusImage?appID=5654dbf613d2b801001aaa4f&branch=master&build=latest)](https://dashboard.buddybuild.com/apps/5654dbf613d2b801001aaa4f/build/latest) 10 | 11 | [![reactnative.gallery](https://img.shields.io/badge/reactnative.gallery-%E2%99%A5-red.svg)](https://reactnative.gallery) 12 | 13 | ###Dribbble app built with React Native 14 | 15 | A [Dribbble](http://dribbble.com) app build with [React Native](https://github.com/facebook/react-native). 16 | 17 | ![dribbble_app_screenshot](https://cloud.githubusercontent.com/assets/2805320/8113463/db61b072-1076-11e5-8aa2-52417f019ea0.jpg) 18 | 19 | ####Preview 20 | ![dribbble_app_flow](https://cloud.githubusercontent.com/assets/2805320/8127634/25311eb0-1101-11e5-83aa-06dcc2d69da3.gif) 21 | 22 | 23 | __Updated version__ 24 | 25 | ![dribbble-app-update](https://cloud.githubusercontent.com/assets/2805320/9274780/1ca63a6a-42a1-11e5-8570-2c2781ec721f.gif) 26 | 27 | 28 | 29 | Plugins used: 30 | - [HTML parser](https://github.com/jsdf/react-native-htmlview) 31 | - [React native Parallax view](https://github.com/lelandrichardson/react-native-parallax-view) 32 | - [React native vector icons](https://github.com/oblador/react-native-vector-icons) 33 | 34 | ####How to run it locally 35 | 36 | - Clone this repo `git clone git@github.com:catalinmiron/react-native-dribbble-app.git` 37 | - `cd react-native-dribbble-app` 38 | - run `npm install` 39 | - Open `DribbbleApp.xcodeproj` in `XCode` 40 | - Press `cmd+r` to build it 41 | 42 | 43 | ####Improvements 44 | - [x] add icons in TabBar 45 | - [ ] refactor 'facebook-movies' fetching logic 46 | - [x] add author view 47 | - [x] fetch comments in shot details 48 | - [ ] switch to `ES6` 49 | -------------------------------------------------------------------------------- /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 | 30 | # Do not strip any method/class that is annotated with @DoNotStrip 31 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 32 | -keepclassmembers class * { 33 | @com.facebook.proguard.annotations.DoNotStrip *; 34 | } 35 | 36 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 37 | void set*(***); 38 | *** get*(); 39 | } 40 | 41 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 42 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 43 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 44 | -keepclassmembers class * { @com.facebook.react.uimanager.ReactProp ; } 45 | -keepclassmembers class * { @com.facebook.react.uimanager.ReactPropGroup ; } 46 | 47 | # okhttp 48 | 49 | -keepattributes Signature 50 | -keepattributes *Annotation* 51 | -keep class com.squareup.okhttp.** { *; } 52 | -keep interface com.squareup.okhttp.** { *; } 53 | -dontwarn com.squareup.okhttp.** 54 | 55 | # okio 56 | 57 | -keep class sun.misc.Unsafe { *; } 58 | -dontwarn java.nio.file.* 59 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 60 | -dontwarn okio.** 61 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/dribbbleapp/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.dribbbleapp; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.view.KeyEvent; 6 | 7 | import com.facebook.react.LifecycleState; 8 | import com.facebook.react.ReactInstanceManager; 9 | import com.facebook.react.ReactRootView; 10 | import com.facebook.react.modules.core.DefaultHardwareBackBtnHandler; 11 | import com.facebook.react.shell.MainReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | 14 | public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler { 15 | 16 | private ReactInstanceManager mReactInstanceManager; 17 | private ReactRootView mReactRootView; 18 | 19 | @Override 20 | protected void onCreate(Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | mReactRootView = new ReactRootView(this); 23 | 24 | mReactInstanceManager = ReactInstanceManager.builder() 25 | .setApplication(getApplication()) 26 | .setBundleAssetName("index.android.bundle") 27 | .setJSMainModuleName("index.android") 28 | .addPackage(new MainReactPackage()) 29 | .setUseDeveloperSupport(BuildConfig.DEBUG) 30 | .setInitialLifecycleState(LifecycleState.RESUMED) 31 | .build(); 32 | 33 | mReactRootView.startReactApplication(mReactInstanceManager, "DribbbleApp", null); 34 | 35 | setContentView(mReactRootView); 36 | } 37 | 38 | @Override 39 | public boolean onKeyUp(int keyCode, KeyEvent event) { 40 | if (keyCode == KeyEvent.KEYCODE_MENU && mReactInstanceManager != null) { 41 | mReactInstanceManager.showDevOptionsDialog(); 42 | return true; 43 | } 44 | return super.onKeyUp(keyCode, event); 45 | } 46 | 47 | @Override 48 | public void onBackPressed() { 49 | if (mReactInstanceManager != null) { 50 | mReactInstanceManager.onBackPressed(); 51 | } else { 52 | super.onBackPressed(); 53 | } 54 | } 55 | 56 | @Override 57 | public void invokeDefaultOnBackPressed() { 58 | super.onBackPressed(); 59 | } 60 | 61 | @Override 62 | protected void onPause() { 63 | super.onPause(); 64 | 65 | if (mReactInstanceManager != null) { 66 | mReactInstanceManager.onPause(); 67 | } 68 | } 69 | 70 | @Override 71 | protected void onResume() { 72 | super.onResume(); 73 | 74 | if (mReactInstanceManager != null) { 75 | mReactInstanceManager.onResume(this); 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dribbble App 3 | * Github url: https://github.com/catalinmiron/react-native-dribbble-app 4 | */ 5 | "use strict"; 6 | 7 | var React = require("react-native"); 8 | var { 9 | AppRegistry, 10 | NavigatorIOS, 11 | StyleSheet, 12 | TabBarIOS, 13 | View, 14 | Text 15 | } = React; 16 | 17 | var ShotList = require("./app/ShotList"), 18 | Icon = require("react-native-vector-icons/FontAwesome"); 19 | 20 | var DribbbleApp = React.createClass({ 21 | getInitialState: function() { 22 | return { 23 | selectedTab: "default" 24 | }; 25 | }, 26 | 27 | _renderContent: function(category: string, title: ?string) { 28 | return ( 29 | 36 | ); 37 | }, 38 | 39 | render: function() { 40 | return ( 41 | 42 | { 48 | this.setState({ 49 | selectedTab: "default", 50 | }); 51 | }}> 52 | {this._renderContent("default", "All")} 53 | 54 | { 60 | this.setState({ 61 | selectedTab: "debuts", 62 | }); 63 | }}> 64 | {this._renderContent("debuts", "Debuts")} 65 | 66 | { 72 | this.setState({ 73 | selectedTab: "animated", 74 | }); 75 | }}> 76 | {this._renderContent("animated", "Animated")} 77 | 78 | { 84 | this.setState({ 85 | selectedTab: "rebounds", 86 | }); 87 | }}> 88 | {this._renderContent("rebounds", "Rebounds")} 89 | 90 | 91 | ); 92 | } 93 | }); 94 | 95 | var styles = StyleSheet.create({ 96 | tabContent: { 97 | flex: 1, 98 | alignItems: "center", 99 | }, 100 | tabText: { 101 | color: "white", 102 | margin: 50, 103 | }, 104 | wrapper: { 105 | flex: 1 106 | } 107 | }); 108 | 109 | AppRegistry.registerComponent("DribbbleApp", () => DribbbleApp); 110 | 111 | module.exports = DribbbleApp; 112 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | /** 4 | * The react.gradle file registers two tasks: bundleDebugJsAndAssets and bundleReleaseJsAndAssets. 5 | * These basically call `react-native bundle` with the correct arguments during the Android build 6 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 7 | * bundle directly from the development server. Below you can see all the possible configurations 8 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 9 | * `apply from: "react.gradle"` line. 10 | * 11 | * project.ext.react = [ 12 | * // the name of the generated asset file containing your JS bundle 13 | * bundleAssetName: "index.android.bundle", 14 | * 15 | * // the entry file for bundle generation 16 | * entryFile: "index.android.js", 17 | * 18 | * // whether to bundle JS and assets in debug mode 19 | * bundleInDebug: false, 20 | * 21 | * // whether to bundle JS and assets in release mode 22 | * bundleInRelease: true, 23 | * 24 | * // the root of your project, i.e. where "package.json" lives 25 | * root: "../../", 26 | * 27 | * // where to put the JS bundle asset in debug mode 28 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 29 | * 30 | * // where to put the JS bundle asset in release mode 31 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 32 | * 33 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 34 | * // require('./image.png')), in debug mode 35 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 36 | * 37 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 38 | * // require('./image.png')), in release mode 39 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 40 | * 41 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 42 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 43 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 44 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 45 | * // for example, you might want to remove it from here. 46 | * inputExcludes: ["android/**", "ios/**"] 47 | * ] 48 | */ 49 | 50 | apply from: "react.gradle" 51 | 52 | android { 53 | compileSdkVersion 23 54 | buildToolsVersion "23.0.1" 55 | 56 | defaultConfig { 57 | applicationId "com.dribbbleapp" 58 | minSdkVersion 16 59 | targetSdkVersion 22 60 | versionCode 1 61 | versionName "1.0" 62 | ndk { 63 | abiFilters "armeabi-v7a", "x86" 64 | } 65 | } 66 | buildTypes { 67 | release { 68 | minifyEnabled false // Set this to true to enable Proguard 69 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 70 | } 71 | } 72 | } 73 | 74 | dependencies { 75 | compile fileTree(dir: "libs", include: ["*.jar"]) 76 | compile "com.android.support:appcompat-v7:23.0.1" 77 | compile "com.facebook.react:react-native:0.14.+" 78 | } 79 | -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- 1 | def config = project.hasProperty("react") ? project.react : []; 2 | 3 | def bundleAssetName = config.bundleAssetName ?: "index.android.bundle" 4 | def entryFile = config.entryFile ?: "index.android.js" 5 | 6 | // because elvis operator 7 | def elvisFile(thing) { 8 | return thing ? file(thing) : null; 9 | } 10 | 11 | def reactRoot = elvisFile(config.root) ?: file("../../") 12 | def jsBundleDirDebug = elvisFile(config.jsBundleDirDebug) ?: 13 | file("$buildDir/intermediates/assets/debug") 14 | def jsBundleDirRelease = elvisFile(config.jsBundleDirRelease) ?: 15 | file("$buildDir/intermediates/assets/release") 16 | def resourcesDirDebug = elvisFile(config.resourcesDirDebug) ?: 17 | file("$buildDir/intermediates/res/merged/debug") 18 | def resourcesDirRelease = elvisFile(config.resourcesDirRelease) ?: 19 | file("$buildDir/intermediates/res/merged/release") 20 | def inputExcludes = config.inputExcludes ?: ["android/**", "ios/**"] 21 | 22 | def jsBundleFileDebug = file("$jsBundleDirDebug/$bundleAssetName") 23 | def jsBundleFileRelease = file("$jsBundleDirRelease/$bundleAssetName") 24 | 25 | task bundleDebugJsAndAssets(type: Exec) { 26 | // create dirs if they are not there (e.g. the "clean" task just ran) 27 | doFirst { 28 | jsBundleDirDebug.mkdirs() 29 | resourcesDirDebug.mkdirs() 30 | } 31 | 32 | // set up inputs and outputs so gradle can cache the result 33 | inputs.files fileTree(dir: reactRoot, excludes: inputExcludes) 34 | outputs.dir jsBundleDirDebug 35 | outputs.dir resourcesDirDebug 36 | 37 | // set up the call to the react-native cli 38 | workingDir reactRoot 39 | commandLine "react-native", "bundle", "--platform", "android", "--dev", "true", "--entry-file", 40 | entryFile, "--bundle-output", jsBundleFileDebug, "--assets-dest", resourcesDirDebug 41 | 42 | enabled config.bundleInDebug ?: false 43 | } 44 | 45 | task bundleReleaseJsAndAssets(type: Exec) { 46 | // create dirs if they are not there (e.g. the "clean" task just ran) 47 | doFirst { 48 | jsBundleDirRelease.mkdirs() 49 | resourcesDirRelease.mkdirs() 50 | } 51 | 52 | // set up inputs and outputs so gradle can cache the result 53 | inputs.files fileTree(dir: reactRoot, excludes: inputExcludes) 54 | outputs.dir jsBundleDirRelease 55 | outputs.dir resourcesDirRelease 56 | 57 | // set up the call to the react-native cli 58 | workingDir reactRoot 59 | commandLine "react-native", "bundle", "--platform", "android", "--dev", "false", "--entry-file", 60 | entryFile, "--bundle-output", jsBundleFileRelease, "--assets-dest", resourcesDirRelease 61 | 62 | enabled config.bundleInRelease ?: true 63 | } 64 | 65 | gradle.projectsEvaluated { 66 | // hook bundleDebugJsAndAssets into the android build process 67 | bundleDebugJsAndAssets.dependsOn mergeDebugResources 68 | bundleDebugJsAndAssets.dependsOn mergeDebugAssets 69 | processDebugResources.dependsOn bundleDebugJsAndAssets 70 | 71 | // hook bundleReleaseJsAndAssets into the android build process 72 | bundleReleaseJsAndAssets.dependsOn mergeReleaseResources 73 | bundleReleaseJsAndAssets.dependsOn mergeReleaseAssets 74 | processReleaseResources.dependsOn bundleReleaseJsAndAssets 75 | } 76 | -------------------------------------------------------------------------------- /iOS/DribbbleApp/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/DribbbleApp.xcodeproj/xcshareddata/xcschemes/DribbbleApp.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /app/Player.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var React = require("react-native"); 4 | var { 5 | Image, 6 | StyleSheet, 7 | Text, 8 | TouchableOpacity, 9 | View, 10 | Component, 11 | ActivityIndicatorIOS, 12 | ListView, 13 | Dimensions, 14 | Modal 15 | } = React; 16 | 17 | var Icon = require("react-native-vector-icons/FontAwesome"), 18 | getImage = require("./helpers/getImage"), 19 | HTML = require("react-native-htmlview"), 20 | screen = Dimensions.get('window'), 21 | ParallaxView = require("react-native-parallax-view"); 22 | 23 | var api = require("./helpers/api"); 24 | 25 | var ShotDetails = require("./ShotDetails"); 26 | var ShotCell = require("./ShotCell"); 27 | var Loading = require("./Loading"); 28 | 29 | var Player = React.createClass({ 30 | 31 | getInitialState: function() { 32 | return { 33 | isModalOpen: false, 34 | isLoading: true, 35 | dataSource: new ListView.DataSource({ 36 | rowHasChanged: (row1, row2) => row1 !== row2, 37 | }) 38 | }; 39 | }, 40 | 41 | componentWillMount: function() { 42 | api.getResources(this.props.player.shots_url).then((responseData) => { 43 | this.setState({ 44 | dataSource: this.state.dataSource.cloneWithRows(responseData), 45 | isLoading: false 46 | }); 47 | }).done(); 48 | }, 49 | 50 | openModal: function() { 51 | this.setState({ 52 | isModalOpen: true 53 | }); 54 | }, 55 | 56 | closeModal: function() { 57 | this.setState({ 58 | isModalOpen: false 59 | }); 60 | }, 61 | 62 | render: function() { 63 | return ( 64 | 70 | 71 | 72 | 74 | {this.props.player.username} 75 | {this.props.player.name} 76 | 77 | 78 | 79 | {this.props.player.followers_count} 80 | 81 | 82 | 83 | {this.props.player.shots_count} 84 | 85 | 86 | 87 | {this.props.player.likes_count} 88 | 89 | 90 | 91 | 92 | 93 | )} 94 | > 95 | 96 | {this.state.dataSource.length !== 0 ? this.renderShots() : } 97 | 98 | 100 | 102 | 103 | 104 | ); 105 | }, 106 | 107 | renderShots: function() { 108 | return ; 117 | }, 118 | 119 | renderRow: function(shot: Object) { 120 | return this.selectShot(shot)} 122 | shot={shot} 123 | />; 124 | }, 125 | 126 | selectShot: function(shot: Object) { 127 | console.log(shot); 128 | debugger; 129 | this.props.navigator.push({ 130 | component: ShotDetails, 131 | passProps: {shot}, 132 | title: shot.title 133 | }); 134 | }, 135 | }); 136 | 137 | var styles = StyleSheet.create({ 138 | listStyle: { 139 | flex: 1, 140 | backgroundColor: "red" 141 | }, 142 | listView: { 143 | flex: 1, 144 | backgroundColor: "coral" 145 | }, 146 | spinner: { 147 | width: 50, 148 | }, 149 | headerContent: { 150 | flex: 1, 151 | alignItems: "center", 152 | justifyContent: "center", 153 | backgroundColor: "transparent", 154 | }, 155 | innerHeaderContent: { 156 | marginTop: 30, 157 | alignItems: "center" 158 | }, 159 | playerInfo: { 160 | flex: 1, 161 | alignItems: "center", 162 | justifyContent: "center", 163 | backgroundColor: "white", 164 | flexDirection: "row" 165 | }, 166 | playerUsername: { 167 | color: "#fff", 168 | fontWeight: "300" 169 | }, 170 | playerName: { 171 | fontSize: 14, 172 | color: "#fff", 173 | fontWeight: "900", 174 | lineHeight: 18 175 | }, 176 | //Player details list 177 | playerDetailsRow: { 178 | flex: 1, 179 | alignItems: "center", 180 | justifyContent: "center", 181 | flexDirection: "row", 182 | width: screen.width / 2, 183 | marginTop: 20 184 | }, 185 | playerCounter: { 186 | flex: 1, 187 | alignItems: "center" 188 | }, 189 | playerCounterValue: { 190 | color: "#fff", 191 | fontWeight: "900", 192 | fontSize: 14, 193 | marginTop: 5, 194 | }, 195 | playerAvatar: { 196 | width: 80, 197 | height: 80, 198 | borderRadius: 40, 199 | borderWidth: 2, 200 | borderColor: "#fff", 201 | marginBottom: 10 202 | }, 203 | //Modal 204 | playerImageModal: { 205 | height: screen.height / 3, 206 | resizeMode: "contain" 207 | }, 208 | //playerContent 209 | playerContent: { 210 | padding: 20 211 | } 212 | }); 213 | 214 | module.exports = Player; 215 | -------------------------------------------------------------------------------- /app/ShotList.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var React = require("react-native"); 4 | var { 5 | ActivityIndicatorIOS, 6 | ListView, 7 | StyleSheet, 8 | Text, 9 | TextInput, 10 | View, 11 | } = React; 12 | 13 | var api = require("./helpers/api"); 14 | 15 | var ShotCell = require("./ShotCell"), 16 | ShotDetails = require("./ShotDetails"), 17 | Loading = require("./Loading"); 18 | 19 | // Results should be cached keyed by the query 20 | // with values of null meaning "being fetched" 21 | // and anything besides null and undefined 22 | // as the result of a valid query 23 | var resultsCache = { 24 | dataForQuery: [], 25 | nextPageNumberForQuery: [], 26 | totalForQuery: [], 27 | }; 28 | 29 | var LOADING = {}; 30 | 31 | var ShotList = React.createClass({ 32 | getDefaultProps: function() { 33 | return { 34 | filter: "" 35 | }; 36 | }, 37 | 38 | getInitialState: function() { 39 | return { 40 | isLoading: false, 41 | isLoadingTail: false, 42 | dataSource: new ListView.DataSource({ 43 | rowHasChanged: (row1, row2) => row1 !== row2, 44 | }), 45 | filter: this.props.filter, 46 | queryNumber: 0, 47 | }; 48 | }, 49 | 50 | componentWillMount: function() { 51 | this.getShots(this.state.filter); 52 | }, 53 | 54 | getShots: function(query: string) { 55 | var cachedResultsForQuery = resultsCache.dataForQuery[query]; 56 | if (cachedResultsForQuery) { 57 | if (!LOADING[query]) { 58 | this.setState({ 59 | dataSource: this.getDataSource(cachedResultsForQuery), 60 | isLoading: false 61 | }); 62 | } else { 63 | this.setState({isLoading: true}); 64 | } 65 | return; 66 | } 67 | 68 | LOADING[query] = true; 69 | resultsCache.dataForQuery[query] = null; 70 | this.setState({ 71 | isLoading: true, 72 | queryNumber: this.state.queryNumber + 1, 73 | isLoadingTail: false, 74 | }); 75 | 76 | api.getShotsByType(query, 1) 77 | .catch((error) => { 78 | LOADING[query] = false; 79 | resultsCache.dataForQuery[query] = undefined; 80 | 81 | this.setState({ 82 | dataSource: this.getDataSource([]), 83 | isLoading: false, 84 | }); 85 | }) 86 | .then((responseData) => { 87 | LOADING[query] = false; 88 | resultsCache.dataForQuery[query] = responseData; 89 | resultsCache.nextPageNumberForQuery[query] = 2; 90 | 91 | this.setState({ 92 | isLoading: false, 93 | dataSource: this.getDataSource(responseData), 94 | }); 95 | }) 96 | .done(); 97 | }, 98 | 99 | hasMore: function(): boolean { 100 | var query = this.state.filter; 101 | if (!resultsCache.dataForQuery[query]) { 102 | return true; 103 | } 104 | return ( 105 | resultsCache.totalForQuery[query] !== 106 | resultsCache.dataForQuery[query].length 107 | ); 108 | }, 109 | 110 | onEndReached: function() { 111 | var query = this.state.filter; 112 | if (!this.hasMore() || this.state.isLoadingTail) { 113 | // We"re already fetching or have all the elements so noop 114 | return; 115 | } 116 | 117 | if (LOADING[query]) { 118 | return; 119 | } 120 | 121 | LOADING[query] = true; 122 | this.setState({ 123 | queryNumber: this.state.queryNumber + 1, 124 | isLoadingTail: true, 125 | }); 126 | 127 | var page = resultsCache.nextPageNumberForQuery[query]; 128 | api.getShotsByType(query, page) 129 | .catch((error) => { 130 | LOADING[query] = false; 131 | this.setState({ 132 | isLoadingTail: false, 133 | }); 134 | }) 135 | .then((responseData) => { 136 | var shotsForQuery = resultsCache.dataForQuery[query].slice(); 137 | 138 | LOADING[query] = false; 139 | // We reached the end of the list before the expected number of results 140 | if (!responseData) { 141 | resultsCache.totalForQuery[query] = shotsForQuery.length; 142 | } else { 143 | for (var i in responseData) { 144 | shotsForQuery.push(responseData[i]); 145 | } 146 | resultsCache.dataForQuery[query] = shotsForQuery; 147 | resultsCache.nextPageNumberForQuery[query] += 1; 148 | } 149 | 150 | this.setState({ 151 | isLoadingTail: false, 152 | dataSource: this.getDataSource(resultsCache.dataForQuery[query]), 153 | }); 154 | }) 155 | .done(); 156 | }, 157 | 158 | getDataSource: function(shots: Array): ListView.DataSource { 159 | return this.state.dataSource.cloneWithRows(shots); 160 | }, 161 | 162 | selectShot: function(shot: Object) { 163 | this.props.navigator.push({ 164 | component: ShotDetails, 165 | passProps: {shot}, 166 | title: shot.title 167 | }); 168 | }, 169 | 170 | renderFooter: function() { 171 | return 172 | 173 | ; 174 | }, 175 | 176 | renderRow: function(shot: Object) { 177 | return ( 178 | this.selectShot(shot)} 180 | shot={shot} 181 | /> 182 | ); 183 | }, 184 | 185 | render: function() { 186 | var content = this.state.dataSource.getRowCount() === 0 ? 187 | : 188 | ; 199 | 200 | return ( 201 | 202 | 203 | {content} 204 | 205 | ); 206 | }, 207 | }); 208 | 209 | 210 | var styles = StyleSheet.create({ 211 | container: { 212 | flex: 1, 213 | backgroundColor: "white", 214 | flexDirection: "column", 215 | justifyContent: "center" 216 | }, 217 | separator: { 218 | height: 1, 219 | backgroundColor: "#eeeeee", 220 | }, 221 | scrollSpinner: { 222 | marginVertical: 20, 223 | }, 224 | }); 225 | 226 | module.exports = ShotList; 227 | -------------------------------------------------------------------------------- /app/ShotDetails.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var React = require("react-native"); 4 | var { 5 | Image, 6 | PixelRatio, 7 | ScrollView, 8 | StyleSheet, 9 | Text, 10 | TouchableOpacity, 11 | TouchableHighlight, 12 | ActivityIndicatorIOS, 13 | View, 14 | ListView, 15 | Component, 16 | Dimensions, 17 | Modal 18 | } = React; 19 | 20 | var api = require("./helpers/api"); 21 | 22 | var Icon = require("react-native-vector-icons/FontAwesome"), 23 | getImage = require("./helpers/getImage"), 24 | HTML = require("react-native-htmlview"), 25 | screen = Dimensions.get('window'), 26 | ParallaxView = require("react-native-parallax-view"); 27 | 28 | var Player = require("./Player"); 29 | var CommentItem = require("./CommentItem"); 30 | var Loading = require("./Loading"); 31 | 32 | var ShotDetails = React.createClass({ 33 | getInitialState: function() { 34 | return { 35 | isModalOpen: false, 36 | isLoading: true, 37 | dataSource: new ListView.DataSource({ 38 | rowHasChanged: (row1, row2) => row1 !== row2, 39 | }), 40 | }; 41 | }, 42 | 43 | openModal: function() { 44 | this.setState({ 45 | isModalOpen: true 46 | }); 47 | }, 48 | 49 | closeModal: function() { 50 | this.setState({ 51 | isModalOpen: false 52 | }); 53 | }, 54 | 55 | componentDidMount: function() { 56 | api.getResources(this.props.shot.comments_url).then((responseData) => { 57 | this.setState({ 58 | dataSource: this.state.dataSource.cloneWithRows(responseData), 59 | isLoading: false 60 | }); 61 | }).done(); 62 | }, 63 | 64 | render: function() { 65 | var player = this.props.shot.user; 66 | 67 | return ( 68 | 73 | 74 | 75 | )} 76 | > 77 | 78 | 82 | 83 | 85 | {this.props.shot.title} 86 | by {player.name} 87 | 88 | 89 | 90 | 91 | 92 | 93 | {this.props.shot.likes_count} 94 | 95 | 96 | 97 | {this.props.shot.comments_count} 98 | 99 | 100 | 101 | {this.props.shot.views_count} 102 | 103 | 104 | 105 | 106 | 108 | 109 | 110 | {this.state.dataSource.getRowCount() === 0 ? 111 | : 112 | this._renderCommentsList()} 113 | 114 | 115 | 116 | 118 | 121 | 122 | 123 | ); 124 | }, 125 | 126 | _showModalTransition: function(transition) { 127 | transition("opacity", { 128 | duration: 200, 129 | begin: 0, 130 | end: 1 131 | }); 132 | transition("height", { 133 | duration: 200, 134 | begin: - screen.height * 2, 135 | end: screen.height 136 | }); 137 | }, 138 | 139 | _hideModalTransition: function(transition) { 140 | transition("height", { 141 | duration: 200, 142 | begin: screen.height, 143 | end: screen.height * 2, 144 | reset: true 145 | }); 146 | transition("opacity", { 147 | duration: 200, 148 | begin: 1, 149 | end: 0 150 | }); 151 | }, 152 | 153 | selectPlayer: function(player: Object) { 154 | this.props.navigator.push({ 155 | component: Player, 156 | passProps: {player}, 157 | title: player.name 158 | }); 159 | }, 160 | 161 | _renderCommentsList: function() { 162 | return 163 | 164 | Comments 165 | 166 | 172 | 173 | }, 174 | 175 | renderRow: function(comment: Object) { 176 | return this.selectPlayer(comment.user)} 178 | comment={comment} />; 179 | }, 180 | 181 | _renderLoading: function() { 182 | return ; 184 | } 185 | }); 186 | 187 | var styles = StyleSheet.create({ 188 | spinner: { 189 | marginTop: 20, 190 | width: 50 191 | }, 192 | a: { 193 | fontWeight: "300", 194 | color: "#ea4c89" 195 | }, 196 | p: { 197 | marginBottom: 0, 198 | flexDirection: "row", 199 | marginTop: 0, 200 | }, 201 | invisibleView: { 202 | flex: 1, 203 | position: "absolute", 204 | top: 0, 205 | left: 0, 206 | bottom: 0, 207 | right:0 208 | }, 209 | customModalImage: { 210 | height: screen.height / 2 211 | }, 212 | headerContent: { 213 | flex: 1, 214 | paddingBottom: 20, 215 | paddingTop: 40, 216 | alignItems: "center", 217 | width: screen.width, 218 | backgroundColor: "#fff" 219 | }, 220 | shotTitle: { 221 | fontSize: 16, 222 | fontWeight: "400", 223 | color: "#ea4c89", 224 | lineHeight: 18 225 | }, 226 | playerContent: { 227 | fontSize: 12 228 | }, 229 | player: { 230 | fontWeight: "900", 231 | lineHeight: 18 232 | }, 233 | playerAvatar: { 234 | borderRadius: 40, 235 | width: 80, 236 | height: 80, 237 | position: "absolute", 238 | bottom: 60, 239 | left: screen.width / 2 - 40, 240 | borderWidth: 2, 241 | borderColor: "#fff" 242 | }, 243 | rightPane: { 244 | flex: 1, 245 | flexDirection: "column", 246 | alignItems: "center" 247 | }, 248 | shotDetailsRow: { 249 | flex: 1, 250 | alignItems: "center", 251 | justifyContent: "center", 252 | backgroundColor: "white", 253 | flexDirection: "row" 254 | }, 255 | shotCounter: { 256 | flex: 2, 257 | alignItems: "center", 258 | justifyContent: "space-between" 259 | }, 260 | shotCounterText: { 261 | color: "#333" 262 | }, 263 | mainSection: { 264 | flex: 1, 265 | alignItems: "stretch", 266 | padding: 10, 267 | backgroundColor: "white" 268 | }, 269 | separator: { 270 | backgroundColor: "rgba(0, 0, 0, 0.1)", 271 | height: 1 / PixelRatio.get(), 272 | marginVertical: 10, 273 | }, 274 | sectionSpacing: { 275 | marginTop: 20 276 | }, 277 | heading: { 278 | fontWeight: "700", 279 | fontSize: 16 280 | } 281 | }); 282 | 283 | module.exports = ShotDetails; 284 | -------------------------------------------------------------------------------- /iOS/DribbbleApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* DribbbleAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* DribbbleAppTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 30177A1ECF0DBAE416E098F3 /* BuddyBuildSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AED6F46E21C4B9A40DABA1F4 /* BuddyBuildSDK.framework */; }; 25 | 30B43EB51C04E81300985A33 /* Entypo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EAD1C04E81300985A33 /* Entypo.ttf */; }; 26 | 30B43EB61C04E81300985A33 /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EAE1C04E81300985A33 /* EvilIcons.ttf */; }; 27 | 30B43EB71C04E81300985A33 /* FontAwesome.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EAF1C04E81300985A33 /* FontAwesome.ttf */; }; 28 | 30B43EB81C04E81300985A33 /* Foundation.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EB01C04E81300985A33 /* Foundation.ttf */; }; 29 | 30B43EB91C04E81300985A33 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EB11C04E81300985A33 /* Ionicons.ttf */; }; 30 | 30B43EBA1C04E81300985A33 /* MaterialIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EB21C04E81300985A33 /* MaterialIcons.ttf */; }; 31 | 30B43EBB1C04E81300985A33 /* Octicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EB31C04E81300985A33 /* Octicons.ttf */; }; 32 | 30B43EBC1C04E81300985A33 /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 30B43EB41C04E81300985A33 /* Zocial.ttf */; }; 33 | 30B43ECD1C04E8D300985A33 /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 30B43ECC1C04E8B000985A33 /* libRNVectorIcons.a */; }; 34 | 6D292483E5346B27A74E2E34 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BF0CF7429913E1A235D27C99 /* SystemConfiguration.framework */; }; 35 | 730166C1074210D0123B28CA /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C502B03FBD6CCFC09870C695 /* AssetsLibrary.framework */; }; 36 | 786024645FC915237655B50C /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C1407C99C4CFBEFDA33996EC /* CoreTelephony.framework */; }; 37 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 38 | AE27BAF0A74AA5DF8387E1C6 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D9138313B6C3B7416BE37F7A /* CoreText.framework */; }; 39 | /* End PBXBuildFile section */ 40 | 41 | /* Begin PBXContainerItemProxy section */ 42 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 43 | isa = PBXContainerItemProxy; 44 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 45 | proxyType = 2; 46 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 47 | remoteInfo = RCTActionSheet; 48 | }; 49 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 50 | isa = PBXContainerItemProxy; 51 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 52 | proxyType = 2; 53 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 54 | remoteInfo = RCTGeolocation; 55 | }; 56 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 57 | isa = PBXContainerItemProxy; 58 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 59 | proxyType = 2; 60 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 61 | remoteInfo = RCTImage; 62 | }; 63 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 64 | isa = PBXContainerItemProxy; 65 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 66 | proxyType = 2; 67 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 68 | remoteInfo = RCTNetwork; 69 | }; 70 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 71 | isa = PBXContainerItemProxy; 72 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 73 | proxyType = 2; 74 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 75 | remoteInfo = RCTVibration; 76 | }; 77 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 78 | isa = PBXContainerItemProxy; 79 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 80 | proxyType = 1; 81 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 82 | remoteInfo = DribbbleApp; 83 | }; 84 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 85 | isa = PBXContainerItemProxy; 86 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 87 | proxyType = 2; 88 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 89 | remoteInfo = RCTSettings; 90 | }; 91 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 92 | isa = PBXContainerItemProxy; 93 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 94 | proxyType = 2; 95 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 96 | remoteInfo = RCTWebSocket; 97 | }; 98 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 99 | isa = PBXContainerItemProxy; 100 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 101 | proxyType = 2; 102 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 103 | remoteInfo = React; 104 | }; 105 | 30B43ECB1C04E8B000985A33 /* PBXContainerItemProxy */ = { 106 | isa = PBXContainerItemProxy; 107 | containerPortal = 30B43EC71C04E8B000985A33 /* RNVectorIcons.xcodeproj */; 108 | proxyType = 2; 109 | remoteGlobalIDString = 5DBEB1501B18CEA900B34395; 110 | remoteInfo = RNVectorIcons; 111 | }; 112 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 113 | isa = PBXContainerItemProxy; 114 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 115 | proxyType = 2; 116 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 117 | remoteInfo = RCTLinking; 118 | }; 119 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 120 | isa = PBXContainerItemProxy; 121 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 122 | proxyType = 2; 123 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 124 | remoteInfo = RCTText; 125 | }; 126 | /* End PBXContainerItemProxy section */ 127 | 128 | /* Begin PBXFileReference section */ 129 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 130 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 131 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 132 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 133 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 134 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 135 | 00E356EE1AD99517003FC87E /* DribbbleAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DribbbleAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 136 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 137 | 00E356F21AD99517003FC87E /* DribbbleAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DribbbleAppTests.m; sourceTree = ""; }; 138 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 139 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 140 | 13B07F961A680F5B00A75B9A /* DribbbleApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DribbbleApp.app; sourceTree = BUILT_PRODUCTS_DIR; }; 141 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = DribbbleApp/AppDelegate.h; sourceTree = ""; }; 142 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = DribbbleApp/AppDelegate.m; sourceTree = ""; }; 143 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 144 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DribbbleApp/Images.xcassets; sourceTree = ""; }; 145 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = DribbbleApp/Info.plist; sourceTree = ""; }; 146 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = DribbbleApp/main.m; sourceTree = ""; }; 147 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 148 | 30B43EAD1C04E81300985A33 /* Entypo.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Entypo.ttf; sourceTree = ""; }; 149 | 30B43EAE1C04E81300985A33 /* EvilIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = EvilIcons.ttf; sourceTree = ""; }; 150 | 30B43EAF1C04E81300985A33 /* FontAwesome.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = FontAwesome.ttf; sourceTree = ""; }; 151 | 30B43EB01C04E81300985A33 /* Foundation.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Foundation.ttf; sourceTree = ""; }; 152 | 30B43EB11C04E81300985A33 /* Ionicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ionicons.ttf; sourceTree = ""; }; 153 | 30B43EB21C04E81300985A33 /* MaterialIcons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = MaterialIcons.ttf; sourceTree = ""; }; 154 | 30B43EB31C04E81300985A33 /* Octicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Octicons.ttf; sourceTree = ""; }; 155 | 30B43EB41C04E81300985A33 /* Zocial.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Zocial.ttf; sourceTree = ""; }; 156 | 30B43EC71C04E8B000985A33 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 157 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 158 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 159 | AED6F46E21C4B9A40DABA1F4 /* BuddyBuildSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = BuddyBuildSDK.framework; sourceTree = ""; }; 160 | BF0CF7429913E1A235D27C99 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; 161 | C1407C99C4CFBEFDA33996EC /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; 162 | C502B03FBD6CCFC09870C695 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; }; 163 | D9138313B6C3B7416BE37F7A /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; }; 164 | /* End PBXFileReference section */ 165 | 166 | /* Begin PBXFrameworksBuildPhase section */ 167 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 168 | isa = PBXFrameworksBuildPhase; 169 | buildActionMask = 2147483647; 170 | files = ( 171 | ); 172 | runOnlyForDeploymentPostprocessing = 0; 173 | }; 174 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 175 | isa = PBXFrameworksBuildPhase; 176 | buildActionMask = 2147483647; 177 | files = ( 178 | 30B43ECD1C04E8D300985A33 /* libRNVectorIcons.a in Frameworks */, 179 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 180 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 181 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 182 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 183 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 184 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 185 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 186 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 187 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 188 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 189 | 30177A1ECF0DBAE416E098F3 /* BuddyBuildSDK.framework in Frameworks */, 190 | 730166C1074210D0123B28CA /* AssetsLibrary.framework in Frameworks */, 191 | AE27BAF0A74AA5DF8387E1C6 /* CoreText.framework in Frameworks */, 192 | 786024645FC915237655B50C /* CoreTelephony.framework in Frameworks */, 193 | 6D292483E5346B27A74E2E34 /* SystemConfiguration.framework in Frameworks */, 194 | ); 195 | runOnlyForDeploymentPostprocessing = 0; 196 | }; 197 | /* End PBXFrameworksBuildPhase section */ 198 | 199 | /* Begin PBXGroup section */ 200 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 201 | isa = PBXGroup; 202 | children = ( 203 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 204 | ); 205 | name = Products; 206 | sourceTree = ""; 207 | }; 208 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 209 | isa = PBXGroup; 210 | children = ( 211 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 212 | ); 213 | name = Products; 214 | sourceTree = ""; 215 | }; 216 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 217 | isa = PBXGroup; 218 | children = ( 219 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 220 | ); 221 | name = Products; 222 | sourceTree = ""; 223 | }; 224 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 225 | isa = PBXGroup; 226 | children = ( 227 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 228 | ); 229 | name = Products; 230 | sourceTree = ""; 231 | }; 232 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 233 | isa = PBXGroup; 234 | children = ( 235 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 236 | ); 237 | name = Products; 238 | sourceTree = ""; 239 | }; 240 | 00E356EF1AD99517003FC87E /* DribbbleAppTests */ = { 241 | isa = PBXGroup; 242 | children = ( 243 | 00E356F21AD99517003FC87E /* DribbbleAppTests.m */, 244 | 00E356F01AD99517003FC87E /* Supporting Files */, 245 | ); 246 | path = DribbbleAppTests; 247 | sourceTree = ""; 248 | }; 249 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 250 | isa = PBXGroup; 251 | children = ( 252 | 00E356F11AD99517003FC87E /* Info.plist */, 253 | ); 254 | name = "Supporting Files"; 255 | sourceTree = ""; 256 | }; 257 | 139105B71AF99BAD00B5F7CC /* Products */ = { 258 | isa = PBXGroup; 259 | children = ( 260 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 261 | ); 262 | name = Products; 263 | sourceTree = ""; 264 | }; 265 | 139FDEE71B06529A00C62182 /* Products */ = { 266 | isa = PBXGroup; 267 | children = ( 268 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 269 | ); 270 | name = Products; 271 | sourceTree = ""; 272 | }; 273 | 13B07FAE1A68108700A75B9A /* DribbbleApp */ = { 274 | isa = PBXGroup; 275 | children = ( 276 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 277 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 278 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 279 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 280 | 13B07FB61A68108700A75B9A /* Info.plist */, 281 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 282 | 13B07FB71A68108700A75B9A /* main.m */, 283 | ); 284 | name = DribbbleApp; 285 | sourceTree = ""; 286 | }; 287 | 146834001AC3E56700842450 /* Products */ = { 288 | isa = PBXGroup; 289 | children = ( 290 | 146834041AC3E56700842450 /* libReact.a */, 291 | ); 292 | name = Products; 293 | sourceTree = ""; 294 | }; 295 | 30B43EAC1C04E81300985A33 /* Fonts */ = { 296 | isa = PBXGroup; 297 | children = ( 298 | 30B43EAD1C04E81300985A33 /* Entypo.ttf */, 299 | 30B43EAE1C04E81300985A33 /* EvilIcons.ttf */, 300 | 30B43EAF1C04E81300985A33 /* FontAwesome.ttf */, 301 | 30B43EB01C04E81300985A33 /* Foundation.ttf */, 302 | 30B43EB11C04E81300985A33 /* Ionicons.ttf */, 303 | 30B43EB21C04E81300985A33 /* MaterialIcons.ttf */, 304 | 30B43EB31C04E81300985A33 /* Octicons.ttf */, 305 | 30B43EB41C04E81300985A33 /* Zocial.ttf */, 306 | ); 307 | path = Fonts; 308 | sourceTree = ""; 309 | }; 310 | 30B43EC81C04E8B000985A33 /* Products */ = { 311 | isa = PBXGroup; 312 | children = ( 313 | 30B43ECC1C04E8B000985A33 /* libRNVectorIcons.a */, 314 | ); 315 | name = Products; 316 | sourceTree = ""; 317 | }; 318 | 7555EACED3C4735694CF3AE5 /* Frameworks */ = { 319 | isa = PBXGroup; 320 | children = ( 321 | AED6F46E21C4B9A40DABA1F4 /* BuddyBuildSDK.framework */, 322 | C502B03FBD6CCFC09870C695 /* AssetsLibrary.framework */, 323 | D9138313B6C3B7416BE37F7A /* CoreText.framework */, 324 | C1407C99C4CFBEFDA33996EC /* CoreTelephony.framework */, 325 | BF0CF7429913E1A235D27C99 /* SystemConfiguration.framework */, 326 | ); 327 | name = Frameworks; 328 | sourceTree = ""; 329 | }; 330 | 78C398B11ACF4ADC00677621 /* Products */ = { 331 | isa = PBXGroup; 332 | children = ( 333 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 334 | ); 335 | name = Products; 336 | sourceTree = ""; 337 | }; 338 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 339 | isa = PBXGroup; 340 | children = ( 341 | 30B43EC71C04E8B000985A33 /* RNVectorIcons.xcodeproj */, 342 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 343 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 344 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 345 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 346 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 347 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 348 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 349 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 350 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 351 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 352 | ); 353 | name = Libraries; 354 | sourceTree = ""; 355 | }; 356 | 832341B11AAA6A8300B99B32 /* Products */ = { 357 | isa = PBXGroup; 358 | children = ( 359 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 360 | ); 361 | name = Products; 362 | sourceTree = ""; 363 | }; 364 | 83CBB9F61A601CBA00E9B192 = { 365 | isa = PBXGroup; 366 | children = ( 367 | 30B43EAC1C04E81300985A33 /* Fonts */, 368 | 13B07FAE1A68108700A75B9A /* DribbbleApp */, 369 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 370 | 00E356EF1AD99517003FC87E /* DribbbleAppTests */, 371 | 83CBBA001A601CBA00E9B192 /* Products */, 372 | 7555EACED3C4735694CF3AE5 /* Frameworks */, 373 | ); 374 | indentWidth = 2; 375 | sourceTree = ""; 376 | tabWidth = 2; 377 | }; 378 | 83CBBA001A601CBA00E9B192 /* Products */ = { 379 | isa = PBXGroup; 380 | children = ( 381 | 13B07F961A680F5B00A75B9A /* DribbbleApp.app */, 382 | 00E356EE1AD99517003FC87E /* DribbbleAppTests.xctest */, 383 | ); 384 | name = Products; 385 | sourceTree = ""; 386 | }; 387 | /* End PBXGroup section */ 388 | 389 | /* Begin PBXNativeTarget section */ 390 | 00E356ED1AD99517003FC87E /* DribbbleAppTests */ = { 391 | isa = PBXNativeTarget; 392 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DribbbleAppTests" */; 393 | buildPhases = ( 394 | 00E356EA1AD99517003FC87E /* Sources */, 395 | 00E356EB1AD99517003FC87E /* Frameworks */, 396 | 00E356EC1AD99517003FC87E /* Resources */, 397 | ); 398 | buildRules = ( 399 | ); 400 | dependencies = ( 401 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 402 | ); 403 | name = DribbbleAppTests; 404 | productName = DribbbleAppTests; 405 | productReference = 00E356EE1AD99517003FC87E /* DribbbleAppTests.xctest */; 406 | productType = "com.apple.product-type.bundle.unit-test"; 407 | }; 408 | 13B07F861A680F5B00A75B9A /* DribbbleApp */ = { 409 | isa = PBXNativeTarget; 410 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DribbbleApp" */; 411 | buildPhases = ( 412 | 13B07F871A680F5B00A75B9A /* Sources */, 413 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 414 | 13B07F8E1A680F5B00A75B9A /* Resources */, 415 | ); 416 | buildRules = ( 417 | ); 418 | dependencies = ( 419 | ); 420 | name = DribbbleApp; 421 | productName = "Hello World"; 422 | productReference = 13B07F961A680F5B00A75B9A /* DribbbleApp.app */; 423 | productType = "com.apple.product-type.application"; 424 | }; 425 | /* End PBXNativeTarget section */ 426 | 427 | /* Begin PBXProject section */ 428 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 429 | isa = PBXProject; 430 | attributes = { 431 | LastUpgradeCheck = 0710; 432 | ORGANIZATIONNAME = Facebook; 433 | TargetAttributes = { 434 | 00E356ED1AD99517003FC87E = { 435 | CreatedOnToolsVersion = 6.2; 436 | TestTargetID = 13B07F861A680F5B00A75B9A; 437 | }; 438 | }; 439 | }; 440 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DribbbleApp" */; 441 | compatibilityVersion = "Xcode 3.2"; 442 | developmentRegion = English; 443 | hasScannedForEncodings = 0; 444 | knownRegions = ( 445 | en, 446 | Base, 447 | ); 448 | mainGroup = 83CBB9F61A601CBA00E9B192; 449 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 450 | projectDirPath = ""; 451 | projectReferences = ( 452 | { 453 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 454 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 455 | }, 456 | { 457 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 458 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 459 | }, 460 | { 461 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 462 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 463 | }, 464 | { 465 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 466 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 467 | }, 468 | { 469 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 470 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 471 | }, 472 | { 473 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 474 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 475 | }, 476 | { 477 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 478 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 479 | }, 480 | { 481 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 482 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 483 | }, 484 | { 485 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 486 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 487 | }, 488 | { 489 | ProductGroup = 146834001AC3E56700842450 /* Products */; 490 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 491 | }, 492 | { 493 | ProductGroup = 30B43EC81C04E8B000985A33 /* Products */; 494 | ProjectRef = 30B43EC71C04E8B000985A33 /* RNVectorIcons.xcodeproj */; 495 | }, 496 | ); 497 | projectRoot = ""; 498 | targets = ( 499 | 13B07F861A680F5B00A75B9A /* DribbbleApp */, 500 | 00E356ED1AD99517003FC87E /* DribbbleAppTests */, 501 | ); 502 | }; 503 | /* End PBXProject section */ 504 | 505 | /* Begin PBXReferenceProxy section */ 506 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 507 | isa = PBXReferenceProxy; 508 | fileType = archive.ar; 509 | path = libRCTActionSheet.a; 510 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 511 | sourceTree = BUILT_PRODUCTS_DIR; 512 | }; 513 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 514 | isa = PBXReferenceProxy; 515 | fileType = archive.ar; 516 | path = libRCTGeolocation.a; 517 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 518 | sourceTree = BUILT_PRODUCTS_DIR; 519 | }; 520 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 521 | isa = PBXReferenceProxy; 522 | fileType = archive.ar; 523 | path = libRCTImage.a; 524 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 525 | sourceTree = BUILT_PRODUCTS_DIR; 526 | }; 527 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 528 | isa = PBXReferenceProxy; 529 | fileType = archive.ar; 530 | path = libRCTNetwork.a; 531 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 532 | sourceTree = BUILT_PRODUCTS_DIR; 533 | }; 534 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 535 | isa = PBXReferenceProxy; 536 | fileType = archive.ar; 537 | path = libRCTVibration.a; 538 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 539 | sourceTree = BUILT_PRODUCTS_DIR; 540 | }; 541 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 542 | isa = PBXReferenceProxy; 543 | fileType = archive.ar; 544 | path = libRCTSettings.a; 545 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 546 | sourceTree = BUILT_PRODUCTS_DIR; 547 | }; 548 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 549 | isa = PBXReferenceProxy; 550 | fileType = archive.ar; 551 | path = libRCTWebSocket.a; 552 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 553 | sourceTree = BUILT_PRODUCTS_DIR; 554 | }; 555 | 146834041AC3E56700842450 /* libReact.a */ = { 556 | isa = PBXReferenceProxy; 557 | fileType = archive.ar; 558 | path = libReact.a; 559 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 560 | sourceTree = BUILT_PRODUCTS_DIR; 561 | }; 562 | 30B43ECC1C04E8B000985A33 /* libRNVectorIcons.a */ = { 563 | isa = PBXReferenceProxy; 564 | fileType = archive.ar; 565 | path = libRNVectorIcons.a; 566 | remoteRef = 30B43ECB1C04E8B000985A33 /* PBXContainerItemProxy */; 567 | sourceTree = BUILT_PRODUCTS_DIR; 568 | }; 569 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 570 | isa = PBXReferenceProxy; 571 | fileType = archive.ar; 572 | path = libRCTLinking.a; 573 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 574 | sourceTree = BUILT_PRODUCTS_DIR; 575 | }; 576 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 577 | isa = PBXReferenceProxy; 578 | fileType = archive.ar; 579 | path = libRCTText.a; 580 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 581 | sourceTree = BUILT_PRODUCTS_DIR; 582 | }; 583 | /* End PBXReferenceProxy section */ 584 | 585 | /* Begin PBXResourcesBuildPhase section */ 586 | 00E356EC1AD99517003FC87E /* Resources */ = { 587 | isa = PBXResourcesBuildPhase; 588 | buildActionMask = 2147483647; 589 | files = ( 590 | ); 591 | runOnlyForDeploymentPostprocessing = 0; 592 | }; 593 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 594 | isa = PBXResourcesBuildPhase; 595 | buildActionMask = 2147483647; 596 | files = ( 597 | 30B43EBA1C04E81300985A33 /* MaterialIcons.ttf in Resources */, 598 | 30B43EBB1C04E81300985A33 /* Octicons.ttf in Resources */, 599 | 30B43EBC1C04E81300985A33 /* Zocial.ttf in Resources */, 600 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 601 | 30B43EB71C04E81300985A33 /* FontAwesome.ttf in Resources */, 602 | 30B43EB61C04E81300985A33 /* EvilIcons.ttf in Resources */, 603 | 30B43EB91C04E81300985A33 /* Ionicons.ttf in Resources */, 604 | 30B43EB81C04E81300985A33 /* Foundation.ttf in Resources */, 605 | 30B43EB51C04E81300985A33 /* Entypo.ttf in Resources */, 606 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 607 | ); 608 | runOnlyForDeploymentPostprocessing = 0; 609 | }; 610 | /* End PBXResourcesBuildPhase section */ 611 | 612 | /* Begin PBXSourcesBuildPhase section */ 613 | 00E356EA1AD99517003FC87E /* Sources */ = { 614 | isa = PBXSourcesBuildPhase; 615 | buildActionMask = 2147483647; 616 | files = ( 617 | 00E356F31AD99517003FC87E /* DribbbleAppTests.m in Sources */, 618 | ); 619 | runOnlyForDeploymentPostprocessing = 0; 620 | }; 621 | 13B07F871A680F5B00A75B9A /* Sources */ = { 622 | isa = PBXSourcesBuildPhase; 623 | buildActionMask = 2147483647; 624 | files = ( 625 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 626 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 627 | ); 628 | runOnlyForDeploymentPostprocessing = 0; 629 | }; 630 | /* End PBXSourcesBuildPhase section */ 631 | 632 | /* Begin PBXTargetDependency section */ 633 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 634 | isa = PBXTargetDependency; 635 | target = 13B07F861A680F5B00A75B9A /* DribbbleApp */; 636 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 637 | }; 638 | /* End PBXTargetDependency section */ 639 | 640 | /* Begin PBXVariantGroup section */ 641 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 642 | isa = PBXVariantGroup; 643 | children = ( 644 | 13B07FB21A68108700A75B9A /* Base */, 645 | ); 646 | name = LaunchScreen.xib; 647 | path = DribbbleApp; 648 | sourceTree = ""; 649 | }; 650 | /* End PBXVariantGroup section */ 651 | 652 | /* Begin XCBuildConfiguration section */ 653 | 00E356F61AD99517003FC87E /* Debug */ = { 654 | isa = XCBuildConfiguration; 655 | buildSettings = { 656 | BUNDLE_LOADER = "$(TEST_HOST)"; 657 | FRAMEWORK_SEARCH_PATHS = ( 658 | "$(SDKROOT)/Developer/Library/Frameworks", 659 | "$(inherited)", 660 | ); 661 | GCC_PREPROCESSOR_DEFINITIONS = ( 662 | "DEBUG=1", 663 | "$(inherited)", 664 | ); 665 | INFOPLIST_FILE = DribbbleAppTests/Info.plist; 666 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 667 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 668 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 669 | PRODUCT_NAME = "$(TARGET_NAME)"; 670 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DribbbleApp.app/DribbbleApp"; 671 | }; 672 | name = Debug; 673 | }; 674 | 00E356F71AD99517003FC87E /* Release */ = { 675 | isa = XCBuildConfiguration; 676 | buildSettings = { 677 | BUNDLE_LOADER = "$(TEST_HOST)"; 678 | COPY_PHASE_STRIP = NO; 679 | FRAMEWORK_SEARCH_PATHS = ( 680 | "$(SDKROOT)/Developer/Library/Frameworks", 681 | "$(inherited)", 682 | ); 683 | INFOPLIST_FILE = DribbbleAppTests/Info.plist; 684 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 685 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 686 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 687 | PRODUCT_NAME = "$(TARGET_NAME)"; 688 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DribbbleApp.app/DribbbleApp"; 689 | }; 690 | name = Release; 691 | }; 692 | 13B07F941A680F5B00A75B9A /* Debug */ = { 693 | isa = XCBuildConfiguration; 694 | buildSettings = { 695 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 696 | DEAD_CODE_STRIPPING = NO; 697 | FRAMEWORK_SEARCH_PATHS = ( 698 | "$(inherited)", 699 | "$(PROJECT_DIR)", 700 | ); 701 | HEADER_SEARCH_PATHS = ( 702 | "$(inherited)", 703 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 704 | "$(SRCROOT)/../node_modules/react-native/React/**", 705 | ); 706 | INFOPLIST_FILE = DribbbleApp/Info.plist; 707 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 708 | OTHER_LDFLAGS = "-ObjC"; 709 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 710 | PRODUCT_NAME = DribbbleApp; 711 | }; 712 | name = Debug; 713 | }; 714 | 13B07F951A680F5B00A75B9A /* Release */ = { 715 | isa = XCBuildConfiguration; 716 | buildSettings = { 717 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 718 | FRAMEWORK_SEARCH_PATHS = ( 719 | "$(inherited)", 720 | "$(PROJECT_DIR)", 721 | ); 722 | HEADER_SEARCH_PATHS = ( 723 | "$(inherited)", 724 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 725 | "$(SRCROOT)/../node_modules/react-native/React/**", 726 | ); 727 | INFOPLIST_FILE = DribbbleApp/Info.plist; 728 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 729 | OTHER_LDFLAGS = "-ObjC"; 730 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 731 | PRODUCT_NAME = DribbbleApp; 732 | }; 733 | name = Release; 734 | }; 735 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 736 | isa = XCBuildConfiguration; 737 | buildSettings = { 738 | ALWAYS_SEARCH_USER_PATHS = NO; 739 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 740 | CLANG_CXX_LIBRARY = "libc++"; 741 | CLANG_ENABLE_MODULES = YES; 742 | CLANG_ENABLE_OBJC_ARC = YES; 743 | CLANG_WARN_BOOL_CONVERSION = YES; 744 | CLANG_WARN_CONSTANT_CONVERSION = YES; 745 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 746 | CLANG_WARN_EMPTY_BODY = YES; 747 | CLANG_WARN_ENUM_CONVERSION = YES; 748 | CLANG_WARN_INT_CONVERSION = YES; 749 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 750 | CLANG_WARN_UNREACHABLE_CODE = YES; 751 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 752 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 753 | COPY_PHASE_STRIP = NO; 754 | ENABLE_STRICT_OBJC_MSGSEND = YES; 755 | ENABLE_TESTABILITY = YES; 756 | GCC_C_LANGUAGE_STANDARD = gnu99; 757 | GCC_DYNAMIC_NO_PIC = NO; 758 | GCC_OPTIMIZATION_LEVEL = 0; 759 | GCC_PREPROCESSOR_DEFINITIONS = ( 760 | "DEBUG=1", 761 | "$(inherited)", 762 | ); 763 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 764 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 765 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 766 | GCC_WARN_UNDECLARED_SELECTOR = YES; 767 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 768 | GCC_WARN_UNUSED_FUNCTION = YES; 769 | GCC_WARN_UNUSED_VARIABLE = YES; 770 | HEADER_SEARCH_PATHS = ( 771 | "$(inherited)", 772 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 773 | "$(SRCROOT)/../node_modules/react-native/React/**", 774 | ); 775 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 776 | MTL_ENABLE_DEBUG_INFO = YES; 777 | ONLY_ACTIVE_ARCH = YES; 778 | SDKROOT = iphoneos; 779 | }; 780 | name = Debug; 781 | }; 782 | 83CBBA211A601CBA00E9B192 /* Release */ = { 783 | isa = XCBuildConfiguration; 784 | buildSettings = { 785 | ALWAYS_SEARCH_USER_PATHS = NO; 786 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 787 | CLANG_CXX_LIBRARY = "libc++"; 788 | CLANG_ENABLE_MODULES = YES; 789 | CLANG_ENABLE_OBJC_ARC = YES; 790 | CLANG_WARN_BOOL_CONVERSION = YES; 791 | CLANG_WARN_CONSTANT_CONVERSION = YES; 792 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 793 | CLANG_WARN_EMPTY_BODY = YES; 794 | CLANG_WARN_ENUM_CONVERSION = YES; 795 | CLANG_WARN_INT_CONVERSION = YES; 796 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 797 | CLANG_WARN_UNREACHABLE_CODE = YES; 798 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 799 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 800 | COPY_PHASE_STRIP = YES; 801 | ENABLE_NS_ASSERTIONS = NO; 802 | ENABLE_STRICT_OBJC_MSGSEND = YES; 803 | GCC_C_LANGUAGE_STANDARD = gnu99; 804 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 805 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 806 | GCC_WARN_UNDECLARED_SELECTOR = YES; 807 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 808 | GCC_WARN_UNUSED_FUNCTION = YES; 809 | GCC_WARN_UNUSED_VARIABLE = YES; 810 | HEADER_SEARCH_PATHS = ( 811 | "$(inherited)", 812 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 813 | "$(SRCROOT)/../node_modules/react-native/React/**", 814 | ); 815 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 816 | MTL_ENABLE_DEBUG_INFO = NO; 817 | SDKROOT = iphoneos; 818 | VALIDATE_PRODUCT = YES; 819 | }; 820 | name = Release; 821 | }; 822 | /* End XCBuildConfiguration section */ 823 | 824 | /* Begin XCConfigurationList section */ 825 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "DribbbleAppTests" */ = { 826 | isa = XCConfigurationList; 827 | buildConfigurations = ( 828 | 00E356F61AD99517003FC87E /* Debug */, 829 | 00E356F71AD99517003FC87E /* Release */, 830 | ); 831 | defaultConfigurationIsVisible = 0; 832 | defaultConfigurationName = Release; 833 | }; 834 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DribbbleApp" */ = { 835 | isa = XCConfigurationList; 836 | buildConfigurations = ( 837 | 13B07F941A680F5B00A75B9A /* Debug */, 838 | 13B07F951A680F5B00A75B9A /* Release */, 839 | ); 840 | defaultConfigurationIsVisible = 0; 841 | defaultConfigurationName = Release; 842 | }; 843 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DribbbleApp" */ = { 844 | isa = XCConfigurationList; 845 | buildConfigurations = ( 846 | 83CBBA201A601CBA00E9B192 /* Debug */, 847 | 83CBBA211A601CBA00E9B192 /* Release */, 848 | ); 849 | defaultConfigurationIsVisible = 0; 850 | defaultConfigurationName = Release; 851 | }; 852 | /* End XCConfigurationList section */ 853 | }; 854 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 855 | } 856 | --------------------------------------------------------------------------------