├── .gitingnore ├── .watchmanconfig ├── src ├── Api │ ├── private.api.js │ └── public.api.js ├── Scene │ ├── Ether-Sent-Success-Scene │ │ └── etherSentSuccess.scene.js │ ├── index.js │ ├── Show-QR-Scene │ │ └── showQR.scene.js │ ├── Create-Wallet-Inport-Create-Scene │ │ └── createWalletInportCreate.scene.js │ ├── Scan-QR-Scene │ │ └── scanQR.scene.js │ ├── Ether-Amount-Scene │ │ └── enterAmount.scene.js │ ├── Create-Wallet-Name-Input-Scene │ │ └── createWalletNameInput.scene.js │ ├── Home-Scene │ │ └── home.scene.js │ └── Create-Wallet-Passphrase-Display-Scene │ │ └── createWalletPassphraseDisplay.scene.js ├── assets │ └── wallet.png ├── Constants │ ├── api.constants.js │ ├── global.constants.js │ ├── color.constants.js │ └── scene.constants.js ├── Utils │ ├── dimensions.utils.js │ ├── persist.utils.js │ ├── transactions.utils.js │ └── wallet.utils.js ├── Components │ ├── QRScanner │ │ └── qrScanner.component.js │ └── Wallet-Card │ │ └── walletCard.component.js ├── Common │ └── style.common.js └── Navigation │ └── index.navigation.js ├── .gitattributes ├── .babelrc ├── app.json ├── android ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ └── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── etherwallet │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── AndroidManifest.xml │ ├── BUCK │ ├── proguard-rules.pro │ └── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── keystores │ ├── debug.keystore.properties │ └── BUCK ├── settings.gradle ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── ios ├── EtherWallet │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.h │ ├── main.m │ ├── AppDelegate.m │ ├── Info.plist │ └── Base.lproj │ │ └── LaunchScreen.xib ├── EtherWalletTests │ ├── Info.plist │ └── EtherWalletTests.m ├── EtherWallet-tvOSTests │ └── Info.plist ├── EtherWallet-tvOS │ └── Info.plist └── EtherWallet.xcodeproj │ ├── xcshareddata │ └── xcschemes │ │ ├── EtherWallet.xcscheme │ │ └── EtherWallet-tvOS.xcscheme │ └── project.pbxproj ├── .buckconfig ├── index.js ├── package.json ├── .gitignore └── .flowconfig /.gitingnore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Api/private.api.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Api/public.api.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /src/Scene/Ether-Sent-Success-Scene/etherSentSuccess.scene.js: -------------------------------------------------------------------------------- 1 | er -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EtherWallet", 3 | "displayName": "EtherWallet" 4 | } -------------------------------------------------------------------------------- /src/Scene/index.js: -------------------------------------------------------------------------------- 1 | import HomeScene from './Home-Scene/home.scene'; 2 | 3 | export default { 4 | HomeScene 5 | }; -------------------------------------------------------------------------------- /src/assets/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbat-io/ethereum-light-wallet-android/HEAD/src/assets/wallet.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | EtherWallet 3 | 4 | -------------------------------------------------------------------------------- /ios/EtherWallet/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbat-io/ethereum-light-wallet-android/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /src/Constants/api.constants.js: -------------------------------------------------------------------------------- 1 | const ETHER_PRICE_CONVERTER = ''; 2 | const CURRENT_ETHER_PRICE = ''; 3 | 4 | export default { ETHER_PRICE_CONVERTER, CURRENT_ETHER_PRICE }; -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbat-io/ethereum-light-wallet-android/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbat-io/ethereum-light-wallet-android/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbat-io/ethereum-light-wallet-android/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitbat-io/ethereum-light-wallet-android/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import { AppRegistry } from 'react-native'; 2 | import Root from './src/Navigation/index.navigation'; 3 | 4 | AppRegistry.registerComponent('EtherWallet', () => Root); 5 | -------------------------------------------------------------------------------- /src/Constants/global.constants.js: -------------------------------------------------------------------------------- 1 | export const TEST_RPC_SERVER = 'http://13.84.204.30:8545'; 2 | 3 | export const DEFAULT_GASLIMIT = 21000; 4 | export const DEFAULT_GASPRICE = 4000000000; -------------------------------------------------------------------------------- /src/Constants/color.constants.js: -------------------------------------------------------------------------------- 1 | export const PRIMARY = '#9013FE'; 2 | export const TEXT_COLOR = '#FFFFFF'; 3 | export const LIGHT_GREY = '#D8D8D8'; 4 | export const DARK_GREY = '#453838'; 5 | -------------------------------------------------------------------------------- /src/Utils/dimensions.utils.js: -------------------------------------------------------------------------------- 1 | import { Dimensions } from 'react-native'; 2 | 3 | export const WIDTH = Dimensions.get('screen').width; 4 | export const HEIGHT = Dimensions.get('screen').height; -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = "debug", 3 | properties = "debug.keystore.properties", 4 | store = "debug.keystore", 5 | visibility = [ 6 | "PUBLIC", 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Apr 28 14:01:05 IST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /ios/EtherWallet/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | @interface AppDelegate : UIResponder 11 | 12 | @property (nonatomic, strong) UIWindow *window; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'EtherWallet' 2 | include ':react-native-camera' 3 | project(':react-native-camera').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-camera/android') 4 | include ':react-native-sensitive-info' 5 | project(':react-native-sensitive-info').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sensitive-info/android') 6 | 7 | include ':app' 8 | -------------------------------------------------------------------------------- /ios/EtherWallet/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/etherwallet/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.etherwallet; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "EtherWallet"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Constants/scene.constants.js: -------------------------------------------------------------------------------- 1 | export const HOME_SCENE = 'HOME_SCENE'; 2 | export const SCAN_QR_SCENE = 'SCAN_QR_SCENE'; 3 | export const SHOW_QR_SCENE = 'SHOW_QR_SCENE'; 4 | // export const ETHER_SENT_SUCCESSFULLY_SCENE = 'ETHER_SENT_SUCCESSFULLY_SCENE'; 5 | export const ETHER_AMOUNT_SCENE = 'ETHER_AMOUNT_SCENE'; 6 | // export const CREATE_WALLET_PASSPHRASE_SCENE = 'CREATE_WALLET_PASSPHRASE_SCENE'; 7 | export const CREATE_WALLET_NAME_INPUT_SCENE = 'CREATE_WALLET_NAME_INPUT_SCENE'; 8 | export const CREATE_WALLET_CREATE_INPORT_WALLET_SCENE = 'CREATE_WALLET_CREATE_INPORT_WALLET_SCENE'; 9 | export const CREATE_WALLET_DISPLAY_PASSPHRASE = 'CREATE_WALLET_DISPLAY_PASSPHRASE'; 10 | // export const CREATE_WALLET_INPUT_PRIVATE_KET_SCENE = 'CREATE_WALLET_INPUT_PRIVATE_KET_SCENE'; 11 | -------------------------------------------------------------------------------- /ios/EtherWallet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /ios/EtherWalletTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /ios/EtherWallet-tvOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | google() 7 | } 8 | dependencies { 9 | classpath 'com.android.tools.build:gradle:3.0.0' 10 | 11 | // NOTE: Do not place your application dependencies here; they belong 12 | // in the individual module build.gradle files 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | mavenLocal() 19 | jcenter() 20 | maven { url "https://maven.google.com" } 21 | maven { 22 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 23 | url "$rootDir/../node_modules/react-native/android" 24 | } 25 | maven { url "https://jitpack.io" } 26 | google() 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "EtherWallet", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node node_modules/react-native/local-cli/cli.js start", 7 | "test": "jest" 8 | }, 9 | "dependencies": { 10 | "ethers": "^3.0.15", 11 | "react": "16.3.1", 12 | "react-native": "0.55.3", 13 | "react-native-camera": "git+https://git@github.com/react-native-community/react-native-camera.git", 14 | "react-native-chip-view": "0.0.1", 15 | "react-native-circular-action-menu": "^0.5.0", 16 | "react-native-qrcode": "^0.2.6", 17 | "react-native-qrcode-scanner": "^1.0.1", 18 | "react-native-router-flux": "^4.0.0-beta.28", 19 | "react-native-sensitive-info": "^5.1.0" 20 | }, 21 | "devDependencies": { 22 | "babel-jest": "22.4.3", 23 | "babel-preset-react-native": "4.0.0", 24 | "jest": "22.4.3", 25 | "react-test-renderer": "16.3.1" 26 | }, 27 | "jest": { 28 | "preset": "react-native" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Utils/persist.utils.js: -------------------------------------------------------------------------------- 1 | import SInfo from 'react-native-sensitive-info'; 2 | 3 | export async function PersistWallet(wallet) { 4 | const StorableWallet = { 5 | walletName: wallet.walletName, 6 | address: wallet.address, 7 | privateKey: wallet.privateKey, 8 | } 9 | 10 | const pushData = await JSON.stringify(StorableWallet); 11 | 12 | SInfo.setItem(`EtherWallet_${StorableWallet.walletName}`, pushData, { 13 | sharedPreferencesName: 'ethereumWalletSharedPrefsSecure13', 14 | keychainService: 'ethereumWalletSecure13' 15 | }); 16 | } 17 | 18 | export async function FetchAllWallets() { 19 | const wallets = await SInfo.getAllItems({ 20 | sharedPreferencesName: 'ethereumWalletSharedPrefsSecure13', 21 | keychainService: 'ethereumWalletSecure13' 22 | }); 23 | const walletList = []; 24 | 25 | Object.keys(wallets).map((item) => { 26 | walletList.push(JSON.parse(wallets[item])); 27 | }) 28 | 29 | return walletList; 30 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | 33 | # node.js 34 | # 35 | node_modules/ 36 | npm-debug.log 37 | yarn-error.log 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | 44 | # fastlane 45 | # 46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 47 | # screenshots whenever they are needed. 48 | # For more information about the recommended setup visit: 49 | # https://docs.fastlane.tools/best-practices/source-control/ 50 | 51 | */fastlane/report.xml 52 | */fastlane/Preview.html 53 | */fastlane/screenshots 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | -------------------------------------------------------------------------------- /src/Utils/transactions.utils.js: -------------------------------------------------------------------------------- 1 | import ethers from 'ethers'; 2 | 3 | const { utils } = ethers; 4 | 5 | import { 6 | DEFAULT_GASLIMIT, 7 | DEFAULT_GASPRICE, 8 | } from '../Constants/global.constants'; 9 | 10 | /** 11 | * Util function to create transaction 12 | * @param {} to 13 | * @param {} value 14 | * @param {} gasLimit=DEFAULT_GASLIMIT 15 | * @param {} options={} 16 | */ 17 | export function createTransaction(to, value, gasLimit = DEFAULT_GASLIMIT, options = {}) { 18 | if (!value) throw new Error('The transaction value is required.'); 19 | else if (!(Number(value) > 0)) throw new Error('The transaction value is invalid.'); 20 | else if (isNaN(gasLimit)) gasLimit = DEFAULT_GASLIMIT; 21 | const gasPrice = DEFAULT_GASPRICE; 22 | value = utils.parseEther(value); 23 | return { gasPrice, ...options, to, gasLimit, value }; 24 | } 25 | 26 | /** 27 | * Util function to validate transaction 28 | * @param {} transaction 29 | */ 30 | export function isValidTransaction(transaction) { 31 | return transaction instanceof Object 32 | && Number(transaction.value) > 0 && Number(transaction.gasLimit) > 0 && typeof transaction.to === 'string'; 33 | } -------------------------------------------------------------------------------- /src/Components/QRScanner/qrScanner.component.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { Text } from 'react-native'; 3 | import { QRScannerView } from 'ac-qrcode'; 4 | 5 | export default class QRScanner extends Component { 6 | render() { 7 | return ( 8 | 9 | < QRScannerView 10 | onScanResultReceived={this.barcodeReceived.bind(this)} 11 | renderTopBarView={() => this._renderTitleBar()} 12 | renderBottomMenuView={() => this._renderMenu()} 13 | /> 14 | ) 15 | } 16 | 17 | _renderTitleBar() { 18 | return ( 19 | Here is title bar 22 | ); 23 | } 24 | 25 | _renderMenu() { 26 | return ( 27 | Here is bottom menu 30 | ) 31 | } 32 | 33 | barcodeReceived(e) { 34 | alert('dd'); 35 | //console.log(e) 36 | } 37 | } -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 17 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /ios/EtherWallet/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import "AppDelegate.h" 9 | 10 | #import 11 | #import 12 | 13 | @implementation AppDelegate 14 | 15 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 16 | { 17 | NSURL *jsCodeLocation; 18 | 19 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 20 | 21 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 22 | moduleName:@"EtherWallet" 23 | initialProperties:nil 24 | launchOptions:launchOptions]; 25 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 26 | 27 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 28 | UIViewController *rootViewController = [UIViewController new]; 29 | rootViewController.view = rootView; 30 | self.window.rootViewController = rootViewController; 31 | [self.window makeKeyAndVisible]; 32 | return YES; 33 | } 34 | 35 | @end 36 | -------------------------------------------------------------------------------- /src/Scene/Show-QR-Scene/showQR.scene.js: -------------------------------------------------------------------------------- 1 | 2 | import React, { Component } from 'react'; 3 | import { View, Text, StyleSheet, TouchableOpacity, TextInput } from 'react-native'; 4 | import { Actions } from 'react-native-router-flux'; 5 | import QRCode from 'react-native-qrcode'; 6 | 7 | 8 | /** Common Style */ 9 | import { SceneCommonStyles, TextStyles } from '../../Common/style.common'; 10 | import { PRIMARY, TEXT_COLOR } from '../../Constants/color.constants'; 11 | 12 | 13 | export default class ShowQRScene extends Component { 14 | render() { 15 | const { address } = this.props; 16 | 17 | return ( 18 | 21 | 22 | 23 | Show QR to the sender 24 | 25 | 30 | 31 | 32 | ) 33 | } 34 | } 35 | 36 | 37 | const styles = StyleSheet.create({ 38 | container: { 39 | flex: 1, 40 | alignItems: 'center', 41 | justifyContent: 'center', 42 | }, 43 | }) 44 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/etherwallet/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.etherwallet; 2 | 3 | import android.app.Application; 4 | 5 | import com.facebook.react.ReactApplication; 6 | import org.reactnative.camera.RNCameraPackage; 7 | import br.com.classapp.RNSensitiveInfo.RNSensitiveInfoPackage; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | import com.facebook.soloader.SoLoader; 12 | 13 | import java.util.Arrays; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 19 | @Override 20 | public boolean getUseDeveloperSupport() { 21 | return BuildConfig.DEBUG; 22 | } 23 | 24 | @Override 25 | protected List getPackages() { 26 | return Arrays.asList( 27 | new MainReactPackage(), 28 | new RNCameraPackage(), 29 | new RNSensitiveInfoPackage() 30 | ); 31 | } 32 | 33 | @Override 34 | protected String getJSMainModuleName() { 35 | return "index"; 36 | } 37 | }; 38 | 39 | @Override 40 | public ReactNativeHost getReactNativeHost() { 41 | return mReactNativeHost; 42 | } 43 | 44 | @Override 45 | public void onCreate() { 46 | super.onCreate(); 47 | SoLoader.init(this, /* native exopackage */ false); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore unexpected extra "@providesModule" 9 | .*/node_modules/.*/node_modules/fbjs/.* 10 | 11 | ; Ignore duplicate module providers 12 | ; For RN Apps installed via npm, "Libraries" folder is inside 13 | ; "node_modules/react-native" but in the source repo it is in the root 14 | .*/Libraries/react-native/React.js 15 | 16 | ; Ignore polyfills 17 | .*/Libraries/polyfills/.* 18 | 19 | ; Ignore metro 20 | .*/node_modules/metro/.* 21 | 22 | [include] 23 | 24 | [libs] 25 | node_modules/react-native/Libraries/react-native/react-native-interface.js 26 | node_modules/react-native/flow/ 27 | node_modules/react-native/flow-github/ 28 | 29 | [options] 30 | emoji=true 31 | 32 | module.system=haste 33 | 34 | munge_underscores=true 35 | 36 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 37 | 38 | module.file_ext=.js 39 | module.file_ext=.jsx 40 | module.file_ext=.json 41 | module.file_ext=.native.js 42 | 43 | suppress_type=$FlowIssue 44 | suppress_type=$FlowFixMe 45 | suppress_type=$FlowFixMeProps 46 | suppress_type=$FlowFixMeState 47 | 48 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 49 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 50 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError 52 | 53 | [version] 54 | ^0.67.0 55 | -------------------------------------------------------------------------------- /ios/EtherWallet-tvOS/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | lib_deps = [] 12 | 13 | for jarfile in glob(['libs/*.jar']): 14 | name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')] 15 | lib_deps.append(':' + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | 21 | for aarfile in glob(['libs/*.aar']): 22 | name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')] 23 | lib_deps.append(':' + name) 24 | android_prebuilt_aar( 25 | name = name, 26 | aar = aarfile, 27 | ) 28 | 29 | android_library( 30 | name = "all-libs", 31 | exported_deps = lib_deps, 32 | ) 33 | 34 | android_library( 35 | name = "app-code", 36 | srcs = glob([ 37 | "src/main/java/**/*.java", 38 | ]), 39 | deps = [ 40 | ":all-libs", 41 | ":build_config", 42 | ":res", 43 | ], 44 | ) 45 | 46 | android_build_config( 47 | name = "build_config", 48 | package = "com.etherwallet", 49 | ) 50 | 51 | android_resource( 52 | name = "res", 53 | package = "com.etherwallet", 54 | res = "src/main/res", 55 | ) 56 | 57 | android_binary( 58 | name = "app", 59 | keystore = "//android/keystores:debug", 60 | manifest = "src/main/AndroidManifest.xml", 61 | package_type = "debug", 62 | deps = [ 63 | ":app-code", 64 | ], 65 | ) 66 | -------------------------------------------------------------------------------- /src/Common/style.common.js: -------------------------------------------------------------------------------- 1 | import { StyleSheet } from 'react-native'; 2 | import { PRIMARY, TEXT_COLOR, DARK_GREY } from '../Constants/color.constants'; 3 | import { WIDTH, HEIGHT } from '../Utils/dimensions.utils'; 4 | 5 | export const SceneCommonStyles = StyleSheet.create({ 6 | container: { 7 | flex: 1, 8 | backgroundColor: PRIMARY, 9 | padding: 15 10 | }, 11 | }) 12 | 13 | export const TextStyles = StyleSheet.create({ 14 | h1Light: { 15 | fontWeight: '300', 16 | fontSize: 24, 17 | color: TEXT_COLOR, 18 | }, 19 | h2Light: { 20 | fontWeight: '300', 21 | fontSize: 23, 22 | color: TEXT_COLOR, 23 | }, 24 | h1Bold: { 25 | fontWeight: '700', 26 | fontSize: 24, 27 | color: TEXT_COLOR, 28 | }, 29 | normalGrey: { 30 | fontSize: 16, 31 | color: DARK_GREY, 32 | }, 33 | normalGreyBig: { 34 | fontSize: 24, 35 | color: DARK_GREY, 36 | }, 37 | message: { 38 | fontSize: 14, 39 | color: TEXT_COLOR 40 | }, 41 | messageGrey: { 42 | fontSize: 14, 43 | color: DARK_GREY, 44 | } 45 | }); 46 | 47 | export const ButtonStyles = StyleSheet.create({ 48 | buttonWrap: { 49 | width: WIDTH - 50, 50 | height: 60, 51 | alignItems: 'center', 52 | justifyContent: 'center', 53 | backgroundColor: '#fff', 54 | borderRadius: WIDTH, 55 | }, 56 | buttonText: { 57 | fontSize: 19, 58 | fontWeight: '300', 59 | color: PRIMARY 60 | } 61 | }) 62 | 63 | export const InputBoxStyle = StyleSheet.create({ 64 | inputBox: { 65 | width: WIDTH - 50, 66 | height: 150, 67 | backgroundColor: 'transparent', 68 | fontSize: 30, 69 | fontWeight: '700', 70 | color: TEXT_COLOR, 71 | } 72 | }) -------------------------------------------------------------------------------- /ios/EtherWallet/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | EtherWallet 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | UIViewControllerBasedStatusBarAppearance 40 | 41 | NSLocationWhenInUseUsageDescription 42 | 43 | NSAppTransportSecurity 44 | 45 | 46 | NSExceptionDomains 47 | 48 | localhost 49 | 50 | NSExceptionAllowsInsecureHTTPLoads 51 | 52 | 53 | 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /src/Utils/wallet.utils.js: -------------------------------------------------------------------------------- 1 | import ethers from 'ethers'; 2 | 3 | const { HDNode, providers, utils, Wallet } = ethers; 4 | 5 | import { TEST_RPC_SERVER, NETWORK } from '../Constants/global.constants'; 6 | 7 | export const PROVIDER = new providers.InfuraProvider('ropsten', 'BPmY2XJlIpK6RhWMmJW3 '); 8 | /** 9 | * Util function to generate array of mnemonics 10 | * @returns {array} 11 | */ 12 | export function GenerateMnemonics() { 13 | return HDNode.entropyToMnemonic(utils.randomBytes(16)).split(' '); 14 | } 15 | 16 | /** 17 | * Util function to recover wallet from mnemonics 18 | * @param {array} mnemonics 19 | * @returns {wallet} 20 | */ 21 | export function LoadWalletFromMnemonics(mnemonics) { 22 | if (!(mnemonics instanceof Array) && typeof mnemonics !== 'string') 23 | throw new Error('invalid mnemonic'); 24 | else if (mnemonics instanceof Array) 25 | mnemonics = mnemonics.join(' '); 26 | 27 | const wallet = Wallet.fromMnemonic(mnemonics); 28 | wallet.provider = PROVIDER; 29 | return wallet; 30 | } 31 | 32 | /** 33 | * Util function to formatBalance 34 | * @param {*} balance 35 | */ 36 | export function formatBalance(balance) { 37 | return utils.formatEther(balance); 38 | } 39 | 40 | /** 41 | * Util function to reduce big number 42 | * @param {} items 43 | */ 44 | export function reduceBigNumbers(items) { 45 | if (!(items instanceof Array)) throw new Error('The input is not an Array'); 46 | return items.reduce((prev, next) => prev.add(next), utils.bigNumberify('0')); 47 | } 48 | 49 | /** 50 | * Util function to calculate gas 51 | * @param {*} {gasUsed 52 | * @param {*} gasPrice} 53 | */ 54 | export function calculateFee({ gasUsed, gasPrice }) { 55 | return gasUsed * Number(formatBalance(gasPrice)); 56 | } 57 | 58 | /** 59 | * Util function to estimate fee 60 | * @param {*} {gasLimit 61 | * @param {*} gasPrice} 62 | */ 63 | export function estimateFee({ gasLimit, gasPrice }) { 64 | return utils.bigNumberify(String(gasLimit)).mul(String(gasPrice)); 65 | } -------------------------------------------------------------------------------- /src/Scene/Create-Wallet-Inport-Create-Scene/createWalletInportCreate.scene.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet, TouchableOpacity, TextInput } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | 5 | /** Common Style */ 6 | import { SceneCommonStyles, ButtonStyles } from '../../Common/style.common'; 7 | 8 | import { CREATE_WALLET_DISPLAY_PASSPHRASE } from '../../Constants/scene.constants'; 9 | 10 | export default class CreateWalletImportCreateScene extends Component { 11 | 12 | navigateToCreateNewWallet = () => { 13 | const { slot } = this.props; 14 | 15 | Actions.push(CREATE_WALLET_DISPLAY_PASSPHRASE, { slot }); 16 | } 17 | 18 | navigateToInporWallet = () => { 19 | } 20 | 21 | render() { 22 | return ( 23 | 26 | 27 | 31 | 32 | Import Wallet 33 | 34 | 35 | 39 | 40 | Create Wallet 41 | 42 | 43 | 44 | 45 | ) 46 | } 47 | } 48 | 49 | 50 | const styles = StyleSheet.create({ 51 | container: { 52 | flex: 1, 53 | alignItems: 'center', 54 | justifyContent: 'center', 55 | }, 56 | }) 57 | -------------------------------------------------------------------------------- /src/Scene/Scan-QR-Scene/scanQR.scene.js: -------------------------------------------------------------------------------- 1 | 2 | import React, { Component } from 'react'; 3 | import { View, Text, StyleSheet, TouchableOpacity, TextInput, Linking } from 'react-native'; 4 | import { Actions } from 'react-native-router-flux'; 5 | import QRCodeScanner from 'react-native-qrcode-scanner'; 6 | 7 | /** Common Style */ 8 | import { SceneCommonStyles, TextStyles } from '../../Common/style.common'; 9 | import { PRIMARY, TEXT_COLOR } from '../../Constants/color.constants'; 10 | 11 | /** Utils */ 12 | import { createTransaction } from '../../Utils/transactions.utils'; 13 | 14 | export default class ScanQRScene extends Component { 15 | onSuccess(e) { 16 | const { amount } = this.props.slot; 17 | const toAddress = e.data; 18 | 19 | const transaction = createTransaction(toAddress, amount); 20 | console.log(transaction); 21 | } 22 | 23 | render() { 24 | const { address } = this.props; 25 | 26 | return ( 27 | 30 | 31 | 32 | Scan QR to sent ether 33 | 34 | 37 | 38 | 39 | ) 40 | } 41 | } 42 | 43 | 44 | const styles = StyleSheet.create({ 45 | container: { 46 | flex: 1, 47 | alignItems: 'center', 48 | justifyContent: 'center', 49 | }, 50 | centerText: { 51 | flex: 1, 52 | fontSize: 18, 53 | padding: 32, 54 | color: '#777', 55 | }, 56 | textBold: { 57 | fontWeight: '500', 58 | color: '#000', 59 | }, 60 | buttonText: { 61 | fontSize: 21, 62 | color: 'rgb(0,122,255)', 63 | }, 64 | buttonTouchable: { 65 | padding: 16, 66 | }, 67 | }) 68 | -------------------------------------------------------------------------------- /ios/EtherWalletTests/EtherWalletTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | #import 9 | #import 10 | 11 | #import 12 | #import 13 | 14 | #define TIMEOUT_SECONDS 600 15 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 16 | 17 | @interface EtherWalletTests : XCTestCase 18 | 19 | @end 20 | 21 | @implementation EtherWalletTests 22 | 23 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 24 | { 25 | if (test(view)) { 26 | return YES; 27 | } 28 | for (UIView *subview in [view subviews]) { 29 | if ([self findSubviewInView:subview matching:test]) { 30 | return YES; 31 | } 32 | } 33 | return NO; 34 | } 35 | 36 | - (void)testRendersWelcomeScreen 37 | { 38 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 39 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 40 | BOOL foundElement = NO; 41 | 42 | __block NSString *redboxError = nil; 43 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 44 | if (level >= RCTLogLevelError) { 45 | redboxError = message; 46 | } 47 | }); 48 | 49 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 50 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 51 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 52 | 53 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 54 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 55 | return YES; 56 | } 57 | return NO; 58 | }]; 59 | } 60 | 61 | RCTSetLogFunction(RCTDefaultLogFunction); 62 | 63 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 64 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 65 | } 66 | 67 | 68 | @end 69 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /src/Scene/Ether-Amount-Scene/enterAmount.scene.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet, TouchableOpacity, TextInput, Keyboard } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | 5 | /** Common Style */ 6 | import { SceneCommonStyles, TextStyles, ButtonStyles, InputBoxStyle } from '../../Common/style.common'; 7 | 8 | /** Routes */ 9 | import { SCAN_QR_SCENE } from '../../Constants/scene.constants'; 10 | 11 | export default class EnterAmountScene extends Component { 12 | constructor(props) { 13 | super(props); 14 | this.state = { 15 | amount: '', 16 | } 17 | } 18 | 19 | navigateToNextScene = () => { 20 | Keyboard.dismiss(); 21 | const slot = { 22 | amount: this.state.amount, 23 | } 24 | Actions.push(SCAN_QR_SCENE, { slot }); 25 | } 26 | 27 | render() { 28 | const { amount } = this.state; 29 | return ( 30 | 33 | 34 | How much do you want to pay? 35 | 36 | 37 | this.setState({ amount })} 44 | onSubmitEditing={this.navigateToNextScene} 45 | /> 46 | 47 | 48 | 52 | 53 | Next 54 | 55 | 56 | 57 | 58 | ) 59 | } 60 | } 61 | 62 | 63 | const styles = StyleSheet.create({ 64 | container1: { 65 | flex: 0.5, 66 | flexDirection: 'row', 67 | alignItems: 'center', 68 | justifyContent: 'flex-start' 69 | }, 70 | container2: { 71 | flex: 2, 72 | alignItems: 'center', 73 | justifyContent: 'center', 74 | }, 75 | container3: { 76 | flex: 1, 77 | alignItems: 'center', 78 | justifyContent: 'flex-start', 79 | } 80 | }) 81 | -------------------------------------------------------------------------------- /src/Scene/Create-Wallet-Name-Input-Scene/createWalletNameInput.scene.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet, TouchableOpacity, TextInput, Keyboard } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | 5 | /** Common Style */ 6 | import { SceneCommonStyles, TextStyles, ButtonStyles, InputBoxStyle } from '../../Common/style.common'; 7 | 8 | /** Routes */ 9 | import { CREATE_WALLET_DISPLAY_PASSPHRASE } from '../../Constants/scene.constants'; 10 | 11 | export default class CreateWalletNameInput extends Component { 12 | constructor(props) { 13 | super(props); 14 | this.state = { 15 | walletName: '', 16 | } 17 | } 18 | 19 | navigateToNextScene = () => { 20 | Keyboard.dismiss(); 21 | const slot = { 22 | walletName: this.state.walletName, 23 | } 24 | Actions.push(CREATE_WALLET_DISPLAY_PASSPHRASE, { slot }) 25 | } 26 | render() { 27 | const { walletName } = this.state; 28 | return ( 29 | 32 | 33 | Give it a name 34 | 35 | 36 | this.setState({ walletName })} 43 | onSubmitEditing={this.navigateToNextScene} 44 | /> 45 | 46 | 47 | 51 | 52 | Next 53 | 54 | 55 | 56 | 57 | ) 58 | } 59 | } 60 | 61 | 62 | const styles = StyleSheet.create({ 63 | container1: { 64 | flex: 0.5, 65 | flexDirection: 'row', 66 | alignItems: 'center', 67 | justifyContent: 'flex-start' 68 | }, 69 | container2: { 70 | flex: 2, 71 | alignItems: 'center', 72 | justifyContent: 'center', 73 | }, 74 | container3: { 75 | flex: 1, 76 | alignItems: 'center', 77 | justifyContent: 'flex-start', 78 | } 79 | }) 80 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # TextLayoutBuilder uses a non-public Android constructor within StaticLayout. 54 | # See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details. 55 | -dontwarn android.text.StaticLayout 56 | 57 | # okhttp 58 | 59 | -keepattributes Signature 60 | -keepattributes *Annotation* 61 | -keep class okhttp3.** { *; } 62 | -keep interface okhttp3.** { *; } 63 | -dontwarn okhttp3.** 64 | 65 | # okio 66 | 67 | -keep class sun.misc.Unsafe { *; } 68 | -dontwarn java.nio.file.* 69 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 70 | -dontwarn okio.** 71 | -------------------------------------------------------------------------------- /src/Navigation/index.navigation.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { View, Image } from 'react-native'; 3 | import { 4 | Scene, 5 | Router, 6 | Actions, 7 | Reducer, 8 | ActionConst, 9 | Overlay, 10 | Tabs, 11 | Modal, 12 | Drawer, 13 | Stack, 14 | Lightbox, 15 | } from 'react-native-router-flux'; 16 | import CardStackStyleInterpolator from 'react-navigation/src/views/CardStack/CardStackStyleInterpolator'; 17 | 18 | import { PRIMARY } from '../Constants/color.constants'; 19 | 20 | /** Routes */ 21 | import { 22 | HOME_SCENE, 23 | CREATE_WALLET_NAME_INPUT_SCENE, 24 | CREATE_WALLET_CREATE_INPORT_WALLET_SCENE, 25 | CREATE_WALLET_DISPLAY_PASSPHRASE, 26 | SHOW_QR_SCENE, 27 | SCAN_QR_SCENE, 28 | ETHER_AMOUNT_SCENE, 29 | } from '../Constants/scene.constants'; 30 | 31 | /** Scenes */ 32 | import HomeScene from '../Scene/Home-Scene/home.scene'; 33 | import CreateWalletNameInputScene from '../Scene/Create-Wallet-Name-Input-Scene/createWalletNameInput.scene'; 34 | import CreateWalletCreateImportWallet from '../Scene/Create-Wallet-Inport-Create-Scene/createWalletInportCreate.scene'; 35 | import CreateWalletDisplayPassphrase from '../Scene/Create-Wallet-Passphrase-Display-Scene/createWalletPassphraseDisplay.scene'; 36 | import ShowQRScene from '../Scene/Show-QR-Scene/showQR.scene'; 37 | import ScanQRScene from '../Scene/Scan-QR-Scene/scanQR.scene'; 38 | import EtherAmountScene from '../Scene/Ether-Amount-Scene/enterAmount.scene'; 39 | 40 | const Root = () => ( 41 | 42 | 43 | ({ screenInterpolator: CardStackStyleInterpolator.forFadeFromBottomAndroid })} 46 | > 47 | 48 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | ); 67 | 68 | export default Root; -------------------------------------------------------------------------------- /ios/EtherWallet/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 | -------------------------------------------------------------------------------- /src/Scene/Home-Scene/home.scene.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet, FlatList } from 'react-native'; 3 | import ActionButton from 'react-native-circular-action-menu'; 4 | import { Actions } from 'react-native-router-flux'; 5 | 6 | /** Common Style */ 7 | import { SceneCommonStyles, TextStyles } from '../../Common/style.common'; 8 | 9 | /** Routes */ 10 | import { CREATE_WALLET_NAME_INPUT_SCENE } from '../../Constants/scene.constants'; 11 | 12 | /** Components */ 13 | import WalletCard from '../../Components/Wallet-Card/walletCard.component'; 14 | 15 | /** Utils */ 16 | import { PersistWallet, FetchAllWallets } from '../../Utils/persist.utils'; 17 | 18 | export default class HomeScene extends Component { 19 | constructor(props) { 20 | super(props); 21 | this.state = { 22 | walletList: [], 23 | refresh: false, 24 | } 25 | } 26 | 27 | componentDidMount = async () => { 28 | const { slot } = this.props; 29 | if (slot && typeof slot == 'object' && slot.wallet) { 30 | const wallet = slot.wallet; 31 | wallet.walletName = slot.walletName; 32 | PersistWallet(wallet); 33 | this.pushWallet(wallet); 34 | } 35 | const wallets = await FetchAllWallets(); 36 | this.setState({ walletList: wallets || [] }); 37 | } 38 | 39 | pushWallet = async (wallet) => { 40 | console.log('push', wallet); 41 | const c = await wallet.getBalance(); 42 | console.log(c); 43 | 44 | this.setState({ walletList: [...this.state.walletList, wallet], refresh: !this.state.refresh }); 45 | } 46 | 47 | RenderItem = ({ item }) => { 48 | return ( 49 | 52 | ); 53 | } 54 | 55 | navigateToCreateNewAccount = () => { 56 | Actions.push(CREATE_WALLET_NAME_INPUT_SCENE); 57 | } 58 | 59 | render() { 60 | const { walletList } = this.state; 61 | console.log(walletList); 62 | return ( 63 | 66 | 67 | 68 | Total balance 69 | 70 | 71 | ETH: 0.00 72 | USD: 0.00$ 73 | 74 | 75 | 76 | item.address} 81 | extraData={this.state.refresh} 82 | /> 83 | 84 | 89 | 90 | ) 91 | } 92 | } 93 | 94 | 95 | const styles = StyleSheet.create({ 96 | container1: { 97 | flex: 1, 98 | flexDirection: 'row', 99 | borderBottomWidth: 1, 100 | borderBottomColor: '#fff', 101 | paddingBottom: 20, 102 | }, 103 | container2: { 104 | flex: 3, 105 | } 106 | }) 107 | -------------------------------------------------------------------------------- /src/Scene/Create-Wallet-Passphrase-Display-Scene/createWalletPassphraseDisplay.scene.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | import { View, Text, StyleSheet, TouchableOpacity, TextInput } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | import RNChipView from 'react-native-chip-view' 5 | 6 | /** Common Style */ 7 | import { SceneCommonStyles, TextStyles, ButtonStyles, InputBoxStyle } from '../../Common/style.common'; 8 | 9 | /** Routes */ 10 | import { CREATE_WALLET_CREATE_INPORT_WALLET_SCENE, HOME_SCENE } from '../../Constants/scene.constants'; 11 | import { LIGHT_GREY } from '../../Constants/color.constants'; 12 | 13 | /** Wallet Utils */ 14 | import { GenerateMnemonics, LoadWalletFromMnemonics } from '../../Utils/wallet.utils'; 15 | 16 | export default class CreateWalletPassphraseDispaly extends Component { 17 | constructor(props) { 18 | super(props); 19 | this.state = { 20 | mnemonics: [], 21 | } 22 | } 23 | 24 | componentDidMount = async () => { 25 | const mnemonics = await GenerateMnemonics(); 26 | this.setState({ mnemonics }); 27 | } 28 | 29 | RenderChip = ({ title }) => { 30 | return ( 31 | 32 | {title} 33 | 34 | ) 35 | } 36 | 37 | createNewWallet = async () => { 38 | const { slot } = this.props; 39 | const { mnemonics } = this.state; 40 | 41 | const wallet = LoadWalletFromMnemonics(mnemonics); 42 | if (wallet) { 43 | slot.wallet = wallet; 44 | Actions.push(HOME_SCENE, { slot }); 45 | } 46 | } 47 | 48 | render() { 49 | const { mnemonics } = this.state; 50 | 51 | return ( 52 | 55 | 56 | Save carefully your sequence of mnemonics: 57 | When creating a new wallet you will receive a sequence of mnemonics which represent your "personal password". Anyone with this sequence may be able to reconfigure your wallet in any new device. Keep it stored as secure as possible. Only you should have access to this information. 58 | 59 | 60 | { 61 | mnemonics.map((item, key) => { 62 | return ( 63 | 67 | ) 68 | }) 69 | } 70 | 71 | 72 | 76 | 77 | Create New Wallet 78 | 79 | 80 | 81 | 82 | ) 83 | } 84 | } 85 | 86 | 87 | const styles = StyleSheet.create({ 88 | container1: { 89 | flex: 1.3, 90 | alignItems: 'center', 91 | justifyContent: 'flex-start' 92 | }, 93 | container2: { 94 | flex: 2, 95 | flexWrap: 'wrap', 96 | flexDirection: 'row', 97 | }, 98 | container3: { 99 | flex: 0.8, 100 | alignItems: 'center', 101 | justifyContent: 'flex-start', 102 | } 103 | }) 104 | -------------------------------------------------------------------------------- /src/Components/Wallet-Card/walletCard.component.js: -------------------------------------------------------------------------------- 1 | import React, { PureComponent } from 'react'; 2 | import { View, Image, Text, StyleSheet, Dimensions, TouchableNativeFeedback } from 'react-native'; 3 | import { Actions } from 'react-native-router-flux'; 4 | import ethers from 'ethers'; 5 | 6 | const { Wallet } = ethers; 7 | 8 | import { WIDTH, HEIGHT } from '../../Utils/dimensions.utils'; 9 | import { LIGHT_GREY } from '../../Constants/color.constants'; 10 | import { TextStyles } from '../../Common/style.common'; 11 | import { SHOW_QR_SCENE, SCAN_QR_SCENE, ETHER_AMOUNT_SCENE } from '../../Constants/scene.constants'; 12 | import { PROVIDER } from '../../Utils/wallet.utils'; 13 | 14 | export default class WalletCard extends PureComponent { 15 | constructor(props) { 16 | super(props); 17 | this.state = { 18 | ether: '', 19 | } 20 | } 21 | 22 | componentDidMount = () => { 23 | const { payload } = this.props; 24 | const privateKey = payload.privateKey; 25 | 26 | var wallet = new Wallet(privateKey); 27 | this.fetchBalance(wallet); 28 | } 29 | 30 | fetchBalance = async (wallet) => { 31 | var privateKey = wallet.privateKey; 32 | var wallet = new ethers.Wallet(privateKey); 33 | wallet.provider = PROVIDER; 34 | var balancePromise = wallet.getBalance(); 35 | 36 | const balance = await balancePromise; 37 | this.setState({ ether: balance.toNumber() }) 38 | } 39 | 40 | sendEther = () => { 41 | Actions.push(ETHER_AMOUNT_SCENE, { wallet: this.props.payload }); 42 | } 43 | 44 | receiveEther = () => { 45 | const { payload } = this.props; 46 | const address = payload.address; 47 | 48 | Actions.push(SHOW_QR_SCENE, { address }); 49 | } 50 | 51 | render() { 52 | const { payload } = this.props; 53 | return ( 54 | 57 | 58 | 59 | 63 | 64 | 65 | 66 | {payload.walletName} 67 | 68 | 69 | 70 | Eth: {this.state.ether} 71 | 72 | {/* 73 | USD: 13$ 74 | */} 75 | 76 | 77 | 78 | {payload.address} 79 | 80 | 81 | 82 | 83 | 84 | 88 | 89 | Send 90 | 91 | 92 | 96 | 97 | Receive 98 | 99 | 100 | 101 | 102 | 103 | ) 104 | } 105 | } 106 | 107 | const styles = StyleSheet.create({ 108 | container: { 109 | width: WIDTH - 20, 110 | height: 140, 111 | backgroundColor: '#fff', 112 | elevation: 4, 113 | marginBottom: 20 114 | } 115 | }) -------------------------------------------------------------------------------- /ios/EtherWallet.xcodeproj/xcshareddata/xcschemes/EtherWallet.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /ios/EtherWallet.xcodeproj/xcshareddata/xcschemes/EtherWallet-tvOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 58 | 59 | 61 | 67 | 68 | 69 | 70 | 71 | 77 | 78 | 79 | 80 | 81 | 82 | 92 | 94 | 100 | 101 | 102 | 103 | 104 | 105 | 111 | 113 | 119 | 120 | 121 | 122 | 124 | 125 | 128 | 129 | 130 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 37 | * // for example: to disable dev mode in the staging build type (if configured) 38 | * devDisabledInStaging: true, 39 | * // The configuration property can be in the following formats 40 | * // 'devDisabledIn${productFlavor}${buildType}' 41 | * // 'devDisabledIn${buildType}' 42 | * 43 | * // the root of your project, i.e. where "package.json" lives 44 | * root: "../../", 45 | * 46 | * // where to put the JS bundle asset in debug mode 47 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 48 | * 49 | * // where to put the JS bundle asset in release mode 50 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 51 | * 52 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 53 | * // require('./image.png')), in debug mode 54 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 55 | * 56 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 57 | * // require('./image.png')), in release mode 58 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 59 | * 60 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 61 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 62 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 63 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 64 | * // for example, you might want to remove it from here. 65 | * inputExcludes: ["android/**", "ios/**"], 66 | * 67 | * // override which node gets called and with what additional arguments 68 | * nodeExecutableAndArgs: ["node"], 69 | * 70 | * // supply additional arguments to the packager 71 | * extraPackagerArgs: [] 72 | * ] 73 | */ 74 | 75 | project.ext.react = [ 76 | entryFile: "index.js" 77 | ] 78 | 79 | apply from: "../../node_modules/react-native/react.gradle" 80 | 81 | /** 82 | * Set this to true to create two separate APKs instead of one: 83 | * - An APK that only works on ARM devices 84 | * - An APK that only works on x86 devices 85 | * The advantage is the size of the APK is reduced by about 4MB. 86 | * Upload all the APKs to the Play Store and people will download 87 | * the correct one based on the CPU architecture of their device. 88 | */ 89 | def enableSeparateBuildPerCPUArchitecture = false 90 | 91 | /** 92 | * Run Proguard to shrink the Java bytecode in release builds. 93 | */ 94 | def enableProguardInReleaseBuilds = false 95 | 96 | android { 97 | compileSdkVersion 23 98 | buildToolsVersion '26.0.2' 99 | 100 | defaultConfig { 101 | applicationId "com.etherwallet" 102 | minSdkVersion 16 103 | targetSdkVersion 22 104 | versionCode 1 105 | versionName "1.0" 106 | ndk { 107 | abiFilters "armeabi-v7a", "x86" 108 | } 109 | } 110 | splits { 111 | abi { 112 | reset() 113 | enable enableSeparateBuildPerCPUArchitecture 114 | universalApk false // If true, also generate a universal APK 115 | include "armeabi-v7a", "x86" 116 | } 117 | } 118 | buildTypes { 119 | release { 120 | minifyEnabled enableProguardInReleaseBuilds 121 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 122 | } 123 | } 124 | // applicationVariants are e.g. debug, release 125 | applicationVariants.all { variant -> 126 | variant.outputs.each { output -> 127 | // For each separate APK per architecture, set a unique version code as described here: 128 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 129 | def versionCodes = ["armeabi-v7a":1, "x86":2] 130 | def abi = output.getFilter(OutputFile.ABI) 131 | if (abi != null) { // null for the universal-debug, universal-release variants 132 | output.versionCodeOverride = 133 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 134 | } 135 | } 136 | } 137 | } 138 | 139 | dependencies { 140 | compile (project(':react-native-camera')) { 141 | exclude group: "com.google.android.gms" 142 | compile ('com.android.support:exifinterface:27.+') { 143 | force = true 144 | } 145 | compile ('com.google.android.gms:play-services-vision:12.0.1') { 146 | force = true 147 | } 148 | } 149 | compile project(':react-native-sensitive-info') 150 | compile fileTree(dir: "libs", include: ["*.jar"]) 151 | compile "com.android.support:appcompat-v7:23.0.1" 152 | compile "com.facebook.react:react-native:+" // From node_modules 153 | } 154 | 155 | // Run this once to be able to run the application with BUCK 156 | // puts all compile dependencies into folder libs for BUCK to use 157 | task copyDownloadableDepsToLibs(type: Copy) { 158 | from configurations.compile 159 | into 'libs' 160 | } 161 | -------------------------------------------------------------------------------- /ios/EtherWallet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | /* Begin PBXBuildFile section */ 9 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 10 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 11 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 12 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 13 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 14 | 00E356F31AD99517003FC87E /* EtherWalletTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* EtherWalletTests.m */; }; 15 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 16 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 17 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 18 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 19 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 20 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 21 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 22 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 23 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 25 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 26 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 27 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 28 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; }; 29 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; }; 30 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; }; 31 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; }; 32 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; }; 33 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; }; 34 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; }; 35 | 2DCD954D1E0B4F2C00145EB5 /* EtherWalletTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* EtherWalletTests.m */; }; 36 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 37 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; 38 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 39 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; 40 | 0DF71D94D9024F8F982FAA5C /* libRNCamera.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C5021E280794FA79F37CACE /* libRNCamera.a */; }; 41 | 314C8262FA914D4ABEBD292A /* libReactNativePermissions.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D54C441E2DAC4EAB874533A2 /* libReactNativePermissions.a */; }; 42 | 427FC2AA5D5240CCB82BD354 /* libRNSensitiveInfo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 838A64C39D7340FC8D9B74A0 /* libRNSensitiveInfo.a */; }; 43 | /* End PBXBuildFile section */ 44 | 45 | /* Begin PBXContainerItemProxy section */ 46 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 47 | isa = PBXContainerItemProxy; 48 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 49 | proxyType = 2; 50 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 51 | remoteInfo = RCTActionSheet; 52 | }; 53 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 54 | isa = PBXContainerItemProxy; 55 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 56 | proxyType = 2; 57 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 58 | remoteInfo = RCTGeolocation; 59 | }; 60 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 61 | isa = PBXContainerItemProxy; 62 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 63 | proxyType = 2; 64 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 65 | remoteInfo = RCTImage; 66 | }; 67 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 68 | isa = PBXContainerItemProxy; 69 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 70 | proxyType = 2; 71 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 72 | remoteInfo = RCTNetwork; 73 | }; 74 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 75 | isa = PBXContainerItemProxy; 76 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 77 | proxyType = 2; 78 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 79 | remoteInfo = RCTVibration; 80 | }; 81 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 82 | isa = PBXContainerItemProxy; 83 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 84 | proxyType = 1; 85 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 86 | remoteInfo = EtherWallet; 87 | }; 88 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 89 | isa = PBXContainerItemProxy; 90 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 91 | proxyType = 2; 92 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 93 | remoteInfo = RCTSettings; 94 | }; 95 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 96 | isa = PBXContainerItemProxy; 97 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 98 | proxyType = 2; 99 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 100 | remoteInfo = RCTWebSocket; 101 | }; 102 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 103 | isa = PBXContainerItemProxy; 104 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 105 | proxyType = 2; 106 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 107 | remoteInfo = React; 108 | }; 109 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = { 110 | isa = PBXContainerItemProxy; 111 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 112 | proxyType = 1; 113 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7; 114 | remoteInfo = "EtherWallet-tvOS"; 115 | }; 116 | 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 117 | isa = PBXContainerItemProxy; 118 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 119 | proxyType = 2; 120 | remoteGlobalIDString = ADD01A681E09402E00F6D226; 121 | remoteInfo = "RCTBlob-tvOS"; 122 | }; 123 | 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 124 | isa = PBXContainerItemProxy; 125 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 126 | proxyType = 2; 127 | remoteGlobalIDString = 3DBE0D001F3B181A0099AA32; 128 | remoteInfo = fishhook; 129 | }; 130 | 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = { 131 | isa = PBXContainerItemProxy; 132 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 133 | proxyType = 2; 134 | remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32; 135 | remoteInfo = "fishhook-tvOS"; 136 | }; 137 | 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = { 138 | isa = PBXContainerItemProxy; 139 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 140 | proxyType = 2; 141 | remoteGlobalIDString = EBF21BDC1FC498900052F4D5; 142 | remoteInfo = jsinspector; 143 | }; 144 | 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = { 145 | isa = PBXContainerItemProxy; 146 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 147 | proxyType = 2; 148 | remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5; 149 | remoteInfo = "jsinspector-tvOS"; 150 | }; 151 | 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = { 152 | isa = PBXContainerItemProxy; 153 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 154 | proxyType = 2; 155 | remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7; 156 | remoteInfo = "third-party"; 157 | }; 158 | 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = { 159 | isa = PBXContainerItemProxy; 160 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 161 | proxyType = 2; 162 | remoteGlobalIDString = 3D383D3C1EBD27B6005632C8; 163 | remoteInfo = "third-party-tvOS"; 164 | }; 165 | 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = { 166 | isa = PBXContainerItemProxy; 167 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 168 | proxyType = 2; 169 | remoteGlobalIDString = 139D7E881E25C6D100323FB7; 170 | remoteInfo = "double-conversion"; 171 | }; 172 | 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = { 173 | isa = PBXContainerItemProxy; 174 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 175 | proxyType = 2; 176 | remoteGlobalIDString = 3D383D621EBD27B9005632C8; 177 | remoteInfo = "double-conversion-tvOS"; 178 | }; 179 | 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = { 180 | isa = PBXContainerItemProxy; 181 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 182 | proxyType = 2; 183 | remoteGlobalIDString = 9936F3131F5F2E4B0010BF04; 184 | remoteInfo = privatedata; 185 | }; 186 | 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = { 187 | isa = PBXContainerItemProxy; 188 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 189 | proxyType = 2; 190 | remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04; 191 | remoteInfo = "privatedata-tvOS"; 192 | }; 193 | 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = { 194 | isa = PBXContainerItemProxy; 195 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 196 | proxyType = 2; 197 | remoteGlobalIDString = 2D2A283A1D9B042B00D4039D; 198 | remoteInfo = "RCTImage-tvOS"; 199 | }; 200 | 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = { 201 | isa = PBXContainerItemProxy; 202 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 203 | proxyType = 2; 204 | remoteGlobalIDString = 2D2A28471D9B043800D4039D; 205 | remoteInfo = "RCTLinking-tvOS"; 206 | }; 207 | 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 208 | isa = PBXContainerItemProxy; 209 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 210 | proxyType = 2; 211 | remoteGlobalIDString = 2D2A28541D9B044C00D4039D; 212 | remoteInfo = "RCTNetwork-tvOS"; 213 | }; 214 | 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 215 | isa = PBXContainerItemProxy; 216 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 217 | proxyType = 2; 218 | remoteGlobalIDString = 2D2A28611D9B046600D4039D; 219 | remoteInfo = "RCTSettings-tvOS"; 220 | }; 221 | 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = { 222 | isa = PBXContainerItemProxy; 223 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 224 | proxyType = 2; 225 | remoteGlobalIDString = 2D2A287B1D9B048500D4039D; 226 | remoteInfo = "RCTText-tvOS"; 227 | }; 228 | 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = { 229 | isa = PBXContainerItemProxy; 230 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 231 | proxyType = 2; 232 | remoteGlobalIDString = 2D2A28881D9B049200D4039D; 233 | remoteInfo = "RCTWebSocket-tvOS"; 234 | }; 235 | 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = { 236 | isa = PBXContainerItemProxy; 237 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 238 | proxyType = 2; 239 | remoteGlobalIDString = 2D2A28131D9B038B00D4039D; 240 | remoteInfo = "React-tvOS"; 241 | }; 242 | 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = { 243 | isa = PBXContainerItemProxy; 244 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 245 | proxyType = 2; 246 | remoteGlobalIDString = 3D3C059A1DE3340900C268FA; 247 | remoteInfo = yoga; 248 | }; 249 | 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = { 250 | isa = PBXContainerItemProxy; 251 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 252 | proxyType = 2; 253 | remoteGlobalIDString = 3D3C06751DE3340C00C268FA; 254 | remoteInfo = "yoga-tvOS"; 255 | }; 256 | 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = { 257 | isa = PBXContainerItemProxy; 258 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 259 | proxyType = 2; 260 | remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4; 261 | remoteInfo = cxxreact; 262 | }; 263 | 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 264 | isa = PBXContainerItemProxy; 265 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 266 | proxyType = 2; 267 | remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4; 268 | remoteInfo = "cxxreact-tvOS"; 269 | }; 270 | 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 271 | isa = PBXContainerItemProxy; 272 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 273 | proxyType = 2; 274 | remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4; 275 | remoteInfo = jschelpers; 276 | }; 277 | 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = { 278 | isa = PBXContainerItemProxy; 279 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 280 | proxyType = 2; 281 | remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4; 282 | remoteInfo = "jschelpers-tvOS"; 283 | }; 284 | 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 285 | isa = PBXContainerItemProxy; 286 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 287 | proxyType = 2; 288 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 289 | remoteInfo = RCTAnimation; 290 | }; 291 | 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = { 292 | isa = PBXContainerItemProxy; 293 | containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 294 | proxyType = 2; 295 | remoteGlobalIDString = 2D2A28201D9B03D100D4039D; 296 | remoteInfo = "RCTAnimation-tvOS"; 297 | }; 298 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 299 | isa = PBXContainerItemProxy; 300 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 301 | proxyType = 2; 302 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 303 | remoteInfo = RCTLinking; 304 | }; 305 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 306 | isa = PBXContainerItemProxy; 307 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 308 | proxyType = 2; 309 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 310 | remoteInfo = RCTText; 311 | }; 312 | ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = { 313 | isa = PBXContainerItemProxy; 314 | containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 315 | proxyType = 2; 316 | remoteGlobalIDString = 358F4ED71D1E81A9004DF814; 317 | remoteInfo = RCTBlob; 318 | }; 319 | /* End PBXContainerItemProxy section */ 320 | 321 | /* Begin PBXFileReference section */ 322 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; }; 323 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = ""; }; 324 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = ""; }; 325 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = ""; }; 326 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = ""; }; 327 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = ""; }; 328 | 00E356EE1AD99517003FC87E /* EtherWalletTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = EtherWalletTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 329 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 330 | 00E356F21AD99517003FC87E /* EtherWalletTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EtherWalletTests.m; sourceTree = ""; }; 331 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 332 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 333 | 13B07F961A680F5B00A75B9A /* EtherWallet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = EtherWallet.app; sourceTree = BUILT_PRODUCTS_DIR; }; 334 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = EtherWallet/AppDelegate.h; sourceTree = ""; }; 335 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = EtherWallet/AppDelegate.m; sourceTree = ""; }; 336 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 337 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = EtherWallet/Images.xcassets; sourceTree = ""; }; 338 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = EtherWallet/Info.plist; sourceTree = ""; }; 339 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = EtherWallet/main.m; sourceTree = ""; }; 340 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; 341 | 2D02E47B1E0B4A5D006451C7 /* EtherWallet-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "EtherWallet-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 342 | 2D02E4901E0B4A5D006451C7 /* EtherWallet-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "EtherWallet-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 343 | 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 344 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 345 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; 346 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 347 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; 348 | 59A62394EB8A4D778B67EEDA /* RNCamera.xcodeproj */ = {isa = PBXFileReference; name = "RNCamera.xcodeproj"; path = "../node_modules/react-native-camera/ios/RNCamera.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 349 | 4C5021E280794FA79F37CACE /* libRNCamera.a */ = {isa = PBXFileReference; name = "libRNCamera.a"; path = "libRNCamera.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 350 | 9FFCBF5E41C649A39986CC78 /* ReactNativePermissions.xcodeproj */ = {isa = PBXFileReference; name = "ReactNativePermissions.xcodeproj"; path = "../node_modules/react-native-permissions/ios/ReactNativePermissions.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 351 | D54C441E2DAC4EAB874533A2 /* libReactNativePermissions.a */ = {isa = PBXFileReference; name = "libReactNativePermissions.a"; path = "libReactNativePermissions.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 352 | 5CC29E35DB194D8DBBCE6CB4 /* RNSensitiveInfo.xcodeproj */ = {isa = PBXFileReference; name = "RNSensitiveInfo.xcodeproj"; path = "../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo.xcodeproj"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; }; 353 | 838A64C39D7340FC8D9B74A0 /* libRNSensitiveInfo.a */ = {isa = PBXFileReference; name = "libRNSensitiveInfo.a"; path = "libRNSensitiveInfo.a"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; }; 354 | /* End PBXFileReference section */ 355 | 356 | /* Begin PBXFrameworksBuildPhase section */ 357 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 358 | isa = PBXFrameworksBuildPhase; 359 | buildActionMask = 2147483647; 360 | files = ( 361 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 362 | ); 363 | runOnlyForDeploymentPostprocessing = 0; 364 | }; 365 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 366 | isa = PBXFrameworksBuildPhase; 367 | buildActionMask = 2147483647; 368 | files = ( 369 | ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */, 370 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 371 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 372 | 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, 373 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 374 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 375 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 376 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 377 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 378 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 379 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 380 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 381 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 382 | 0DF71D94D9024F8F982FAA5C /* libRNCamera.a in Frameworks */, 383 | 314C8262FA914D4ABEBD292A /* libReactNativePermissions.a in Frameworks */, 384 | 427FC2AA5D5240CCB82BD354 /* libRNSensitiveInfo.a in Frameworks */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = { 389 | isa = PBXFrameworksBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */, 393 | 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */, 394 | 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */, 395 | 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */, 396 | 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */, 397 | 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 398 | 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 399 | 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, 400 | ); 401 | runOnlyForDeploymentPostprocessing = 0; 402 | }; 403 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = { 404 | isa = PBXFrameworksBuildPhase; 405 | buildActionMask = 2147483647; 406 | files = ( 407 | 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */, 408 | ); 409 | runOnlyForDeploymentPostprocessing = 0; 410 | }; 411 | /* End PBXFrameworksBuildPhase section */ 412 | 413 | /* Begin PBXGroup section */ 414 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 415 | isa = PBXGroup; 416 | children = ( 417 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 418 | ); 419 | name = Products; 420 | sourceTree = ""; 421 | }; 422 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 423 | isa = PBXGroup; 424 | children = ( 425 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 426 | ); 427 | name = Products; 428 | sourceTree = ""; 429 | }; 430 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 431 | isa = PBXGroup; 432 | children = ( 433 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 434 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */, 435 | ); 436 | name = Products; 437 | sourceTree = ""; 438 | }; 439 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 440 | isa = PBXGroup; 441 | children = ( 442 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 443 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */, 444 | ); 445 | name = Products; 446 | sourceTree = ""; 447 | }; 448 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 449 | isa = PBXGroup; 450 | children = ( 451 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 452 | ); 453 | name = Products; 454 | sourceTree = ""; 455 | }; 456 | 00E356EF1AD99517003FC87E /* EtherWalletTests */ = { 457 | isa = PBXGroup; 458 | children = ( 459 | 00E356F21AD99517003FC87E /* EtherWalletTests.m */, 460 | 00E356F01AD99517003FC87E /* Supporting Files */, 461 | ); 462 | path = EtherWalletTests; 463 | sourceTree = ""; 464 | }; 465 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 466 | isa = PBXGroup; 467 | children = ( 468 | 00E356F11AD99517003FC87E /* Info.plist */, 469 | ); 470 | name = "Supporting Files"; 471 | sourceTree = ""; 472 | }; 473 | 139105B71AF99BAD00B5F7CC /* Products */ = { 474 | isa = PBXGroup; 475 | children = ( 476 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 477 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */, 478 | ); 479 | name = Products; 480 | sourceTree = ""; 481 | }; 482 | 139FDEE71B06529A00C62182 /* Products */ = { 483 | isa = PBXGroup; 484 | children = ( 485 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 486 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */, 487 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */, 488 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */, 489 | ); 490 | name = Products; 491 | sourceTree = ""; 492 | }; 493 | 13B07FAE1A68108700A75B9A /* EtherWallet */ = { 494 | isa = PBXGroup; 495 | children = ( 496 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 497 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 498 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 499 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 500 | 13B07FB61A68108700A75B9A /* Info.plist */, 501 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 502 | 13B07FB71A68108700A75B9A /* main.m */, 503 | ); 504 | name = EtherWallet; 505 | sourceTree = ""; 506 | }; 507 | 146834001AC3E56700842450 /* Products */ = { 508 | isa = PBXGroup; 509 | children = ( 510 | 146834041AC3E56700842450 /* libReact.a */, 511 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */, 512 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */, 513 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */, 514 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */, 515 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */, 516 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */, 517 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */, 518 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */, 519 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */, 520 | 2DF0FFE32056DD460020B375 /* libthird-party.a */, 521 | 2DF0FFE52056DD460020B375 /* libthird-party.a */, 522 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */, 523 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */, 524 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */, 525 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */, 526 | ); 527 | name = Products; 528 | sourceTree = ""; 529 | }; 530 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 531 | isa = PBXGroup; 532 | children = ( 533 | 2D16E6891FA4F8E400B85C8A /* libReact.a */, 534 | ); 535 | name = Frameworks; 536 | sourceTree = ""; 537 | }; 538 | 5E91572E1DD0AC6500FF2AA8 /* Products */ = { 539 | isa = PBXGroup; 540 | children = ( 541 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */, 542 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */, 543 | ); 544 | name = Products; 545 | sourceTree = ""; 546 | }; 547 | 78C398B11ACF4ADC00677621 /* Products */ = { 548 | isa = PBXGroup; 549 | children = ( 550 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 551 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */, 552 | ); 553 | name = Products; 554 | sourceTree = ""; 555 | }; 556 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 557 | isa = PBXGroup; 558 | children = ( 559 | 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 560 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 561 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 562 | ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */, 563 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 564 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 565 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 566 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 567 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 568 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 569 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 570 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 571 | 59A62394EB8A4D778B67EEDA /* RNCamera.xcodeproj */, 572 | 9FFCBF5E41C649A39986CC78 /* ReactNativePermissions.xcodeproj */, 573 | 5CC29E35DB194D8DBBCE6CB4 /* RNSensitiveInfo.xcodeproj */, 574 | ); 575 | name = Libraries; 576 | sourceTree = ""; 577 | }; 578 | 832341B11AAA6A8300B99B32 /* Products */ = { 579 | isa = PBXGroup; 580 | children = ( 581 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 582 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */, 583 | ); 584 | name = Products; 585 | sourceTree = ""; 586 | }; 587 | 83CBB9F61A601CBA00E9B192 = { 588 | isa = PBXGroup; 589 | children = ( 590 | 13B07FAE1A68108700A75B9A /* EtherWallet */, 591 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 592 | 00E356EF1AD99517003FC87E /* EtherWalletTests */, 593 | 83CBBA001A601CBA00E9B192 /* Products */, 594 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 595 | ); 596 | indentWidth = 2; 597 | sourceTree = ""; 598 | tabWidth = 2; 599 | usesTabs = 0; 600 | }; 601 | 83CBBA001A601CBA00E9B192 /* Products */ = { 602 | isa = PBXGroup; 603 | children = ( 604 | 13B07F961A680F5B00A75B9A /* EtherWallet.app */, 605 | 00E356EE1AD99517003FC87E /* EtherWalletTests.xctest */, 606 | 2D02E47B1E0B4A5D006451C7 /* EtherWallet-tvOS.app */, 607 | 2D02E4901E0B4A5D006451C7 /* EtherWallet-tvOSTests.xctest */, 608 | ); 609 | name = Products; 610 | sourceTree = ""; 611 | }; 612 | ADBDB9201DFEBF0600ED6528 /* Products */ = { 613 | isa = PBXGroup; 614 | children = ( 615 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */, 616 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */, 617 | ); 618 | name = Products; 619 | sourceTree = ""; 620 | }; 621 | /* End PBXGroup section */ 622 | 623 | /* Begin PBXNativeTarget section */ 624 | 00E356ED1AD99517003FC87E /* EtherWalletTests */ = { 625 | isa = PBXNativeTarget; 626 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "EtherWalletTests" */; 627 | buildPhases = ( 628 | 00E356EA1AD99517003FC87E /* Sources */, 629 | 00E356EB1AD99517003FC87E /* Frameworks */, 630 | 00E356EC1AD99517003FC87E /* Resources */, 631 | ); 632 | buildRules = ( 633 | ); 634 | dependencies = ( 635 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 636 | ); 637 | name = EtherWalletTests; 638 | productName = EtherWalletTests; 639 | productReference = 00E356EE1AD99517003FC87E /* EtherWalletTests.xctest */; 640 | productType = "com.apple.product-type.bundle.unit-test"; 641 | }; 642 | 13B07F861A680F5B00A75B9A /* EtherWallet */ = { 643 | isa = PBXNativeTarget; 644 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "EtherWallet" */; 645 | buildPhases = ( 646 | 13B07F871A680F5B00A75B9A /* Sources */, 647 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 648 | 13B07F8E1A680F5B00A75B9A /* Resources */, 649 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 650 | ); 651 | buildRules = ( 652 | ); 653 | dependencies = ( 654 | ); 655 | name = EtherWallet; 656 | productName = "Hello World"; 657 | productReference = 13B07F961A680F5B00A75B9A /* EtherWallet.app */; 658 | productType = "com.apple.product-type.application"; 659 | }; 660 | 2D02E47A1E0B4A5D006451C7 /* EtherWallet-tvOS */ = { 661 | isa = PBXNativeTarget; 662 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EtherWallet-tvOS" */; 663 | buildPhases = ( 664 | 2D02E4771E0B4A5D006451C7 /* Sources */, 665 | 2D02E4781E0B4A5D006451C7 /* Frameworks */, 666 | 2D02E4791E0B4A5D006451C7 /* Resources */, 667 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */, 668 | ); 669 | buildRules = ( 670 | ); 671 | dependencies = ( 672 | ); 673 | name = "EtherWallet-tvOS"; 674 | productName = "EtherWallet-tvOS"; 675 | productReference = 2D02E47B1E0B4A5D006451C7 /* EtherWallet-tvOS.app */; 676 | productType = "com.apple.product-type.application"; 677 | }; 678 | 2D02E48F1E0B4A5D006451C7 /* EtherWallet-tvOSTests */ = { 679 | isa = PBXNativeTarget; 680 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EtherWallet-tvOSTests" */; 681 | buildPhases = ( 682 | 2D02E48C1E0B4A5D006451C7 /* Sources */, 683 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 684 | 2D02E48E1E0B4A5D006451C7 /* Resources */, 685 | ); 686 | buildRules = ( 687 | ); 688 | dependencies = ( 689 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */, 690 | ); 691 | name = "EtherWallet-tvOSTests"; 692 | productName = "EtherWallet-tvOSTests"; 693 | productReference = 2D02E4901E0B4A5D006451C7 /* EtherWallet-tvOSTests.xctest */; 694 | productType = "com.apple.product-type.bundle.unit-test"; 695 | }; 696 | /* End PBXNativeTarget section */ 697 | 698 | /* Begin PBXProject section */ 699 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 700 | isa = PBXProject; 701 | attributes = { 702 | LastUpgradeCheck = 610; 703 | ORGANIZATIONNAME = Facebook; 704 | TargetAttributes = { 705 | 00E356ED1AD99517003FC87E = { 706 | CreatedOnToolsVersion = 6.2; 707 | TestTargetID = 13B07F861A680F5B00A75B9A; 708 | }; 709 | 2D02E47A1E0B4A5D006451C7 = { 710 | CreatedOnToolsVersion = 8.2.1; 711 | ProvisioningStyle = Automatic; 712 | }; 713 | 2D02E48F1E0B4A5D006451C7 = { 714 | CreatedOnToolsVersion = 8.2.1; 715 | ProvisioningStyle = Automatic; 716 | TestTargetID = 2D02E47A1E0B4A5D006451C7; 717 | }; 718 | }; 719 | }; 720 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "EtherWallet" */; 721 | compatibilityVersion = "Xcode 3.2"; 722 | developmentRegion = English; 723 | hasScannedForEncodings = 0; 724 | knownRegions = ( 725 | en, 726 | Base, 727 | ); 728 | mainGroup = 83CBB9F61A601CBA00E9B192; 729 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 730 | projectDirPath = ""; 731 | projectReferences = ( 732 | { 733 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 734 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 735 | }, 736 | { 737 | ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */; 738 | ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */; 739 | }, 740 | { 741 | ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */; 742 | ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */; 743 | }, 744 | { 745 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 746 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 747 | }, 748 | { 749 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 750 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 751 | }, 752 | { 753 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 754 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 755 | }, 756 | { 757 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 758 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 759 | }, 760 | { 761 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 762 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 763 | }, 764 | { 765 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 766 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 767 | }, 768 | { 769 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 770 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 771 | }, 772 | { 773 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 774 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 775 | }, 776 | { 777 | ProductGroup = 146834001AC3E56700842450 /* Products */; 778 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 779 | }, 780 | ); 781 | projectRoot = ""; 782 | targets = ( 783 | 13B07F861A680F5B00A75B9A /* EtherWallet */, 784 | 00E356ED1AD99517003FC87E /* EtherWalletTests */, 785 | 2D02E47A1E0B4A5D006451C7 /* EtherWallet-tvOS */, 786 | 2D02E48F1E0B4A5D006451C7 /* EtherWallet-tvOSTests */, 787 | ); 788 | }; 789 | /* End PBXProject section */ 790 | 791 | /* Begin PBXReferenceProxy section */ 792 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 793 | isa = PBXReferenceProxy; 794 | fileType = archive.ar; 795 | path = libRCTActionSheet.a; 796 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 797 | sourceTree = BUILT_PRODUCTS_DIR; 798 | }; 799 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 800 | isa = PBXReferenceProxy; 801 | fileType = archive.ar; 802 | path = libRCTGeolocation.a; 803 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 804 | sourceTree = BUILT_PRODUCTS_DIR; 805 | }; 806 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 807 | isa = PBXReferenceProxy; 808 | fileType = archive.ar; 809 | path = libRCTImage.a; 810 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 811 | sourceTree = BUILT_PRODUCTS_DIR; 812 | }; 813 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 814 | isa = PBXReferenceProxy; 815 | fileType = archive.ar; 816 | path = libRCTNetwork.a; 817 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 818 | sourceTree = BUILT_PRODUCTS_DIR; 819 | }; 820 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 821 | isa = PBXReferenceProxy; 822 | fileType = archive.ar; 823 | path = libRCTVibration.a; 824 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 825 | sourceTree = BUILT_PRODUCTS_DIR; 826 | }; 827 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 828 | isa = PBXReferenceProxy; 829 | fileType = archive.ar; 830 | path = libRCTSettings.a; 831 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 832 | sourceTree = BUILT_PRODUCTS_DIR; 833 | }; 834 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 835 | isa = PBXReferenceProxy; 836 | fileType = archive.ar; 837 | path = libRCTWebSocket.a; 838 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 839 | sourceTree = BUILT_PRODUCTS_DIR; 840 | }; 841 | 146834041AC3E56700842450 /* libReact.a */ = { 842 | isa = PBXReferenceProxy; 843 | fileType = archive.ar; 844 | path = libReact.a; 845 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 846 | sourceTree = BUILT_PRODUCTS_DIR; 847 | }; 848 | 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = { 849 | isa = PBXReferenceProxy; 850 | fileType = archive.ar; 851 | path = "libRCTBlob-tvOS.a"; 852 | remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */; 853 | sourceTree = BUILT_PRODUCTS_DIR; 854 | }; 855 | 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = { 856 | isa = PBXReferenceProxy; 857 | fileType = archive.ar; 858 | path = libfishhook.a; 859 | remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */; 860 | sourceTree = BUILT_PRODUCTS_DIR; 861 | }; 862 | 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = { 863 | isa = PBXReferenceProxy; 864 | fileType = archive.ar; 865 | path = "libfishhook-tvOS.a"; 866 | remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */; 867 | sourceTree = BUILT_PRODUCTS_DIR; 868 | }; 869 | 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = { 870 | isa = PBXReferenceProxy; 871 | fileType = archive.ar; 872 | path = libjsinspector.a; 873 | remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */; 874 | sourceTree = BUILT_PRODUCTS_DIR; 875 | }; 876 | 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = { 877 | isa = PBXReferenceProxy; 878 | fileType = archive.ar; 879 | path = "libjsinspector-tvOS.a"; 880 | remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */; 881 | sourceTree = BUILT_PRODUCTS_DIR; 882 | }; 883 | 2DF0FFE32056DD460020B375 /* libthird-party.a */ = { 884 | isa = PBXReferenceProxy; 885 | fileType = archive.ar; 886 | path = "libthird-party.a"; 887 | remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */; 888 | sourceTree = BUILT_PRODUCTS_DIR; 889 | }; 890 | 2DF0FFE52056DD460020B375 /* libthird-party.a */ = { 891 | isa = PBXReferenceProxy; 892 | fileType = archive.ar; 893 | path = "libthird-party.a"; 894 | remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */; 895 | sourceTree = BUILT_PRODUCTS_DIR; 896 | }; 897 | 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = { 898 | isa = PBXReferenceProxy; 899 | fileType = archive.ar; 900 | path = "libdouble-conversion.a"; 901 | remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */; 902 | sourceTree = BUILT_PRODUCTS_DIR; 903 | }; 904 | 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = { 905 | isa = PBXReferenceProxy; 906 | fileType = archive.ar; 907 | path = "libdouble-conversion.a"; 908 | remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */; 909 | sourceTree = BUILT_PRODUCTS_DIR; 910 | }; 911 | 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = { 912 | isa = PBXReferenceProxy; 913 | fileType = archive.ar; 914 | path = libprivatedata.a; 915 | remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */; 916 | sourceTree = BUILT_PRODUCTS_DIR; 917 | }; 918 | 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = { 919 | isa = PBXReferenceProxy; 920 | fileType = archive.ar; 921 | path = "libprivatedata-tvOS.a"; 922 | remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */; 923 | sourceTree = BUILT_PRODUCTS_DIR; 924 | }; 925 | 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = { 926 | isa = PBXReferenceProxy; 927 | fileType = archive.ar; 928 | path = "libRCTImage-tvOS.a"; 929 | remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */; 930 | sourceTree = BUILT_PRODUCTS_DIR; 931 | }; 932 | 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = { 933 | isa = PBXReferenceProxy; 934 | fileType = archive.ar; 935 | path = "libRCTLinking-tvOS.a"; 936 | remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */; 937 | sourceTree = BUILT_PRODUCTS_DIR; 938 | }; 939 | 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = { 940 | isa = PBXReferenceProxy; 941 | fileType = archive.ar; 942 | path = "libRCTNetwork-tvOS.a"; 943 | remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */; 944 | sourceTree = BUILT_PRODUCTS_DIR; 945 | }; 946 | 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = { 947 | isa = PBXReferenceProxy; 948 | fileType = archive.ar; 949 | path = "libRCTSettings-tvOS.a"; 950 | remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */; 951 | sourceTree = BUILT_PRODUCTS_DIR; 952 | }; 953 | 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = { 954 | isa = PBXReferenceProxy; 955 | fileType = archive.ar; 956 | path = "libRCTText-tvOS.a"; 957 | remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */; 958 | sourceTree = BUILT_PRODUCTS_DIR; 959 | }; 960 | 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = { 961 | isa = PBXReferenceProxy; 962 | fileType = archive.ar; 963 | path = "libRCTWebSocket-tvOS.a"; 964 | remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */; 965 | sourceTree = BUILT_PRODUCTS_DIR; 966 | }; 967 | 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = { 968 | isa = PBXReferenceProxy; 969 | fileType = archive.ar; 970 | path = libReact.a; 971 | remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */; 972 | sourceTree = BUILT_PRODUCTS_DIR; 973 | }; 974 | 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = { 975 | isa = PBXReferenceProxy; 976 | fileType = archive.ar; 977 | path = libyoga.a; 978 | remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */; 979 | sourceTree = BUILT_PRODUCTS_DIR; 980 | }; 981 | 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = { 982 | isa = PBXReferenceProxy; 983 | fileType = archive.ar; 984 | path = libyoga.a; 985 | remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */; 986 | sourceTree = BUILT_PRODUCTS_DIR; 987 | }; 988 | 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = { 989 | isa = PBXReferenceProxy; 990 | fileType = archive.ar; 991 | path = libcxxreact.a; 992 | remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */; 993 | sourceTree = BUILT_PRODUCTS_DIR; 994 | }; 995 | 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = { 996 | isa = PBXReferenceProxy; 997 | fileType = archive.ar; 998 | path = libcxxreact.a; 999 | remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */; 1000 | sourceTree = BUILT_PRODUCTS_DIR; 1001 | }; 1002 | 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = { 1003 | isa = PBXReferenceProxy; 1004 | fileType = archive.ar; 1005 | path = libjschelpers.a; 1006 | remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */; 1007 | sourceTree = BUILT_PRODUCTS_DIR; 1008 | }; 1009 | 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = { 1010 | isa = PBXReferenceProxy; 1011 | fileType = archive.ar; 1012 | path = libjschelpers.a; 1013 | remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */; 1014 | sourceTree = BUILT_PRODUCTS_DIR; 1015 | }; 1016 | 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1017 | isa = PBXReferenceProxy; 1018 | fileType = archive.ar; 1019 | path = libRCTAnimation.a; 1020 | remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1021 | sourceTree = BUILT_PRODUCTS_DIR; 1022 | }; 1023 | 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = { 1024 | isa = PBXReferenceProxy; 1025 | fileType = archive.ar; 1026 | path = libRCTAnimation.a; 1027 | remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */; 1028 | sourceTree = BUILT_PRODUCTS_DIR; 1029 | }; 1030 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 1031 | isa = PBXReferenceProxy; 1032 | fileType = archive.ar; 1033 | path = libRCTLinking.a; 1034 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 1035 | sourceTree = BUILT_PRODUCTS_DIR; 1036 | }; 1037 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 1038 | isa = PBXReferenceProxy; 1039 | fileType = archive.ar; 1040 | path = libRCTText.a; 1041 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 1042 | sourceTree = BUILT_PRODUCTS_DIR; 1043 | }; 1044 | ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = { 1045 | isa = PBXReferenceProxy; 1046 | fileType = archive.ar; 1047 | path = libRCTBlob.a; 1048 | remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */; 1049 | sourceTree = BUILT_PRODUCTS_DIR; 1050 | }; 1051 | /* End PBXReferenceProxy section */ 1052 | 1053 | /* Begin PBXResourcesBuildPhase section */ 1054 | 00E356EC1AD99517003FC87E /* Resources */ = { 1055 | isa = PBXResourcesBuildPhase; 1056 | buildActionMask = 2147483647; 1057 | files = ( 1058 | ); 1059 | runOnlyForDeploymentPostprocessing = 0; 1060 | }; 1061 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 1062 | isa = PBXResourcesBuildPhase; 1063 | buildActionMask = 2147483647; 1064 | files = ( 1065 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 1066 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 1067 | ); 1068 | runOnlyForDeploymentPostprocessing = 0; 1069 | }; 1070 | 2D02E4791E0B4A5D006451C7 /* Resources */ = { 1071 | isa = PBXResourcesBuildPhase; 1072 | buildActionMask = 2147483647; 1073 | files = ( 1074 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */, 1075 | ); 1076 | runOnlyForDeploymentPostprocessing = 0; 1077 | }; 1078 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = { 1079 | isa = PBXResourcesBuildPhase; 1080 | buildActionMask = 2147483647; 1081 | files = ( 1082 | ); 1083 | runOnlyForDeploymentPostprocessing = 0; 1084 | }; 1085 | /* End PBXResourcesBuildPhase section */ 1086 | 1087 | /* Begin PBXShellScriptBuildPhase section */ 1088 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 1089 | isa = PBXShellScriptBuildPhase; 1090 | buildActionMask = 2147483647; 1091 | files = ( 1092 | ); 1093 | inputPaths = ( 1094 | ); 1095 | name = "Bundle React Native code and images"; 1096 | outputPaths = ( 1097 | ); 1098 | runOnlyForDeploymentPostprocessing = 0; 1099 | shellPath = /bin/sh; 1100 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1101 | }; 1102 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = { 1103 | isa = PBXShellScriptBuildPhase; 1104 | buildActionMask = 2147483647; 1105 | files = ( 1106 | ); 1107 | inputPaths = ( 1108 | ); 1109 | name = "Bundle React Native Code And Images"; 1110 | outputPaths = ( 1111 | ); 1112 | runOnlyForDeploymentPostprocessing = 0; 1113 | shellPath = /bin/sh; 1114 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 1115 | }; 1116 | /* End PBXShellScriptBuildPhase section */ 1117 | 1118 | /* Begin PBXSourcesBuildPhase section */ 1119 | 00E356EA1AD99517003FC87E /* Sources */ = { 1120 | isa = PBXSourcesBuildPhase; 1121 | buildActionMask = 2147483647; 1122 | files = ( 1123 | 00E356F31AD99517003FC87E /* EtherWalletTests.m in Sources */, 1124 | ); 1125 | runOnlyForDeploymentPostprocessing = 0; 1126 | }; 1127 | 13B07F871A680F5B00A75B9A /* Sources */ = { 1128 | isa = PBXSourcesBuildPhase; 1129 | buildActionMask = 2147483647; 1130 | files = ( 1131 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 1132 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 1133 | ); 1134 | runOnlyForDeploymentPostprocessing = 0; 1135 | }; 1136 | 2D02E4771E0B4A5D006451C7 /* Sources */ = { 1137 | isa = PBXSourcesBuildPhase; 1138 | buildActionMask = 2147483647; 1139 | files = ( 1140 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */, 1141 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */, 1142 | ); 1143 | runOnlyForDeploymentPostprocessing = 0; 1144 | }; 1145 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = { 1146 | isa = PBXSourcesBuildPhase; 1147 | buildActionMask = 2147483647; 1148 | files = ( 1149 | 2DCD954D1E0B4F2C00145EB5 /* EtherWalletTests.m in Sources */, 1150 | ); 1151 | runOnlyForDeploymentPostprocessing = 0; 1152 | }; 1153 | /* End PBXSourcesBuildPhase section */ 1154 | 1155 | /* Begin PBXTargetDependency section */ 1156 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 1157 | isa = PBXTargetDependency; 1158 | target = 13B07F861A680F5B00A75B9A /* EtherWallet */; 1159 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 1160 | }; 1161 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = { 1162 | isa = PBXTargetDependency; 1163 | target = 2D02E47A1E0B4A5D006451C7 /* EtherWallet-tvOS */; 1164 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */; 1165 | }; 1166 | /* End PBXTargetDependency section */ 1167 | 1168 | /* Begin PBXVariantGroup section */ 1169 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 1170 | isa = PBXVariantGroup; 1171 | children = ( 1172 | 13B07FB21A68108700A75B9A /* Base */, 1173 | ); 1174 | name = LaunchScreen.xib; 1175 | path = EtherWallet; 1176 | sourceTree = ""; 1177 | }; 1178 | /* End PBXVariantGroup section */ 1179 | 1180 | /* Begin XCBuildConfiguration section */ 1181 | 00E356F61AD99517003FC87E /* Debug */ = { 1182 | isa = XCBuildConfiguration; 1183 | buildSettings = { 1184 | BUNDLE_LOADER = "$(TEST_HOST)"; 1185 | GCC_PREPROCESSOR_DEFINITIONS = ( 1186 | "DEBUG=1", 1187 | "$(inherited)", 1188 | ); 1189 | INFOPLIST_FILE = EtherWalletTests/Info.plist; 1190 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1191 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1192 | OTHER_LDFLAGS = ( 1193 | "-ObjC", 1194 | "-lc++", 1195 | ); 1196 | PRODUCT_NAME = "$(TARGET_NAME)"; 1197 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EtherWallet.app/EtherWallet"; 1198 | LIBRARY_SEARCH_PATHS = ( 1199 | "$(inherited)", 1200 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1201 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1202 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1203 | ); 1204 | HEADER_SEARCH_PATHS = ( 1205 | "$(inherited)", 1206 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1207 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1208 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1209 | ); 1210 | }; 1211 | name = Debug; 1212 | }; 1213 | 00E356F71AD99517003FC87E /* Release */ = { 1214 | isa = XCBuildConfiguration; 1215 | buildSettings = { 1216 | BUNDLE_LOADER = "$(TEST_HOST)"; 1217 | COPY_PHASE_STRIP = NO; 1218 | INFOPLIST_FILE = EtherWalletTests/Info.plist; 1219 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1220 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1221 | OTHER_LDFLAGS = ( 1222 | "-ObjC", 1223 | "-lc++", 1224 | ); 1225 | PRODUCT_NAME = "$(TARGET_NAME)"; 1226 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EtherWallet.app/EtherWallet"; 1227 | LIBRARY_SEARCH_PATHS = ( 1228 | "$(inherited)", 1229 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1230 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1231 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1232 | ); 1233 | HEADER_SEARCH_PATHS = ( 1234 | "$(inherited)", 1235 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1236 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1237 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1238 | ); 1239 | }; 1240 | name = Release; 1241 | }; 1242 | 13B07F941A680F5B00A75B9A /* Debug */ = { 1243 | isa = XCBuildConfiguration; 1244 | buildSettings = { 1245 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1246 | CURRENT_PROJECT_VERSION = 1; 1247 | DEAD_CODE_STRIPPING = NO; 1248 | INFOPLIST_FILE = EtherWallet/Info.plist; 1249 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1250 | OTHER_LDFLAGS = ( 1251 | "$(inherited)", 1252 | "-ObjC", 1253 | "-lc++", 1254 | ); 1255 | PRODUCT_NAME = EtherWallet; 1256 | VERSIONING_SYSTEM = "apple-generic"; 1257 | HEADER_SEARCH_PATHS = ( 1258 | "$(inherited)", 1259 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1260 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1261 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1262 | ); 1263 | }; 1264 | name = Debug; 1265 | }; 1266 | 13B07F951A680F5B00A75B9A /* Release */ = { 1267 | isa = XCBuildConfiguration; 1268 | buildSettings = { 1269 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 1270 | CURRENT_PROJECT_VERSION = 1; 1271 | INFOPLIST_FILE = EtherWallet/Info.plist; 1272 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1273 | OTHER_LDFLAGS = ( 1274 | "$(inherited)", 1275 | "-ObjC", 1276 | "-lc++", 1277 | ); 1278 | PRODUCT_NAME = EtherWallet; 1279 | VERSIONING_SYSTEM = "apple-generic"; 1280 | HEADER_SEARCH_PATHS = ( 1281 | "$(inherited)", 1282 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1283 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1284 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1285 | ); 1286 | }; 1287 | name = Release; 1288 | }; 1289 | 2D02E4971E0B4A5E006451C7 /* Debug */ = { 1290 | isa = XCBuildConfiguration; 1291 | buildSettings = { 1292 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1293 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1294 | CLANG_ANALYZER_NONNULL = YES; 1295 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1296 | CLANG_WARN_INFINITE_RECURSION = YES; 1297 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1298 | DEBUG_INFORMATION_FORMAT = dwarf; 1299 | ENABLE_TESTABILITY = YES; 1300 | GCC_NO_COMMON_BLOCKS = YES; 1301 | INFOPLIST_FILE = "EtherWallet-tvOS/Info.plist"; 1302 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1303 | OTHER_LDFLAGS = ( 1304 | "-ObjC", 1305 | "-lc++", 1306 | ); 1307 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EtherWallet-tvOS"; 1308 | PRODUCT_NAME = "$(TARGET_NAME)"; 1309 | SDKROOT = appletvos; 1310 | TARGETED_DEVICE_FAMILY = 3; 1311 | TVOS_DEPLOYMENT_TARGET = 9.2; 1312 | LIBRARY_SEARCH_PATHS = ( 1313 | "$(inherited)", 1314 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1315 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1316 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1317 | ); 1318 | HEADER_SEARCH_PATHS = ( 1319 | "$(inherited)", 1320 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1321 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1322 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1323 | ); 1324 | }; 1325 | name = Debug; 1326 | }; 1327 | 2D02E4981E0B4A5E006451C7 /* Release */ = { 1328 | isa = XCBuildConfiguration; 1329 | buildSettings = { 1330 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; 1331 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 1332 | CLANG_ANALYZER_NONNULL = YES; 1333 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1334 | CLANG_WARN_INFINITE_RECURSION = YES; 1335 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1336 | COPY_PHASE_STRIP = NO; 1337 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1338 | GCC_NO_COMMON_BLOCKS = YES; 1339 | INFOPLIST_FILE = "EtherWallet-tvOS/Info.plist"; 1340 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 1341 | OTHER_LDFLAGS = ( 1342 | "-ObjC", 1343 | "-lc++", 1344 | ); 1345 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EtherWallet-tvOS"; 1346 | PRODUCT_NAME = "$(TARGET_NAME)"; 1347 | SDKROOT = appletvos; 1348 | TARGETED_DEVICE_FAMILY = 3; 1349 | TVOS_DEPLOYMENT_TARGET = 9.2; 1350 | LIBRARY_SEARCH_PATHS = ( 1351 | "$(inherited)", 1352 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1353 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1354 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1355 | ); 1356 | HEADER_SEARCH_PATHS = ( 1357 | "$(inherited)", 1358 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1359 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1360 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1361 | ); 1362 | }; 1363 | name = Release; 1364 | }; 1365 | 2D02E4991E0B4A5E006451C7 /* Debug */ = { 1366 | isa = XCBuildConfiguration; 1367 | buildSettings = { 1368 | BUNDLE_LOADER = "$(TEST_HOST)"; 1369 | CLANG_ANALYZER_NONNULL = YES; 1370 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1371 | CLANG_WARN_INFINITE_RECURSION = YES; 1372 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1373 | DEBUG_INFORMATION_FORMAT = dwarf; 1374 | ENABLE_TESTABILITY = YES; 1375 | GCC_NO_COMMON_BLOCKS = YES; 1376 | INFOPLIST_FILE = "EtherWallet-tvOSTests/Info.plist"; 1377 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1378 | OTHER_LDFLAGS = ( 1379 | "-ObjC", 1380 | "-lc++", 1381 | ); 1382 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EtherWallet-tvOSTests"; 1383 | PRODUCT_NAME = "$(TARGET_NAME)"; 1384 | SDKROOT = appletvos; 1385 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EtherWallet-tvOS.app/EtherWallet-tvOS"; 1386 | TVOS_DEPLOYMENT_TARGET = 10.1; 1387 | LIBRARY_SEARCH_PATHS = ( 1388 | "$(inherited)", 1389 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1390 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1391 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1392 | ); 1393 | HEADER_SEARCH_PATHS = ( 1394 | "$(inherited)", 1395 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1396 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1397 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1398 | ); 1399 | }; 1400 | name = Debug; 1401 | }; 1402 | 2D02E49A1E0B4A5E006451C7 /* Release */ = { 1403 | isa = XCBuildConfiguration; 1404 | buildSettings = { 1405 | BUNDLE_LOADER = "$(TEST_HOST)"; 1406 | CLANG_ANALYZER_NONNULL = YES; 1407 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1408 | CLANG_WARN_INFINITE_RECURSION = YES; 1409 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1410 | COPY_PHASE_STRIP = NO; 1411 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1412 | GCC_NO_COMMON_BLOCKS = YES; 1413 | INFOPLIST_FILE = "EtherWallet-tvOSTests/Info.plist"; 1414 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 1415 | OTHER_LDFLAGS = ( 1416 | "-ObjC", 1417 | "-lc++", 1418 | ); 1419 | PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.EtherWallet-tvOSTests"; 1420 | PRODUCT_NAME = "$(TARGET_NAME)"; 1421 | SDKROOT = appletvos; 1422 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/EtherWallet-tvOS.app/EtherWallet-tvOS"; 1423 | TVOS_DEPLOYMENT_TARGET = 10.1; 1424 | LIBRARY_SEARCH_PATHS = ( 1425 | "$(inherited)", 1426 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1427 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1428 | "\"$(SRCROOT)/$(TARGET_NAME)\"", 1429 | ); 1430 | HEADER_SEARCH_PATHS = ( 1431 | "$(inherited)", 1432 | "$(SRCROOT)/../node_modules/react-native-camera/ios/**", 1433 | "$(SRCROOT)/../node_modules/react-native-permissions/ios/**", 1434 | "$(SRCROOT)/../node_modules/react-native-sensitive-info/ios/RNSensitiveInfo/**", 1435 | ); 1436 | }; 1437 | name = Release; 1438 | }; 1439 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 1440 | isa = XCBuildConfiguration; 1441 | buildSettings = { 1442 | ALWAYS_SEARCH_USER_PATHS = NO; 1443 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1444 | CLANG_CXX_LIBRARY = "libc++"; 1445 | CLANG_ENABLE_MODULES = YES; 1446 | CLANG_ENABLE_OBJC_ARC = YES; 1447 | CLANG_WARN_BOOL_CONVERSION = YES; 1448 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1449 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1450 | CLANG_WARN_EMPTY_BODY = YES; 1451 | CLANG_WARN_ENUM_CONVERSION = YES; 1452 | CLANG_WARN_INT_CONVERSION = YES; 1453 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1454 | CLANG_WARN_UNREACHABLE_CODE = YES; 1455 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1456 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1457 | COPY_PHASE_STRIP = NO; 1458 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1459 | GCC_C_LANGUAGE_STANDARD = gnu99; 1460 | GCC_DYNAMIC_NO_PIC = NO; 1461 | GCC_OPTIMIZATION_LEVEL = 0; 1462 | GCC_PREPROCESSOR_DEFINITIONS = ( 1463 | "DEBUG=1", 1464 | "$(inherited)", 1465 | ); 1466 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 1467 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1468 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1469 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1470 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1471 | GCC_WARN_UNUSED_FUNCTION = YES; 1472 | GCC_WARN_UNUSED_VARIABLE = YES; 1473 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1474 | MTL_ENABLE_DEBUG_INFO = YES; 1475 | ONLY_ACTIVE_ARCH = YES; 1476 | SDKROOT = iphoneos; 1477 | }; 1478 | name = Debug; 1479 | }; 1480 | 83CBBA211A601CBA00E9B192 /* Release */ = { 1481 | isa = XCBuildConfiguration; 1482 | buildSettings = { 1483 | ALWAYS_SEARCH_USER_PATHS = NO; 1484 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 1485 | CLANG_CXX_LIBRARY = "libc++"; 1486 | CLANG_ENABLE_MODULES = YES; 1487 | CLANG_ENABLE_OBJC_ARC = YES; 1488 | CLANG_WARN_BOOL_CONVERSION = YES; 1489 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1490 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1491 | CLANG_WARN_EMPTY_BODY = YES; 1492 | CLANG_WARN_ENUM_CONVERSION = YES; 1493 | CLANG_WARN_INT_CONVERSION = YES; 1494 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1495 | CLANG_WARN_UNREACHABLE_CODE = YES; 1496 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1497 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 1498 | COPY_PHASE_STRIP = YES; 1499 | ENABLE_NS_ASSERTIONS = NO; 1500 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1501 | GCC_C_LANGUAGE_STANDARD = gnu99; 1502 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1503 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1504 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1505 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1506 | GCC_WARN_UNUSED_FUNCTION = YES; 1507 | GCC_WARN_UNUSED_VARIABLE = YES; 1508 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 1509 | MTL_ENABLE_DEBUG_INFO = NO; 1510 | SDKROOT = iphoneos; 1511 | VALIDATE_PRODUCT = YES; 1512 | }; 1513 | name = Release; 1514 | }; 1515 | /* End XCBuildConfiguration section */ 1516 | 1517 | /* Begin XCConfigurationList section */ 1518 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "EtherWalletTests" */ = { 1519 | isa = XCConfigurationList; 1520 | buildConfigurations = ( 1521 | 00E356F61AD99517003FC87E /* Debug */, 1522 | 00E356F71AD99517003FC87E /* Release */, 1523 | ); 1524 | defaultConfigurationIsVisible = 0; 1525 | defaultConfigurationName = Release; 1526 | }; 1527 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "EtherWallet" */ = { 1528 | isa = XCConfigurationList; 1529 | buildConfigurations = ( 1530 | 13B07F941A680F5B00A75B9A /* Debug */, 1531 | 13B07F951A680F5B00A75B9A /* Release */, 1532 | ); 1533 | defaultConfigurationIsVisible = 0; 1534 | defaultConfigurationName = Release; 1535 | }; 1536 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EtherWallet-tvOS" */ = { 1537 | isa = XCConfigurationList; 1538 | buildConfigurations = ( 1539 | 2D02E4971E0B4A5E006451C7 /* Debug */, 1540 | 2D02E4981E0B4A5E006451C7 /* Release */, 1541 | ); 1542 | defaultConfigurationIsVisible = 0; 1543 | defaultConfigurationName = Release; 1544 | }; 1545 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "EtherWallet-tvOSTests" */ = { 1546 | isa = XCConfigurationList; 1547 | buildConfigurations = ( 1548 | 2D02E4991E0B4A5E006451C7 /* Debug */, 1549 | 2D02E49A1E0B4A5E006451C7 /* Release */, 1550 | ); 1551 | defaultConfigurationIsVisible = 0; 1552 | defaultConfigurationName = Release; 1553 | }; 1554 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "EtherWallet" */ = { 1555 | isa = XCConfigurationList; 1556 | buildConfigurations = ( 1557 | 83CBBA201A601CBA00E9B192 /* Debug */, 1558 | 83CBBA211A601CBA00E9B192 /* Release */, 1559 | ); 1560 | defaultConfigurationIsVisible = 0; 1561 | defaultConfigurationName = Release; 1562 | }; 1563 | /* End XCConfigurationList section */ 1564 | }; 1565 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 1566 | } 1567 | --------------------------------------------------------------------------------