= yield call([
49 | characteristic,
50 | characteristic.descriptors,
51 | ]);
52 |
53 | for (const descriptor of descriptors) {
54 | yield put(log('* Found descriptor: ' + descriptor.uuid));
55 | const d: Descriptor = yield call([descriptor, descriptor.read]);
56 | yield put(log('Descriptor value: ' + (d.value || 'null')));
57 | if (d.uuid === '00002902-0000-1000-8000-00805f9b34fb') {
58 | yield put(log('Skipping CCC'));
59 | continue;
60 | }
61 | try {
62 | yield call([descriptor, descriptor.write], 'AAA=');
63 | } catch (error) {
64 | const bleError: BleError = error;
65 | if (bleError.errorCode === BleErrorCode.DescriptorWriteFailed) {
66 | yield put(log('Cannot write to: ' + d.uuid));
67 | } else {
68 | throw error;
69 | }
70 | }
71 | }
72 |
73 | yield put(log('Found characteristic: ' + characteristic.uuid));
74 | if (characteristic.isReadable) {
75 | yield put(log('Reading value...'));
76 | var c = yield call([characteristic, characteristic.read]);
77 | yield put(log('Got base64 value: ' + c.value));
78 | if (characteristic.isWritableWithResponse) {
79 | yield call(
80 | [characteristic, characteristic.writeWithResponse],
81 | c.value,
82 | );
83 | yield put(log('Successfully written value back'));
84 | }
85 | }
86 | }
87 | }
88 | } catch (error) {
89 | yield put(logError(error));
90 | return false;
91 | }
92 |
93 | return true;
94 | }
95 |
96 | function* readTemperature(device: Device): Generator<*, boolean, *> {
97 | yield put(log('Read temperature'));
98 | return false;
99 | }
100 |
--------------------------------------------------------------------------------
/android/app/src/debug/java/com/sensortag/ReactNativeFlipper.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the LICENSE file in the root
5 | * directory of this source tree.
6 | */
7 | package com.sensortag;
8 |
9 | import android.content.Context;
10 | import com.facebook.flipper.android.AndroidFlipperClient;
11 | import com.facebook.flipper.android.utils.FlipperUtils;
12 | import com.facebook.flipper.core.FlipperClient;
13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping;
17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22 | import com.facebook.react.ReactInstanceManager;
23 | import com.facebook.react.bridge.ReactContext;
24 | import com.facebook.react.modules.network.NetworkingModule;
25 | import okhttp3.OkHttpClient;
26 |
27 | public class ReactNativeFlipper {
28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
29 | if (FlipperUtils.shouldEnableFlipper(context)) {
30 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
31 |
32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
33 | client.addPlugin(new ReactFlipperPlugin());
34 | client.addPlugin(new DatabasesFlipperPlugin(context));
35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
36 | client.addPlugin(CrashReporterPlugin.getInstance());
37 |
38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
39 | NetworkingModule.setCustomClientBuilder(
40 | new NetworkingModule.CustomClientBuilder() {
41 | @Override
42 | public void apply(OkHttpClient.Builder builder) {
43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
44 | }
45 | });
46 | client.addPlugin(networkFlipperPlugin);
47 | client.start();
48 |
49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
50 | // Hence we run if after all native modules have been initialized
51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
52 | if (reactContext == null) {
53 | reactInstanceManager.addReactInstanceEventListener(
54 | new ReactInstanceManager.ReactInstanceEventListener() {
55 | @Override
56 | public void onReactContextInitialized(ReactContext reactContext) {
57 | reactInstanceManager.removeReactInstanceEventListener(this);
58 | reactContext.runOnNativeModulesQueueThread(
59 | new Runnable() {
60 | @Override
61 | public void run() {
62 | client.addPlugin(new FrescoFlipperPlugin());
63 | }
64 | });
65 | }
66 | });
67 | } else {
68 | client.addPlugin(new FrescoFlipperPlugin());
69 | }
70 | }
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/ios/SensorTag.xcodeproj/xcshareddata/xcschemes/SensorTag.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/ios/SensorTag.xcodeproj/xcshareddata/xcschemes/SensorTag-tvOS.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/ios/SensorTag/Base.lproj/LaunchScreen.xib:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
22 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/src/Reducer.js:
--------------------------------------------------------------------------------
1 | // @flow
2 |
3 | import {State, Device, BleError} from 'react-native-ble-plx';
4 |
5 | export type Action =
6 | | LogAction
7 | | ClearLogsAction
8 | | ConnectAction
9 | | DisconnectAction
10 | | UpdateConnectionStateAction
11 | | BleStateUpdatedAction
12 | | SensorTagFoundAction
13 | | ForgetSensorTagAction
14 | | ExecuteTestAction
15 | | TestFinishedAction;
16 |
17 | export type LogAction = {|
18 | type: 'LOG',
19 | message: string,
20 | |};
21 |
22 | export type ClearLogsAction = {|
23 | type: 'CLEAR_LOGS',
24 | |};
25 |
26 | export type ConnectAction = {|
27 | type: 'CONNECT',
28 | device: Device,
29 | |};
30 |
31 | export type DisconnectAction = {|
32 | type: 'DISCONNECT',
33 | |};
34 |
35 | export type UpdateConnectionStateAction = {|
36 | type: 'UPDATE_CONNECTION_STATE',
37 | state: $Keys,
38 | |};
39 |
40 | export type BleStateUpdatedAction = {|
41 | type: 'BLE_STATE_UPDATED',
42 | state: $Keys,
43 | |};
44 |
45 | export type SensorTagFoundAction = {|
46 | type: 'SENSOR_TAG_FOUND',
47 | device: Device,
48 | |};
49 |
50 | export type ForgetSensorTagAction = {|
51 | type: 'FORGET_SENSOR_TAG',
52 | |};
53 |
54 | export type ExecuteTestAction = {|
55 | type: 'EXECUTE_TEST',
56 | id: string,
57 | |};
58 |
59 | export type TestFinishedAction = {|
60 | type: 'TEST_FINISHED',
61 | |};
62 |
63 | export type ReduxState = {
64 | logs: Array,
65 | activeError: ?BleError,
66 | activeSensorTag: ?Device,
67 | connectionState: $Keys,
68 | currentTest: ?string,
69 | bleState: $Keys,
70 | };
71 |
72 | export const ConnectionState = {
73 | DISCONNECTED: 'DISCONNECTED',
74 | CONNECTING: 'CONNECTING',
75 | DISCOVERING: 'DISCOVERING',
76 | CONNECTED: 'CONNECTED',
77 | DISCONNECTING: 'DISCONNECTING',
78 | };
79 |
80 | export const initialState: ReduxState = {
81 | bleState: State.Unknown,
82 | activeError: null,
83 | activeSensorTag: null,
84 | connectionState: ConnectionState.DISCONNECTED,
85 | currentTest: null,
86 | logs: [],
87 | };
88 |
89 | export function log(message: string): LogAction {
90 | return {
91 | type: 'LOG',
92 | message,
93 | };
94 | }
95 |
96 | export function logError(error: BleError) {
97 | return log(
98 | 'ERROR: ' +
99 | error.message +
100 | ', ATT: ' +
101 | (error.attErrorCode || 'null') +
102 | ', iOS: ' +
103 | (error.iosErrorCode || 'null') +
104 | ', android: ' +
105 | (error.androidErrorCode || 'null') +
106 | ', reason: ' +
107 | (error.reason || 'null'),
108 | );
109 | }
110 |
111 | export function clearLogs(): ClearLogsAction {
112 | return {
113 | type: 'CLEAR_LOGS',
114 | };
115 | }
116 |
117 | export function connect(device: Device): ConnectAction {
118 | return {
119 | type: 'CONNECT',
120 | device,
121 | };
122 | }
123 |
124 | export function updateConnectionState(
125 | state: $Keys,
126 | ): UpdateConnectionStateAction {
127 | return {
128 | type: 'UPDATE_CONNECTION_STATE',
129 | state,
130 | };
131 | }
132 |
133 | export function disconnect(): DisconnectAction {
134 | return {
135 | type: 'DISCONNECT',
136 | };
137 | }
138 |
139 | export function bleStateUpdated(
140 | state: $Keys,
141 | ): BleStateUpdatedAction {
142 | return {
143 | type: 'BLE_STATE_UPDATED',
144 | state,
145 | };
146 | }
147 |
148 | export function sensorTagFound(device: Device): SensorTagFoundAction {
149 | return {
150 | type: 'SENSOR_TAG_FOUND',
151 | device,
152 | };
153 | }
154 |
155 | export function forgetSensorTag(): ForgetSensorTagAction {
156 | return {
157 | type: 'FORGET_SENSOR_TAG',
158 | };
159 | }
160 |
161 | export function executeTest(id: string): ExecuteTestAction {
162 | return {
163 | type: 'EXECUTE_TEST',
164 | id,
165 | };
166 | }
167 |
168 | export function testFinished(): TestFinishedAction {
169 | return {
170 | type: 'TEST_FINISHED',
171 | };
172 | }
173 |
174 | export function reducer(
175 | state: ReduxState = initialState,
176 | action: Action,
177 | ): ReduxState {
178 | switch (action.type) {
179 | case 'LOG':
180 | return {...state, logs: [action.message, ...state.logs]};
181 | case 'CLEAR_LOGS':
182 | return {...state, logs: []};
183 | case 'UPDATE_CONNECTION_STATE':
184 | return {
185 | ...state,
186 | connectionState: action.state,
187 | logs: ['Connection state changed: ' + action.state, ...state.logs],
188 | };
189 | case 'BLE_STATE_UPDATED':
190 | return {
191 | ...state,
192 | bleState: action.state,
193 | logs: ['BLE state changed: ' + action.state, ...state.logs],
194 | };
195 | case 'SENSOR_TAG_FOUND':
196 | if (state.activeSensorTag) return state;
197 | return {
198 | ...state,
199 | activeSensorTag: action.device,
200 | logs: ['SensorTag found: ' + action.device.id, ...state.logs],
201 | };
202 | case 'FORGET_SENSOR_TAG':
203 | return {
204 | ...state,
205 | activeSensorTag: null,
206 | };
207 | case 'EXECUTE_TEST':
208 | if (state.connectionState !== ConnectionState.CONNECTED) {
209 | return state;
210 | }
211 | return {...state, currentTest: action.id};
212 | case 'TEST_FINISHED':
213 | return {...state, currentTest: null};
214 | default:
215 | return state;
216 | }
217 | }
218 |
--------------------------------------------------------------------------------
/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 | # Determine the Java command to use to start the JVM.
86 | if [ -n "$JAVA_HOME" ] ; then
87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
88 | # IBM's JDK on AIX uses strange locations for the executables
89 | JAVACMD="$JAVA_HOME/jre/sh/java"
90 | else
91 | JAVACMD="$JAVA_HOME/bin/java"
92 | fi
93 | if [ ! -x "$JAVACMD" ] ; then
94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
95 |
96 | Please set the JAVA_HOME variable in your environment to match the
97 | location of your Java installation."
98 | fi
99 | else
100 | JAVACMD="java"
101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
102 |
103 | Please set the JAVA_HOME variable in your environment to match the
104 | location of your Java installation."
105 | fi
106 |
107 | # Increase the maximum file descriptors if we can.
108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
109 | MAX_FD_LIMIT=`ulimit -H -n`
110 | if [ $? -eq 0 ] ; then
111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
112 | MAX_FD="$MAX_FD_LIMIT"
113 | fi
114 | ulimit -n $MAX_FD
115 | if [ $? -ne 0 ] ; then
116 | warn "Could not set maximum file descriptor limit: $MAX_FD"
117 | fi
118 | else
119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
120 | fi
121 | fi
122 |
123 | # For Darwin, add options to specify how the application appears in the dock
124 | if $darwin; then
125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126 | fi
127 |
128 | # For Cygwin or MSYS, switch paths to Windows format before running java
129 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132 | JAVACMD=`cygpath --unix "$JAVACMD"`
133 |
134 | # We build the pattern for arguments to be converted via cygpath
135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
136 | SEP=""
137 | for dir in $ROOTDIRSRAW ; do
138 | ROOTDIRS="$ROOTDIRS$SEP$dir"
139 | SEP="|"
140 | done
141 | OURCYGPATTERN="(^($ROOTDIRS))"
142 | # Add a user-defined pattern to the cygpath arguments
143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
145 | fi
146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
147 | i=0
148 | for arg in "$@" ; do
149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
151 |
152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
154 | else
155 | eval `echo args$i`="\"$arg\""
156 | fi
157 | i=`expr $i + 1`
158 | done
159 | case $i in
160 | 0) set -- ;;
161 | 1) set -- "$args0" ;;
162 | 2) set -- "$args0" "$args1" ;;
163 | 3) set -- "$args0" "$args1" "$args2" ;;
164 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
165 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
166 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
167 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
168 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
169 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
170 | esac
171 | fi
172 |
173 | # Escape application args
174 | save () {
175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
176 | echo " "
177 | }
178 | APP_ARGS=`save "$@"`
179 |
180 | # Collect all arguments for the java command, following the shell quoting and substitution rules
181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
182 |
183 | exec "$JAVACMD" "$@"
184 |
--------------------------------------------------------------------------------
/src/SensorTag.js:
--------------------------------------------------------------------------------
1 | // @flow
2 |
3 | import React, {Component} from 'react';
4 | import {connect as reduxConnect} from 'react-redux';
5 | import {
6 | StyleSheet,
7 | Text,
8 | SafeAreaView,
9 | View,
10 | FlatList,
11 | TouchableOpacity,
12 | Modal,
13 | StatusBar,
14 | } from 'react-native';
15 | import {
16 | type ReduxState,
17 | clearLogs,
18 | connect,
19 | disconnect,
20 | executeTest,
21 | forgetSensorTag,
22 | ConnectionState,
23 | } from './Reducer';
24 | import {Device} from 'react-native-ble-plx';
25 | import {SensorTagTests, type SensorTagTestMetadata} from './Tests';
26 |
27 | const Button = function (props) {
28 | const {onPress, title, ...restProps} = props;
29 | return (
30 |
31 |
36 | {title}
37 |
38 |
39 | );
40 | };
41 |
42 | type Props = {
43 | sensorTag: ?Device,
44 | connectionState: $Keys,
45 | logs: Array,
46 | clearLogs: typeof clearLogs,
47 | connect: typeof connect,
48 | disconnect: typeof disconnect,
49 | executeTest: typeof executeTest,
50 | currentTest: ?string,
51 | forgetSensorTag: typeof forgetSensorTag,
52 | };
53 |
54 | type State = {
55 | showModal: boolean,
56 | };
57 |
58 | class SensorTag extends Component {
59 | constructor(props: Props) {
60 | super(props);
61 | this.state = {
62 | showModal: false,
63 | };
64 | }
65 |
66 | sensorTagStatus(): string {
67 | switch (this.props.connectionState) {
68 | case ConnectionState.CONNECTING:
69 | return 'Connecting...';
70 | case ConnectionState.DISCOVERING:
71 | return 'Discovering...';
72 | case ConnectionState.CONNECTED:
73 | return 'Connected';
74 | case ConnectionState.DISCONNECTED:
75 | case ConnectionState.DISCONNECTING:
76 | if (this.props.sensorTag) {
77 | return 'Found ' + this.props.sensorTag.id;
78 | }
79 | }
80 |
81 | return 'Searching...';
82 | }
83 |
84 | isSensorTagReadyToConnect(): boolean {
85 | return (
86 | this.props.sensorTag != null &&
87 | this.props.connectionState === ConnectionState.DISCONNECTED
88 | );
89 | }
90 |
91 | isSensorTagReadyToDisconnect(): boolean {
92 | return this.props.connectionState === ConnectionState.CONNECTED;
93 | }
94 |
95 | isSensorTagReadyToExecuteTests(): boolean {
96 | return (
97 | this.props.connectionState === ConnectionState.CONNECTED &&
98 | this.props.currentTest == null
99 | );
100 | }
101 |
102 | renderHeader() {
103 | return (
104 |
105 |
106 | SensorTag: {this.sensorTagStatus()}
107 |
108 |
109 |
129 |
130 | {
134 | this.setState({showModal: true});
135 | }}
136 | title={'Execute test'}
137 | />
138 |
139 | {
143 | this.props.forgetSensorTag();
144 | }}
145 | title={'Forget'}
146 | />
147 |
148 |
149 | );
150 | }
151 |
152 | renderLogs() {
153 | return (
154 |
155 | (
159 | {item}
160 | )}
161 | keyExtractor={(item, index) => index.toString()}
162 | />
163 | {
166 | this.props.clearLogs();
167 | }}
168 | title={'Clear logs'}
169 | />
170 |
171 | );
172 | }
173 |
174 | renderModal() {
175 | // $FlowFixMe: SensorTagTests are keeping SensorTagTestMetadata as values.
176 | const tests: Array = Object.values(SensorTagTests);
177 |
178 | return (
179 | {}}>
184 |
191 |
202 |
207 | Select test to execute:
208 |
209 | (
212 | {
216 | this.props.executeTest(item.id);
217 | this.setState({showModal: false});
218 | }}
219 | title={item.title}
220 | />
221 | )}
222 | keyExtractor={(item, index) => index.toString()}
223 | />
224 | {
227 | this.setState({showModal: false});
228 | }}
229 | title={'Cancel'}
230 | />
231 |
232 |
233 |
234 | );
235 | }
236 |
237 | render() {
238 | return (
239 |
240 |
241 | {this.renderHeader()}
242 | {this.renderLogs()}
243 | {this.renderModal()}
244 |
245 | );
246 | }
247 | }
248 |
249 | const styles = StyleSheet.create({
250 | container: {
251 | flex: 1,
252 | backgroundColor: '#2924fb',
253 | padding: 5,
254 | },
255 | textStyle: {
256 | color: 'white',
257 | fontSize: 20,
258 | },
259 | logTextStyle: {
260 | color: 'white',
261 | fontSize: 9,
262 | },
263 | buttonStyle: {
264 | borderWidth: 1,
265 | borderRadius: 5,
266 | padding: 5,
267 | backgroundColor: '#15127e',
268 | color: 'white',
269 | textAlign: 'center',
270 | fontSize: 20,
271 | },
272 | disabledButtonStyle: {
273 | backgroundColor: '#15142d',
274 | color: '#919191',
275 | },
276 | });
277 |
278 | export default reduxConnect(
279 | (state: ReduxState): $Shape => ({
280 | logs: state.logs,
281 | sensorTag: state.activeSensorTag,
282 | connectionState: state.connectionState,
283 | currentTest: state.currentTest,
284 | }),
285 | {
286 | clearLogs,
287 | connect,
288 | disconnect,
289 | forgetSensorTag,
290 | executeTest,
291 | },
292 | )(SensorTag);
293 |
--------------------------------------------------------------------------------
/src/Saga.js:
--------------------------------------------------------------------------------
1 | // @flow
2 |
3 | import {PermissionsAndroid, Platform} from 'react-native';
4 | import {buffers, eventChannel} from 'redux-saga';
5 | import {
6 | fork,
7 | cancel,
8 | take,
9 | call,
10 | put,
11 | race,
12 | cancelled,
13 | actionChannel,
14 | } from 'redux-saga/effects';
15 | import {
16 | log,
17 | logError,
18 | updateConnectionState,
19 | bleStateUpdated,
20 | testFinished,
21 | type BleStateUpdatedAction,
22 | type UpdateConnectionStateAction,
23 | type ConnectAction,
24 | type ExecuteTestAction,
25 | sensorTagFound,
26 | ConnectionState,
27 | } from './Reducer';
28 | import {
29 | BleManager,
30 | BleError,
31 | Device,
32 | State,
33 | LogLevel,
34 | } from 'react-native-ble-plx';
35 | import {SensorTagTests} from './Tests';
36 |
37 | export function* bleSaga(): Generator<*, *, *> {
38 | yield put(log('BLE saga started...'));
39 |
40 | // First step is to create BleManager which should be used as an entry point
41 | // to all BLE related functionalities
42 | const manager = new BleManager();
43 | manager.setLogLevel(LogLevel.Verbose);
44 |
45 | // All below generators are described below...
46 | yield fork(handleScanning, manager);
47 | yield fork(handleBleState, manager);
48 | yield fork(handleConnection, manager);
49 | }
50 |
51 | // This generator tracks our BLE state. Based on that we can enable scanning, get rid of devices etc.
52 | // eventChannel allows us to wrap callback based API which can be then conveniently used in sagas.
53 | function* handleBleState(manager: BleManager): Generator<*, *, *> {
54 | const stateChannel = yield eventChannel((emit) => {
55 | const subscription = manager.onStateChange((state) => {
56 | emit(state);
57 | }, true);
58 | return () => {
59 | subscription.remove();
60 | };
61 | }, buffers.expanding(1));
62 |
63 | try {
64 | for (;;) {
65 | const newState = yield take(stateChannel);
66 | yield put(bleStateUpdated(newState));
67 | }
68 | } finally {
69 | if (yield cancelled()) {
70 | stateChannel.close();
71 | }
72 | }
73 | }
74 |
75 | // This generator decides if we want to start or stop scanning depending on specific
76 | // events:
77 | // * BLE state is in PoweredOn state
78 | // * Android's permissions for scanning are granted
79 | // * We already scanned device which we wanted
80 | function* handleScanning(manager: BleManager): Generator<*, *, *> {
81 | var scanTask = null;
82 | var bleState: $Keys = State.Unknown;
83 | var connectionState: $Keys =
84 | ConnectionState.DISCONNECTED;
85 |
86 | const channel = yield actionChannel([
87 | 'BLE_STATE_UPDATED',
88 | 'UPDATE_CONNECTION_STATE',
89 | ]);
90 |
91 | for (;;) {
92 | const action:
93 | | BleStateUpdatedAction
94 | | UpdateConnectionStateAction = yield take(channel);
95 |
96 | switch (action.type) {
97 | case 'BLE_STATE_UPDATED':
98 | bleState = action.state;
99 | break;
100 | case 'UPDATE_CONNECTION_STATE':
101 | connectionState = action.state;
102 | break;
103 | }
104 |
105 | const enableScanning =
106 | bleState === State.PoweredOn &&
107 | (connectionState === ConnectionState.DISCONNECTING ||
108 | connectionState === ConnectionState.DISCONNECTED);
109 |
110 | if (enableScanning) {
111 | if (scanTask != null) {
112 | yield cancel(scanTask);
113 | }
114 | scanTask = yield fork(scan, manager);
115 | } else {
116 | if (scanTask != null) {
117 | yield cancel(scanTask);
118 | scanTask = null;
119 | }
120 | }
121 | }
122 | }
123 |
124 | // As long as this generator is working we have enabled scanning functionality.
125 | // When we detect SensorTag device we make it as an active device.
126 | function* scan(manager: BleManager): Generator<*, *, *> {
127 | if (Platform.OS === 'android' && Platform.Version >= 23) {
128 | yield put(log('Scanning: Checking permissions...'));
129 | const enabled = yield call(
130 | PermissionsAndroid.check,
131 | PermissionsAndroid.PERMISSIONS.ACCESS_COARSE_LOCATION,
132 | );
133 | if (!enabled) {
134 | yield put(log('Scanning: Permissions disabled, showing...'));
135 | const granted = yield call(
136 | PermissionsAndroid.request,
137 | PermissionsAndroid.PERMISSIONS.ACCESS_COARSE_LOCATION,
138 | );
139 | if (granted !== PermissionsAndroid.RESULTS.GRANTED) {
140 | yield put(log('Scanning: Permissions not granted, aborting...'));
141 | // TODO: Show error message?
142 | return;
143 | }
144 | }
145 | }
146 |
147 | yield put(log('Scanning started...'));
148 | const scanningChannel = yield eventChannel((emit) => {
149 | manager.startDeviceScan(
150 | null,
151 | {allowDuplicates: true},
152 | (error, scannedDevice) => {
153 | if (error) {
154 | emit([error, scannedDevice]);
155 | return;
156 | }
157 | if (scannedDevice != null && scannedDevice.localName === 'SensorTag') {
158 | emit([error, scannedDevice]);
159 | }
160 | },
161 | );
162 | return () => {
163 | manager.stopDeviceScan();
164 | };
165 | }, buffers.expanding(1));
166 |
167 | try {
168 | for (;;) {
169 | const [error, scannedDevice]: [?BleError, ?Device] = yield take(
170 | scanningChannel,
171 | );
172 | if (error != null) {
173 | }
174 | if (scannedDevice != null) {
175 | yield put(sensorTagFound(scannedDevice));
176 | }
177 | }
178 | } catch (error) {
179 | } finally {
180 | yield put(log('Scanning stopped...'));
181 | if (yield cancelled()) {
182 | scanningChannel.close();
183 | }
184 | }
185 | }
186 |
187 | function* handleConnection(manager: BleManager): Generator<*, *, *> {
188 | var testTask = null;
189 |
190 | for (;;) {
191 | // Take action
192 | const {device}: ConnectAction = yield take('CONNECT');
193 |
194 | const disconnectedChannel = yield eventChannel((emit) => {
195 | const subscription = device.onDisconnected((error) => {
196 | emit({type: 'DISCONNECTED', error: error});
197 | });
198 | return () => {
199 | subscription.remove();
200 | };
201 | }, buffers.expanding(1));
202 |
203 | const deviceActionChannel = yield actionChannel([
204 | 'DISCONNECT',
205 | 'EXECUTE_TEST',
206 | ]);
207 |
208 | try {
209 | yield put(updateConnectionState(ConnectionState.CONNECTING));
210 | yield call([device, device.connect]);
211 | yield put(updateConnectionState(ConnectionState.DISCOVERING));
212 | yield call([device, device.discoverAllServicesAndCharacteristics]);
213 | yield put(updateConnectionState(ConnectionState.CONNECTED));
214 |
215 | for (;;) {
216 | const {deviceAction, disconnected} = yield race({
217 | deviceAction: take(deviceActionChannel),
218 | disconnected: take(disconnectedChannel),
219 | });
220 |
221 | if (deviceAction) {
222 | if (deviceAction.type === 'DISCONNECT') {
223 | yield put(log('Disconnected by user...'));
224 | yield put(updateConnectionState(ConnectionState.DISCONNECTING));
225 | yield call([device, device.cancelConnection]);
226 | break;
227 | }
228 | if (deviceAction.type === 'EXECUTE_TEST') {
229 | if (testTask != null) {
230 | yield cancel(testTask);
231 | }
232 | testTask = yield fork(executeTest, device, deviceAction);
233 | }
234 | } else if (disconnected) {
235 | yield put(log('Disconnected by device...'));
236 | if (disconnected.error != null) {
237 | yield put(logError(disconnected.error));
238 | }
239 | break;
240 | }
241 | }
242 | } catch (error) {
243 | yield put(logError(error));
244 | } finally {
245 | disconnectedChannel.close();
246 | yield put(testFinished());
247 | yield put(updateConnectionState(ConnectionState.DISCONNECTED));
248 | }
249 | }
250 | }
251 |
252 | function* executeTest(
253 | device: Device,
254 | test: ExecuteTestAction,
255 | ): Generator<*, *, *> {
256 | yield put(log('Executing test: ' + test.id));
257 | const start = Date.now();
258 | const result = yield call(SensorTagTests[test.id].execute, device);
259 | if (result) {
260 | yield put(
261 | log('Test finished successfully! (' + (Date.now() - start) + ' ms)'),
262 | );
263 | } else {
264 | yield put(log('Test failed! (' + (Date.now() - start) + ' ms)'));
265 | }
266 | yield put(testFinished());
267 | }
268 |
--------------------------------------------------------------------------------
/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. If none specified and
19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
20 | * // default. Can be overridden with ENTRY_FILE environment variable.
21 | * entryFile: "index.android.js",
22 | *
23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
24 | * bundleCommand: "ram-bundle",
25 | *
26 | * // whether to bundle JS and assets in debug mode
27 | * bundleInDebug: false,
28 | *
29 | * // whether to bundle JS and assets in release mode
30 | * bundleInRelease: true,
31 | *
32 | * // whether to bundle JS and assets in another build variant (if configured).
33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34 | * // The configuration property can be in the following formats
35 | * // 'bundleIn${productFlavor}${buildType}'
36 | * // 'bundleIn${buildType}'
37 | * // bundleInFreeDebug: true,
38 | * // bundleInPaidRelease: true,
39 | * // bundleInBeta: true,
40 | *
41 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
42 | * // for example: to disable dev mode in the staging build type (if configured)
43 | * devDisabledInStaging: true,
44 | * // The configuration property can be in the following formats
45 | * // 'devDisabledIn${productFlavor}${buildType}'
46 | * // 'devDisabledIn${buildType}'
47 | *
48 | * // the root of your project, i.e. where "package.json" lives
49 | * root: "../../",
50 | *
51 | * // where to put the JS bundle asset in debug mode
52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53 | *
54 | * // where to put the JS bundle asset in release mode
55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in debug mode
59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60 | *
61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
62 | * // require('./image.png')), in release mode
63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64 | *
65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69 | * // for example, you might want to remove it from here.
70 | * inputExcludes: ["android/**", "ios/**"],
71 | *
72 | * // override which node gets called and with what additional arguments
73 | * nodeExecutableAndArgs: ["node"],
74 | *
75 | * // supply additional arguments to the packager
76 | * extraPackagerArgs: []
77 | * ]
78 | */
79 |
80 | project.ext.react = [
81 | enableHermes: false, // clean and rebuild if changing
82 | ]
83 |
84 | apply from: "../../node_modules/react-native/react.gradle"
85 |
86 | /**
87 | * Set this to true to create two separate APKs instead of one:
88 | * - An APK that only works on ARM devices
89 | * - An APK that only works on x86 devices
90 | * The advantage is the size of the APK is reduced by about 4MB.
91 | * Upload all the APKs to the Play Store and people will download
92 | * the correct one based on the CPU architecture of their device.
93 | */
94 | def enableSeparateBuildPerCPUArchitecture = false
95 |
96 | /**
97 | * Run Proguard to shrink the Java bytecode in release builds.
98 | */
99 | def enableProguardInReleaseBuilds = false
100 |
101 | /**
102 | * The preferred build flavor of JavaScriptCore.
103 | *
104 | * For example, to use the international variant, you can use:
105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
106 | *
107 | * The international variant includes ICU i18n library and necessary data
108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
109 | * give correct results when using with locales other than en-US. Note that
110 | * this variant is about 6MiB larger per architecture than default.
111 | */
112 | def jscFlavor = 'org.webkit:android-jsc:+'
113 |
114 | /**
115 | * Whether to enable the Hermes VM.
116 | *
117 | * This should be set on project.ext.react and mirrored here. If it is not set
118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119 | * and the benefits of using Hermes will therefore be sharply reduced.
120 | */
121 | def enableHermes = project.ext.react.get("enableHermes", false);
122 |
123 | android {
124 | compileSdkVersion rootProject.ext.compileSdkVersion
125 |
126 | compileOptions {
127 | sourceCompatibility JavaVersion.VERSION_1_8
128 | targetCompatibility JavaVersion.VERSION_1_8
129 | }
130 |
131 | defaultConfig {
132 | applicationId "com.sensortag"
133 | minSdkVersion rootProject.ext.minSdkVersion
134 | targetSdkVersion rootProject.ext.targetSdkVersion
135 | versionCode 1
136 | versionName "1.0"
137 | }
138 | splits {
139 | abi {
140 | reset()
141 | enable enableSeparateBuildPerCPUArchitecture
142 | universalApk false // If true, also generate a universal APK
143 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
144 | }
145 | }
146 | signingConfigs {
147 | debug {
148 | storeFile file('debug.keystore')
149 | storePassword 'android'
150 | keyAlias 'androiddebugkey'
151 | keyPassword 'android'
152 | }
153 | }
154 | buildTypes {
155 | debug {
156 | signingConfig signingConfigs.debug
157 | }
158 | release {
159 | // Caution! In production, you need to generate your own keystore file.
160 | // see https://reactnative.dev/docs/signed-apk-android.
161 | signingConfig signingConfigs.debug
162 | minifyEnabled enableProguardInReleaseBuilds
163 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
164 | }
165 | }
166 |
167 | // applicationVariants are e.g. debug, release
168 | applicationVariants.all { variant ->
169 | variant.outputs.each { output ->
170 | // For each separate APK per architecture, set a unique version code as described here:
171 | // https://developer.android.com/studio/build/configure-apk-splits.html
172 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
173 | def abi = output.getFilter(OutputFile.ABI)
174 | if (abi != null) { // null for the universal-debug, universal-release variants
175 | output.versionCodeOverride =
176 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
177 | }
178 |
179 | }
180 | }
181 | }
182 |
183 | dependencies {
184 | implementation project(':react-native-ble-plx')
185 | implementation fileTree(dir: "libs", include: ["*.jar"])
186 | //noinspection GradleDynamicVersion
187 | implementation "com.facebook.react:react-native:+" // From node_modules
188 |
189 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
190 |
191 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
192 | exclude group:'com.facebook.fbjni'
193 | }
194 |
195 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
196 | exclude group:'com.facebook.flipper'
197 | exclude group:'com.squareup.okhttp3', module:'okhttp'
198 | }
199 |
200 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
201 | exclude group:'com.facebook.flipper'
202 | }
203 |
204 | if (enableHermes) {
205 | def hermesPath = "../../node_modules/hermes-engine/android/";
206 | debugImplementation files(hermesPath + "hermes-debug.aar")
207 | releaseImplementation files(hermesPath + "hermes-release.aar")
208 | } else {
209 | implementation jscFlavor
210 | }
211 | }
212 |
213 | // Run this once to be able to run the application with BUCK
214 | // puts all compile dependencies into folder libs for BUCK to use
215 | task copyDownloadableDepsToLibs(type: Copy) {
216 | from configurations.compile
217 | into 'libs'
218 | }
219 |
220 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
221 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - CocoaAsyncSocket (7.6.4)
4 | - CocoaLibEvent (1.0.0)
5 | - DoubleConversion (1.1.6)
6 | - FBLazyVector (0.63.3)
7 | - FBReactNativeSpec (0.63.3):
8 | - Folly (= 2020.01.13.00)
9 | - RCTRequired (= 0.63.3)
10 | - RCTTypeSafety (= 0.63.3)
11 | - React-Core (= 0.63.3)
12 | - React-jsi (= 0.63.3)
13 | - ReactCommon/turbomodule/core (= 0.63.3)
14 | - Flipper (0.54.0):
15 | - Flipper-Folly (~> 2.2)
16 | - Flipper-RSocket (~> 1.1)
17 | - Flipper-DoubleConversion (1.1.7)
18 | - Flipper-Folly (2.2.0):
19 | - boost-for-react-native
20 | - CocoaLibEvent (~> 1.0)
21 | - Flipper-DoubleConversion
22 | - Flipper-Glog
23 | - OpenSSL-Universal (= 1.0.2.19)
24 | - Flipper-Glog (0.3.6)
25 | - Flipper-PeerTalk (0.0.4)
26 | - Flipper-RSocket (1.1.0):
27 | - Flipper-Folly (~> 2.2)
28 | - FlipperKit (0.54.0):
29 | - FlipperKit/Core (= 0.54.0)
30 | - FlipperKit/Core (0.54.0):
31 | - Flipper (~> 0.54.0)
32 | - FlipperKit/CppBridge
33 | - FlipperKit/FBCxxFollyDynamicConvert
34 | - FlipperKit/FBDefines
35 | - FlipperKit/FKPortForwarding
36 | - FlipperKit/CppBridge (0.54.0):
37 | - Flipper (~> 0.54.0)
38 | - FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
39 | - Flipper-Folly (~> 2.2)
40 | - FlipperKit/FBDefines (0.54.0)
41 | - FlipperKit/FKPortForwarding (0.54.0):
42 | - CocoaAsyncSocket (~> 7.6)
43 | - Flipper-PeerTalk (~> 0.0.4)
44 | - FlipperKit/FlipperKitHighlightOverlay (0.54.0)
45 | - FlipperKit/FlipperKitLayoutPlugin (0.54.0):
46 | - FlipperKit/Core
47 | - FlipperKit/FlipperKitHighlightOverlay
48 | - FlipperKit/FlipperKitLayoutTextSearchable
49 | - YogaKit (~> 1.18)
50 | - FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
51 | - FlipperKit/FlipperKitNetworkPlugin (0.54.0):
52 | - FlipperKit/Core
53 | - FlipperKit/FlipperKitReactPlugin (0.54.0):
54 | - FlipperKit/Core
55 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
56 | - FlipperKit/Core
57 | - FlipperKit/SKIOSNetworkPlugin (0.54.0):
58 | - FlipperKit/Core
59 | - FlipperKit/FlipperKitNetworkPlugin
60 | - Folly (2020.01.13.00):
61 | - boost-for-react-native
62 | - DoubleConversion
63 | - Folly/Default (= 2020.01.13.00)
64 | - glog
65 | - Folly/Default (2020.01.13.00):
66 | - boost-for-react-native
67 | - DoubleConversion
68 | - glog
69 | - glog (0.3.5)
70 | - MultiplatformBleAdapter (0.1.7)
71 | - OpenSSL-Universal (1.0.2.19):
72 | - OpenSSL-Universal/Static (= 1.0.2.19)
73 | - OpenSSL-Universal/Static (1.0.2.19)
74 | - RCTRequired (0.63.3)
75 | - RCTTypeSafety (0.63.3):
76 | - FBLazyVector (= 0.63.3)
77 | - Folly (= 2020.01.13.00)
78 | - RCTRequired (= 0.63.3)
79 | - React-Core (= 0.63.3)
80 | - React (0.63.3):
81 | - React-Core (= 0.63.3)
82 | - React-Core/DevSupport (= 0.63.3)
83 | - React-Core/RCTWebSocket (= 0.63.3)
84 | - React-RCTActionSheet (= 0.63.3)
85 | - React-RCTAnimation (= 0.63.3)
86 | - React-RCTBlob (= 0.63.3)
87 | - React-RCTImage (= 0.63.3)
88 | - React-RCTLinking (= 0.63.3)
89 | - React-RCTNetwork (= 0.63.3)
90 | - React-RCTSettings (= 0.63.3)
91 | - React-RCTText (= 0.63.3)
92 | - React-RCTVibration (= 0.63.3)
93 | - React-callinvoker (0.63.3)
94 | - React-Core (0.63.3):
95 | - Folly (= 2020.01.13.00)
96 | - glog
97 | - React-Core/Default (= 0.63.3)
98 | - React-cxxreact (= 0.63.3)
99 | - React-jsi (= 0.63.3)
100 | - React-jsiexecutor (= 0.63.3)
101 | - Yoga
102 | - React-Core/CoreModulesHeaders (0.63.3):
103 | - Folly (= 2020.01.13.00)
104 | - glog
105 | - React-Core/Default
106 | - React-cxxreact (= 0.63.3)
107 | - React-jsi (= 0.63.3)
108 | - React-jsiexecutor (= 0.63.3)
109 | - Yoga
110 | - React-Core/Default (0.63.3):
111 | - Folly (= 2020.01.13.00)
112 | - glog
113 | - React-cxxreact (= 0.63.3)
114 | - React-jsi (= 0.63.3)
115 | - React-jsiexecutor (= 0.63.3)
116 | - Yoga
117 | - React-Core/DevSupport (0.63.3):
118 | - Folly (= 2020.01.13.00)
119 | - glog
120 | - React-Core/Default (= 0.63.3)
121 | - React-Core/RCTWebSocket (= 0.63.3)
122 | - React-cxxreact (= 0.63.3)
123 | - React-jsi (= 0.63.3)
124 | - React-jsiexecutor (= 0.63.3)
125 | - React-jsinspector (= 0.63.3)
126 | - Yoga
127 | - React-Core/RCTActionSheetHeaders (0.63.3):
128 | - Folly (= 2020.01.13.00)
129 | - glog
130 | - React-Core/Default
131 | - React-cxxreact (= 0.63.3)
132 | - React-jsi (= 0.63.3)
133 | - React-jsiexecutor (= 0.63.3)
134 | - Yoga
135 | - React-Core/RCTAnimationHeaders (0.63.3):
136 | - Folly (= 2020.01.13.00)
137 | - glog
138 | - React-Core/Default
139 | - React-cxxreact (= 0.63.3)
140 | - React-jsi (= 0.63.3)
141 | - React-jsiexecutor (= 0.63.3)
142 | - Yoga
143 | - React-Core/RCTBlobHeaders (0.63.3):
144 | - Folly (= 2020.01.13.00)
145 | - glog
146 | - React-Core/Default
147 | - React-cxxreact (= 0.63.3)
148 | - React-jsi (= 0.63.3)
149 | - React-jsiexecutor (= 0.63.3)
150 | - Yoga
151 | - React-Core/RCTImageHeaders (0.63.3):
152 | - Folly (= 2020.01.13.00)
153 | - glog
154 | - React-Core/Default
155 | - React-cxxreact (= 0.63.3)
156 | - React-jsi (= 0.63.3)
157 | - React-jsiexecutor (= 0.63.3)
158 | - Yoga
159 | - React-Core/RCTLinkingHeaders (0.63.3):
160 | - Folly (= 2020.01.13.00)
161 | - glog
162 | - React-Core/Default
163 | - React-cxxreact (= 0.63.3)
164 | - React-jsi (= 0.63.3)
165 | - React-jsiexecutor (= 0.63.3)
166 | - Yoga
167 | - React-Core/RCTNetworkHeaders (0.63.3):
168 | - Folly (= 2020.01.13.00)
169 | - glog
170 | - React-Core/Default
171 | - React-cxxreact (= 0.63.3)
172 | - React-jsi (= 0.63.3)
173 | - React-jsiexecutor (= 0.63.3)
174 | - Yoga
175 | - React-Core/RCTSettingsHeaders (0.63.3):
176 | - Folly (= 2020.01.13.00)
177 | - glog
178 | - React-Core/Default
179 | - React-cxxreact (= 0.63.3)
180 | - React-jsi (= 0.63.3)
181 | - React-jsiexecutor (= 0.63.3)
182 | - Yoga
183 | - React-Core/RCTTextHeaders (0.63.3):
184 | - Folly (= 2020.01.13.00)
185 | - glog
186 | - React-Core/Default
187 | - React-cxxreact (= 0.63.3)
188 | - React-jsi (= 0.63.3)
189 | - React-jsiexecutor (= 0.63.3)
190 | - Yoga
191 | - React-Core/RCTVibrationHeaders (0.63.3):
192 | - Folly (= 2020.01.13.00)
193 | - glog
194 | - React-Core/Default
195 | - React-cxxreact (= 0.63.3)
196 | - React-jsi (= 0.63.3)
197 | - React-jsiexecutor (= 0.63.3)
198 | - Yoga
199 | - React-Core/RCTWebSocket (0.63.3):
200 | - Folly (= 2020.01.13.00)
201 | - glog
202 | - React-Core/Default (= 0.63.3)
203 | - React-cxxreact (= 0.63.3)
204 | - React-jsi (= 0.63.3)
205 | - React-jsiexecutor (= 0.63.3)
206 | - Yoga
207 | - React-CoreModules (0.63.3):
208 | - FBReactNativeSpec (= 0.63.3)
209 | - Folly (= 2020.01.13.00)
210 | - RCTTypeSafety (= 0.63.3)
211 | - React-Core/CoreModulesHeaders (= 0.63.3)
212 | - React-jsi (= 0.63.3)
213 | - React-RCTImage (= 0.63.3)
214 | - ReactCommon/turbomodule/core (= 0.63.3)
215 | - React-cxxreact (0.63.3):
216 | - boost-for-react-native (= 1.63.0)
217 | - DoubleConversion
218 | - Folly (= 2020.01.13.00)
219 | - glog
220 | - React-callinvoker (= 0.63.3)
221 | - React-jsinspector (= 0.63.3)
222 | - React-jsi (0.63.3):
223 | - boost-for-react-native (= 1.63.0)
224 | - DoubleConversion
225 | - Folly (= 2020.01.13.00)
226 | - glog
227 | - React-jsi/Default (= 0.63.3)
228 | - React-jsi/Default (0.63.3):
229 | - boost-for-react-native (= 1.63.0)
230 | - DoubleConversion
231 | - Folly (= 2020.01.13.00)
232 | - glog
233 | - React-jsiexecutor (0.63.3):
234 | - DoubleConversion
235 | - Folly (= 2020.01.13.00)
236 | - glog
237 | - React-cxxreact (= 0.63.3)
238 | - React-jsi (= 0.63.3)
239 | - React-jsinspector (0.63.3)
240 | - react-native-ble-plx (2.0.2):
241 | - MultiplatformBleAdapter (= 0.1.7)
242 | - React
243 | - React-RCTActionSheet (0.63.3):
244 | - React-Core/RCTActionSheetHeaders (= 0.63.3)
245 | - React-RCTAnimation (0.63.3):
246 | - FBReactNativeSpec (= 0.63.3)
247 | - Folly (= 2020.01.13.00)
248 | - RCTTypeSafety (= 0.63.3)
249 | - React-Core/RCTAnimationHeaders (= 0.63.3)
250 | - React-jsi (= 0.63.3)
251 | - ReactCommon/turbomodule/core (= 0.63.3)
252 | - React-RCTBlob (0.63.3):
253 | - FBReactNativeSpec (= 0.63.3)
254 | - Folly (= 2020.01.13.00)
255 | - React-Core/RCTBlobHeaders (= 0.63.3)
256 | - React-Core/RCTWebSocket (= 0.63.3)
257 | - React-jsi (= 0.63.3)
258 | - React-RCTNetwork (= 0.63.3)
259 | - ReactCommon/turbomodule/core (= 0.63.3)
260 | - React-RCTImage (0.63.3):
261 | - FBReactNativeSpec (= 0.63.3)
262 | - Folly (= 2020.01.13.00)
263 | - RCTTypeSafety (= 0.63.3)
264 | - React-Core/RCTImageHeaders (= 0.63.3)
265 | - React-jsi (= 0.63.3)
266 | - React-RCTNetwork (= 0.63.3)
267 | - ReactCommon/turbomodule/core (= 0.63.3)
268 | - React-RCTLinking (0.63.3):
269 | - FBReactNativeSpec (= 0.63.3)
270 | - React-Core/RCTLinkingHeaders (= 0.63.3)
271 | - React-jsi (= 0.63.3)
272 | - ReactCommon/turbomodule/core (= 0.63.3)
273 | - React-RCTNetwork (0.63.3):
274 | - FBReactNativeSpec (= 0.63.3)
275 | - Folly (= 2020.01.13.00)
276 | - RCTTypeSafety (= 0.63.3)
277 | - React-Core/RCTNetworkHeaders (= 0.63.3)
278 | - React-jsi (= 0.63.3)
279 | - ReactCommon/turbomodule/core (= 0.63.3)
280 | - React-RCTSettings (0.63.3):
281 | - FBReactNativeSpec (= 0.63.3)
282 | - Folly (= 2020.01.13.00)
283 | - RCTTypeSafety (= 0.63.3)
284 | - React-Core/RCTSettingsHeaders (= 0.63.3)
285 | - React-jsi (= 0.63.3)
286 | - ReactCommon/turbomodule/core (= 0.63.3)
287 | - React-RCTText (0.63.3):
288 | - React-Core/RCTTextHeaders (= 0.63.3)
289 | - React-RCTVibration (0.63.3):
290 | - FBReactNativeSpec (= 0.63.3)
291 | - Folly (= 2020.01.13.00)
292 | - React-Core/RCTVibrationHeaders (= 0.63.3)
293 | - React-jsi (= 0.63.3)
294 | - ReactCommon/turbomodule/core (= 0.63.3)
295 | - ReactCommon/turbomodule/core (0.63.3):
296 | - DoubleConversion
297 | - Folly (= 2020.01.13.00)
298 | - glog
299 | - React-callinvoker (= 0.63.3)
300 | - React-Core (= 0.63.3)
301 | - React-cxxreact (= 0.63.3)
302 | - React-jsi (= 0.63.3)
303 | - Yoga (1.14.0)
304 | - YogaKit (1.18.1):
305 | - Yoga (~> 1.14)
306 |
307 | DEPENDENCIES:
308 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
309 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
310 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
311 | - Flipper (~> 0.54.0)
312 | - Flipper-DoubleConversion (= 1.1.7)
313 | - Flipper-Folly (~> 2.2)
314 | - Flipper-Glog (= 0.3.6)
315 | - Flipper-PeerTalk (~> 0.0.4)
316 | - Flipper-RSocket (~> 1.1)
317 | - FlipperKit (~> 0.54.0)
318 | - FlipperKit/Core (~> 0.54.0)
319 | - FlipperKit/CppBridge (~> 0.54.0)
320 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.54.0)
321 | - FlipperKit/FBDefines (~> 0.54.0)
322 | - FlipperKit/FKPortForwarding (~> 0.54.0)
323 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.54.0)
324 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.54.0)
325 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.54.0)
326 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.54.0)
327 | - FlipperKit/FlipperKitReactPlugin (~> 0.54.0)
328 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.54.0)
329 | - FlipperKit/SKIOSNetworkPlugin (~> 0.54.0)
330 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
331 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
332 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
333 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
334 | - React (from `../node_modules/react-native/`)
335 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
336 | - React-Core (from `../node_modules/react-native/`)
337 | - React-Core/DevSupport (from `../node_modules/react-native/`)
338 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
339 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
340 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
341 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
342 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
343 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
344 | - react-native-ble-plx (from `../node_modules/react-native-ble-plx`)
345 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
346 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
347 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
348 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
349 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
350 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
351 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
352 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
353 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
354 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
355 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
356 |
357 | SPEC REPOS:
358 | trunk:
359 | - boost-for-react-native
360 | - CocoaAsyncSocket
361 | - CocoaLibEvent
362 | - Flipper
363 | - Flipper-DoubleConversion
364 | - Flipper-Folly
365 | - Flipper-Glog
366 | - Flipper-PeerTalk
367 | - Flipper-RSocket
368 | - FlipperKit
369 | - MultiplatformBleAdapter
370 | - OpenSSL-Universal
371 | - YogaKit
372 |
373 | EXTERNAL SOURCES:
374 | DoubleConversion:
375 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
376 | FBLazyVector:
377 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
378 | FBReactNativeSpec:
379 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
380 | Folly:
381 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
382 | glog:
383 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
384 | RCTRequired:
385 | :path: "../node_modules/react-native/Libraries/RCTRequired"
386 | RCTTypeSafety:
387 | :path: "../node_modules/react-native/Libraries/TypeSafety"
388 | React:
389 | :path: "../node_modules/react-native/"
390 | React-callinvoker:
391 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
392 | React-Core:
393 | :path: "../node_modules/react-native/"
394 | React-CoreModules:
395 | :path: "../node_modules/react-native/React/CoreModules"
396 | React-cxxreact:
397 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
398 | React-jsi:
399 | :path: "../node_modules/react-native/ReactCommon/jsi"
400 | React-jsiexecutor:
401 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
402 | React-jsinspector:
403 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
404 | react-native-ble-plx:
405 | :path: "../node_modules/react-native-ble-plx"
406 | React-RCTActionSheet:
407 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
408 | React-RCTAnimation:
409 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
410 | React-RCTBlob:
411 | :path: "../node_modules/react-native/Libraries/Blob"
412 | React-RCTImage:
413 | :path: "../node_modules/react-native/Libraries/Image"
414 | React-RCTLinking:
415 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
416 | React-RCTNetwork:
417 | :path: "../node_modules/react-native/Libraries/Network"
418 | React-RCTSettings:
419 | :path: "../node_modules/react-native/Libraries/Settings"
420 | React-RCTText:
421 | :path: "../node_modules/react-native/Libraries/Text"
422 | React-RCTVibration:
423 | :path: "../node_modules/react-native/Libraries/Vibration"
424 | ReactCommon:
425 | :path: "../node_modules/react-native/ReactCommon"
426 | Yoga:
427 | :path: "../node_modules/react-native/ReactCommon/yoga"
428 |
429 | SPEC CHECKSUMS:
430 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
431 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
432 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
433 | DoubleConversion: cde416483dac037923206447da6e1454df403714
434 | FBLazyVector: 878b59e31113e289e275165efbe4b54fa614d43d
435 | FBReactNativeSpec: 7da9338acfb98d4ef9e5536805a0704572d33c2f
436 | Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
437 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
438 | Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
439 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
440 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
441 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
442 | FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
443 | Folly: b73c3869541e86821df3c387eb0af5f65addfab4
444 | glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
445 | MultiplatformBleAdapter: 975cfb2a333b2c42b7a11628bd100ccb61872da2
446 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
447 | RCTRequired: 48884c74035a0b5b76dbb7a998bd93bcfc5f2047
448 | RCTTypeSafety: edf4b618033c2f1c5b7bc3d90d8e085ed95ba2ab
449 | React: f36e90f3ceb976546e97df3403e37d226f79d0e3
450 | React-callinvoker: 18874f621eb96625df7a24a7dc8d6e07391affcd
451 | React-Core: ac3d816b8e3493970153f4aaf0cff18af0bb95e6
452 | React-CoreModules: 4016d3a4e518bcfc4f5a51252b5a05692ca6f0e1
453 | React-cxxreact: ffc9129013b87cb36cf3f30a86695a3c397b0f99
454 | React-jsi: df07aa95b39c5be3e41199921509bfa929ed2b9d
455 | React-jsiexecutor: b56c03e61c0dd5f5801255f2160a815f4a53d451
456 | React-jsinspector: 8e68ffbfe23880d3ee9bafa8be2777f60b25cbe2
457 | react-native-ble-plx: caac53ee98151ec81198239d591c203809a1ed6e
458 | React-RCTActionSheet: 53ea72699698b0b47a6421cb1c8b4ab215a774aa
459 | React-RCTAnimation: 1befece0b5183c22ae01b966f5583f42e69a83c2
460 | React-RCTBlob: 0b284339cbe4b15705a05e2313a51c6d8b51fa40
461 | React-RCTImage: d1756599ebd4dc2cb19d1682fe67c6b976658387
462 | React-RCTLinking: 9af0a51c6d6a4dd1674daadafffc6d03033a6d18
463 | React-RCTNetwork: 332c83929cc5eae0b3bbca4add1d668e1fc18bda
464 | React-RCTSettings: d6953772cfd55f2c68ad72b7ef29efc7ec49f773
465 | React-RCTText: 65a6de06a7389098ce24340d1d3556015c38f746
466 | React-RCTVibration: 8e9fb25724a0805107fc1acc9075e26f814df454
467 | ReactCommon: 4167844018c9ed375cc01a843e9ee564399e53c3
468 | Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
469 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
470 |
471 | PODFILE CHECKSUM: 585e27127c745643b0e09809a83702ea2606ebdb
472 |
473 | COCOAPODS: 1.9.3
474 |
--------------------------------------------------------------------------------
/ios/SensorTag.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* SensorTagTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SensorTagTests.m */; };
11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14 | 242F7E1F4B42DA40CAABB735 /* libPods-SensorTag-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B31E030A62A5361153A91AC9 /* libPods-SensorTag-tvOS.a */; };
15 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
16 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
17 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
18 | 2DCD954D1E0B4F2C00145EB5 /* SensorTagTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* SensorTagTests.m */; };
19 | 560FA81921AF70C32B8A0771 /* libPods-SensorTag.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AD8375050EDC219D62550D0 /* libPods-SensorTag.a */; };
20 | 814E6AC364E849EEEDE5B1A3 /* libPods-SensorTag-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3733D0F077267A5181E0A5B6 /* libPods-SensorTag-tvOSTests.a */; };
21 | 81AB9BB82411601600AC10FF /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.xib */; };
22 | 8AB9127D1E546FC84965D0A4 /* libPods-SensorTag-SensorTagTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 247D18BD2528F00865F3B434 /* libPods-SensorTag-SensorTagTests.a */; };
23 | /* End PBXBuildFile section */
24 |
25 | /* Begin PBXContainerItemProxy section */
26 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
27 | isa = PBXContainerItemProxy;
28 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
29 | proxyType = 1;
30 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
31 | remoteInfo = SensorTag;
32 | };
33 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
34 | isa = PBXContainerItemProxy;
35 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
36 | proxyType = 1;
37 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
38 | remoteInfo = "SensorTag-tvOS";
39 | };
40 | /* End PBXContainerItemProxy section */
41 |
42 | /* Begin PBXFileReference section */
43 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
44 | 00E356EE1AD99517003FC87E /* SensorTagTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SensorTagTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
45 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
46 | 00E356F21AD99517003FC87E /* SensorTagTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SensorTagTests.m; sourceTree = ""; };
47 | 13B07F961A680F5B00A75B9A /* SensorTag.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SensorTag.app; sourceTree = BUILT_PRODUCTS_DIR; };
48 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = SensorTag/AppDelegate.h; sourceTree = ""; };
49 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = SensorTag/AppDelegate.m; sourceTree = ""; };
50 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = SensorTag/Images.xcassets; sourceTree = ""; };
51 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = SensorTag/Info.plist; sourceTree = ""; };
52 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = SensorTag/main.m; sourceTree = ""; };
53 | 247D18BD2528F00865F3B434 /* libPods-SensorTag-SensorTagTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SensorTag-SensorTagTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
54 | 2A3004FB36873750E9696CF6 /* Pods-SensorTag.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag.debug.xcconfig"; path = "Target Support Files/Pods-SensorTag/Pods-SensorTag.debug.xcconfig"; sourceTree = ""; };
55 | 2D02E47B1E0B4A5D006451C7 /* SensorTag-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "SensorTag-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 2D02E4901E0B4A5D006451C7 /* SensorTag-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SensorTag-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
57 | 3733D0F077267A5181E0A5B6 /* libPods-SensorTag-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SensorTag-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
58 | 5014253190C2E98AF09F8C63 /* Pods-SensorTag-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-SensorTag-tvOSTests/Pods-SensorTag-tvOSTests.release.xcconfig"; sourceTree = ""; };
59 | 5AD8375050EDC219D62550D0 /* libPods-SensorTag.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SensorTag.a"; sourceTree = BUILT_PRODUCTS_DIR; };
60 | 81AB9BB72411601600AC10FF /* LaunchScreen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = LaunchScreen.xib; path = SensorTag/Base.lproj/LaunchScreen.xib; sourceTree = ""; };
61 | A27477B4984BEB56FEDDA556 /* Pods-SensorTag-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-SensorTag-tvOS/Pods-SensorTag-tvOS.debug.xcconfig"; sourceTree = ""; };
62 | A7A5919F4A1CEF350D202E40 /* Pods-SensorTag.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag.release.xcconfig"; path = "Target Support Files/Pods-SensorTag/Pods-SensorTag.release.xcconfig"; sourceTree = ""; };
63 | AFA34071074B21395F40EB14 /* Pods-SensorTag-SensorTagTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag-SensorTagTests.debug.xcconfig"; path = "Target Support Files/Pods-SensorTag-SensorTagTests/Pods-SensorTag-SensorTagTests.debug.xcconfig"; sourceTree = ""; };
64 | B31E030A62A5361153A91AC9 /* libPods-SensorTag-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SensorTag-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
65 | D4614F2C7CA2D98B22F0643B /* Pods-SensorTag-SensorTagTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag-SensorTagTests.release.xcconfig"; path = "Target Support Files/Pods-SensorTag-SensorTagTests/Pods-SensorTag-SensorTagTests.release.xcconfig"; sourceTree = ""; };
66 | D903BF1AD04F06308886CE86 /* Pods-SensorTag-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-SensorTag-tvOSTests/Pods-SensorTag-tvOSTests.debug.xcconfig"; sourceTree = ""; };
67 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
68 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
69 | F7FEA4732498DA82AA299A4F /* Pods-SensorTag-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SensorTag-tvOS.release.xcconfig"; path = "Target Support Files/Pods-SensorTag-tvOS/Pods-SensorTag-tvOS.release.xcconfig"; sourceTree = ""; };
70 | /* End PBXFileReference section */
71 |
72 | /* Begin PBXFrameworksBuildPhase section */
73 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
74 | isa = PBXFrameworksBuildPhase;
75 | buildActionMask = 2147483647;
76 | files = (
77 | 8AB9127D1E546FC84965D0A4 /* libPods-SensorTag-SensorTagTests.a in Frameworks */,
78 | );
79 | runOnlyForDeploymentPostprocessing = 0;
80 | };
81 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
82 | isa = PBXFrameworksBuildPhase;
83 | buildActionMask = 2147483647;
84 | files = (
85 | 560FA81921AF70C32B8A0771 /* libPods-SensorTag.a in Frameworks */,
86 | );
87 | runOnlyForDeploymentPostprocessing = 0;
88 | };
89 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
90 | isa = PBXFrameworksBuildPhase;
91 | buildActionMask = 2147483647;
92 | files = (
93 | 242F7E1F4B42DA40CAABB735 /* libPods-SensorTag-tvOS.a in Frameworks */,
94 | );
95 | runOnlyForDeploymentPostprocessing = 0;
96 | };
97 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
98 | isa = PBXFrameworksBuildPhase;
99 | buildActionMask = 2147483647;
100 | files = (
101 | 814E6AC364E849EEEDE5B1A3 /* libPods-SensorTag-tvOSTests.a in Frameworks */,
102 | );
103 | runOnlyForDeploymentPostprocessing = 0;
104 | };
105 | /* End PBXFrameworksBuildPhase section */
106 |
107 | /* Begin PBXGroup section */
108 | 00E356EF1AD99517003FC87E /* SensorTagTests */ = {
109 | isa = PBXGroup;
110 | children = (
111 | 00E356F21AD99517003FC87E /* SensorTagTests.m */,
112 | 00E356F01AD99517003FC87E /* Supporting Files */,
113 | );
114 | path = SensorTagTests;
115 | sourceTree = "";
116 | };
117 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
118 | isa = PBXGroup;
119 | children = (
120 | 00E356F11AD99517003FC87E /* Info.plist */,
121 | );
122 | name = "Supporting Files";
123 | sourceTree = "";
124 | };
125 | 13B07FAE1A68108700A75B9A /* SensorTag */ = {
126 | isa = PBXGroup;
127 | children = (
128 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
129 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
130 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
131 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
132 | 13B07FB61A68108700A75B9A /* Info.plist */,
133 | 81AB9BB72411601600AC10FF /* LaunchScreen.xib */,
134 | 13B07FB71A68108700A75B9A /* main.m */,
135 | );
136 | name = SensorTag;
137 | sourceTree = "";
138 | };
139 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
140 | isa = PBXGroup;
141 | children = (
142 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
143 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
144 | 5AD8375050EDC219D62550D0 /* libPods-SensorTag.a */,
145 | 247D18BD2528F00865F3B434 /* libPods-SensorTag-SensorTagTests.a */,
146 | B31E030A62A5361153A91AC9 /* libPods-SensorTag-tvOS.a */,
147 | 3733D0F077267A5181E0A5B6 /* libPods-SensorTag-tvOSTests.a */,
148 | );
149 | name = Frameworks;
150 | sourceTree = "";
151 | };
152 | 4ECAF7A14568611C7AC5496D /* Pods */ = {
153 | isa = PBXGroup;
154 | children = (
155 | 2A3004FB36873750E9696CF6 /* Pods-SensorTag.debug.xcconfig */,
156 | A7A5919F4A1CEF350D202E40 /* Pods-SensorTag.release.xcconfig */,
157 | AFA34071074B21395F40EB14 /* Pods-SensorTag-SensorTagTests.debug.xcconfig */,
158 | D4614F2C7CA2D98B22F0643B /* Pods-SensorTag-SensorTagTests.release.xcconfig */,
159 | A27477B4984BEB56FEDDA556 /* Pods-SensorTag-tvOS.debug.xcconfig */,
160 | F7FEA4732498DA82AA299A4F /* Pods-SensorTag-tvOS.release.xcconfig */,
161 | D903BF1AD04F06308886CE86 /* Pods-SensorTag-tvOSTests.debug.xcconfig */,
162 | 5014253190C2E98AF09F8C63 /* Pods-SensorTag-tvOSTests.release.xcconfig */,
163 | );
164 | path = Pods;
165 | sourceTree = "";
166 | };
167 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
168 | isa = PBXGroup;
169 | children = (
170 | );
171 | name = Libraries;
172 | sourceTree = "";
173 | };
174 | 83CBB9F61A601CBA00E9B192 = {
175 | isa = PBXGroup;
176 | children = (
177 | 13B07FAE1A68108700A75B9A /* SensorTag */,
178 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
179 | 00E356EF1AD99517003FC87E /* SensorTagTests */,
180 | 83CBBA001A601CBA00E9B192 /* Products */,
181 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
182 | 4ECAF7A14568611C7AC5496D /* Pods */,
183 | );
184 | indentWidth = 2;
185 | sourceTree = "";
186 | tabWidth = 2;
187 | usesTabs = 0;
188 | };
189 | 83CBBA001A601CBA00E9B192 /* Products */ = {
190 | isa = PBXGroup;
191 | children = (
192 | 13B07F961A680F5B00A75B9A /* SensorTag.app */,
193 | 00E356EE1AD99517003FC87E /* SensorTagTests.xctest */,
194 | 2D02E47B1E0B4A5D006451C7 /* SensorTag-tvOS.app */,
195 | 2D02E4901E0B4A5D006451C7 /* SensorTag-tvOSTests.xctest */,
196 | );
197 | name = Products;
198 | sourceTree = "";
199 | };
200 | /* End PBXGroup section */
201 |
202 | /* Begin PBXNativeTarget section */
203 | 00E356ED1AD99517003FC87E /* SensorTagTests */ = {
204 | isa = PBXNativeTarget;
205 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SensorTagTests" */;
206 | buildPhases = (
207 | D72912638117563C33E45751 /* [CP] Check Pods Manifest.lock */,
208 | 00E356EA1AD99517003FC87E /* Sources */,
209 | 00E356EB1AD99517003FC87E /* Frameworks */,
210 | 00E356EC1AD99517003FC87E /* Resources */,
211 | 050337CB2F52CAD2A532821B /* [CP] Copy Pods Resources */,
212 | );
213 | buildRules = (
214 | );
215 | dependencies = (
216 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
217 | );
218 | name = SensorTagTests;
219 | productName = SensorTagTests;
220 | productReference = 00E356EE1AD99517003FC87E /* SensorTagTests.xctest */;
221 | productType = "com.apple.product-type.bundle.unit-test";
222 | };
223 | 13B07F861A680F5B00A75B9A /* SensorTag */ = {
224 | isa = PBXNativeTarget;
225 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SensorTag" */;
226 | buildPhases = (
227 | BFC644FB3466C0D0A7CDEE8E /* [CP] Check Pods Manifest.lock */,
228 | FD10A7F022414F080027D42C /* Start Packager */,
229 | 13B07F871A680F5B00A75B9A /* Sources */,
230 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
231 | 13B07F8E1A680F5B00A75B9A /* Resources */,
232 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
233 | C34F27A67DDE3A9B112A3F51 /* [CP] Copy Pods Resources */,
234 | );
235 | buildRules = (
236 | );
237 | dependencies = (
238 | );
239 | name = SensorTag;
240 | productName = SensorTag;
241 | productReference = 13B07F961A680F5B00A75B9A /* SensorTag.app */;
242 | productType = "com.apple.product-type.application";
243 | };
244 | 2D02E47A1E0B4A5D006451C7 /* SensorTag-tvOS */ = {
245 | isa = PBXNativeTarget;
246 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SensorTag-tvOS" */;
247 | buildPhases = (
248 | BCE18256E7DED57C7A9DEE52 /* [CP] Check Pods Manifest.lock */,
249 | FD10A7F122414F3F0027D42C /* Start Packager */,
250 | 2D02E4771E0B4A5D006451C7 /* Sources */,
251 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
252 | 2D02E4791E0B4A5D006451C7 /* Resources */,
253 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
254 | );
255 | buildRules = (
256 | );
257 | dependencies = (
258 | );
259 | name = "SensorTag-tvOS";
260 | productName = "SensorTag-tvOS";
261 | productReference = 2D02E47B1E0B4A5D006451C7 /* SensorTag-tvOS.app */;
262 | productType = "com.apple.product-type.application";
263 | };
264 | 2D02E48F1E0B4A5D006451C7 /* SensorTag-tvOSTests */ = {
265 | isa = PBXNativeTarget;
266 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SensorTag-tvOSTests" */;
267 | buildPhases = (
268 | E6F2856D47F6891F6FDFADF3 /* [CP] Check Pods Manifest.lock */,
269 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
270 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
271 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
272 | );
273 | buildRules = (
274 | );
275 | dependencies = (
276 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
277 | );
278 | name = "SensorTag-tvOSTests";
279 | productName = "SensorTag-tvOSTests";
280 | productReference = 2D02E4901E0B4A5D006451C7 /* SensorTag-tvOSTests.xctest */;
281 | productType = "com.apple.product-type.bundle.unit-test";
282 | };
283 | /* End PBXNativeTarget section */
284 |
285 | /* Begin PBXProject section */
286 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
287 | isa = PBXProject;
288 | attributes = {
289 | LastUpgradeCheck = 1130;
290 | TargetAttributes = {
291 | 00E356ED1AD99517003FC87E = {
292 | CreatedOnToolsVersion = 6.2;
293 | TestTargetID = 13B07F861A680F5B00A75B9A;
294 | };
295 | 13B07F861A680F5B00A75B9A = {
296 | DevelopmentTeam = 5KDPRP7T4V;
297 | LastSwiftMigration = 1120;
298 | };
299 | 2D02E47A1E0B4A5D006451C7 = {
300 | CreatedOnToolsVersion = 8.2.1;
301 | ProvisioningStyle = Automatic;
302 | };
303 | 2D02E48F1E0B4A5D006451C7 = {
304 | CreatedOnToolsVersion = 8.2.1;
305 | ProvisioningStyle = Automatic;
306 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
307 | };
308 | };
309 | };
310 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SensorTag" */;
311 | compatibilityVersion = "Xcode 3.2";
312 | developmentRegion = en;
313 | hasScannedForEncodings = 0;
314 | knownRegions = (
315 | en,
316 | Base,
317 | );
318 | mainGroup = 83CBB9F61A601CBA00E9B192;
319 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
320 | projectDirPath = "";
321 | projectRoot = "";
322 | targets = (
323 | 13B07F861A680F5B00A75B9A /* SensorTag */,
324 | 00E356ED1AD99517003FC87E /* SensorTagTests */,
325 | 2D02E47A1E0B4A5D006451C7 /* SensorTag-tvOS */,
326 | 2D02E48F1E0B4A5D006451C7 /* SensorTag-tvOSTests */,
327 | );
328 | };
329 | /* End PBXProject section */
330 |
331 | /* Begin PBXResourcesBuildPhase section */
332 | 00E356EC1AD99517003FC87E /* Resources */ = {
333 | isa = PBXResourcesBuildPhase;
334 | buildActionMask = 2147483647;
335 | files = (
336 | );
337 | runOnlyForDeploymentPostprocessing = 0;
338 | };
339 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
340 | isa = PBXResourcesBuildPhase;
341 | buildActionMask = 2147483647;
342 | files = (
343 | 81AB9BB82411601600AC10FF /* LaunchScreen.xib in Resources */,
344 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
345 | );
346 | runOnlyForDeploymentPostprocessing = 0;
347 | };
348 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
349 | isa = PBXResourcesBuildPhase;
350 | buildActionMask = 2147483647;
351 | files = (
352 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
353 | );
354 | runOnlyForDeploymentPostprocessing = 0;
355 | };
356 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
357 | isa = PBXResourcesBuildPhase;
358 | buildActionMask = 2147483647;
359 | files = (
360 | );
361 | runOnlyForDeploymentPostprocessing = 0;
362 | };
363 | /* End PBXResourcesBuildPhase section */
364 |
365 | /* Begin PBXShellScriptBuildPhase section */
366 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
367 | isa = PBXShellScriptBuildPhase;
368 | buildActionMask = 2147483647;
369 | files = (
370 | );
371 | inputPaths = (
372 | );
373 | name = "Bundle React Native code and images";
374 | outputPaths = (
375 | );
376 | runOnlyForDeploymentPostprocessing = 0;
377 | shellPath = /bin/sh;
378 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
379 | };
380 | 050337CB2F52CAD2A532821B /* [CP] Copy Pods Resources */ = {
381 | isa = PBXShellScriptBuildPhase;
382 | buildActionMask = 2147483647;
383 | files = (
384 | );
385 | inputPaths = (
386 | "${PODS_ROOT}/Target Support Files/Pods-SensorTag-SensorTagTests/Pods-SensorTag-SensorTagTests-resources.sh",
387 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
388 | );
389 | name = "[CP] Copy Pods Resources";
390 | outputPaths = (
391 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
392 | );
393 | runOnlyForDeploymentPostprocessing = 0;
394 | shellPath = /bin/sh;
395 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SensorTag-SensorTagTests/Pods-SensorTag-SensorTagTests-resources.sh\"\n";
396 | showEnvVarsInLog = 0;
397 | };
398 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
399 | isa = PBXShellScriptBuildPhase;
400 | buildActionMask = 2147483647;
401 | files = (
402 | );
403 | inputPaths = (
404 | );
405 | name = "Bundle React Native Code And Images";
406 | outputPaths = (
407 | );
408 | runOnlyForDeploymentPostprocessing = 0;
409 | shellPath = /bin/sh;
410 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
411 | };
412 | BCE18256E7DED57C7A9DEE52 /* [CP] Check Pods Manifest.lock */ = {
413 | isa = PBXShellScriptBuildPhase;
414 | buildActionMask = 2147483647;
415 | files = (
416 | );
417 | inputFileListPaths = (
418 | );
419 | inputPaths = (
420 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
421 | "${PODS_ROOT}/Manifest.lock",
422 | );
423 | name = "[CP] Check Pods Manifest.lock";
424 | outputFileListPaths = (
425 | );
426 | outputPaths = (
427 | "$(DERIVED_FILE_DIR)/Pods-SensorTag-tvOS-checkManifestLockResult.txt",
428 | );
429 | runOnlyForDeploymentPostprocessing = 0;
430 | shellPath = /bin/sh;
431 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
432 | showEnvVarsInLog = 0;
433 | };
434 | BFC644FB3466C0D0A7CDEE8E /* [CP] Check Pods Manifest.lock */ = {
435 | isa = PBXShellScriptBuildPhase;
436 | buildActionMask = 2147483647;
437 | files = (
438 | );
439 | inputFileListPaths = (
440 | );
441 | inputPaths = (
442 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
443 | "${PODS_ROOT}/Manifest.lock",
444 | );
445 | name = "[CP] Check Pods Manifest.lock";
446 | outputFileListPaths = (
447 | );
448 | outputPaths = (
449 | "$(DERIVED_FILE_DIR)/Pods-SensorTag-checkManifestLockResult.txt",
450 | );
451 | runOnlyForDeploymentPostprocessing = 0;
452 | shellPath = /bin/sh;
453 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
454 | showEnvVarsInLog = 0;
455 | };
456 | C34F27A67DDE3A9B112A3F51 /* [CP] Copy Pods Resources */ = {
457 | isa = PBXShellScriptBuildPhase;
458 | buildActionMask = 2147483647;
459 | files = (
460 | );
461 | inputPaths = (
462 | "${PODS_ROOT}/Target Support Files/Pods-SensorTag/Pods-SensorTag-resources.sh",
463 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
464 | );
465 | name = "[CP] Copy Pods Resources";
466 | outputPaths = (
467 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
468 | );
469 | runOnlyForDeploymentPostprocessing = 0;
470 | shellPath = /bin/sh;
471 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SensorTag/Pods-SensorTag-resources.sh\"\n";
472 | showEnvVarsInLog = 0;
473 | };
474 | D72912638117563C33E45751 /* [CP] Check Pods Manifest.lock */ = {
475 | isa = PBXShellScriptBuildPhase;
476 | buildActionMask = 2147483647;
477 | files = (
478 | );
479 | inputFileListPaths = (
480 | );
481 | inputPaths = (
482 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
483 | "${PODS_ROOT}/Manifest.lock",
484 | );
485 | name = "[CP] Check Pods Manifest.lock";
486 | outputFileListPaths = (
487 | );
488 | outputPaths = (
489 | "$(DERIVED_FILE_DIR)/Pods-SensorTag-SensorTagTests-checkManifestLockResult.txt",
490 | );
491 | runOnlyForDeploymentPostprocessing = 0;
492 | shellPath = /bin/sh;
493 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
494 | showEnvVarsInLog = 0;
495 | };
496 | E6F2856D47F6891F6FDFADF3 /* [CP] Check Pods Manifest.lock */ = {
497 | isa = PBXShellScriptBuildPhase;
498 | buildActionMask = 2147483647;
499 | files = (
500 | );
501 | inputFileListPaths = (
502 | );
503 | inputPaths = (
504 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
505 | "${PODS_ROOT}/Manifest.lock",
506 | );
507 | name = "[CP] Check Pods Manifest.lock";
508 | outputFileListPaths = (
509 | );
510 | outputPaths = (
511 | "$(DERIVED_FILE_DIR)/Pods-SensorTag-tvOSTests-checkManifestLockResult.txt",
512 | );
513 | runOnlyForDeploymentPostprocessing = 0;
514 | shellPath = /bin/sh;
515 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
516 | showEnvVarsInLog = 0;
517 | };
518 | FD10A7F022414F080027D42C /* Start Packager */ = {
519 | isa = PBXShellScriptBuildPhase;
520 | buildActionMask = 2147483647;
521 | files = (
522 | );
523 | inputFileListPaths = (
524 | );
525 | inputPaths = (
526 | );
527 | name = "Start Packager";
528 | outputFileListPaths = (
529 | );
530 | outputPaths = (
531 | );
532 | runOnlyForDeploymentPostprocessing = 0;
533 | shellPath = /bin/sh;
534 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
535 | showEnvVarsInLog = 0;
536 | };
537 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
538 | isa = PBXShellScriptBuildPhase;
539 | buildActionMask = 2147483647;
540 | files = (
541 | );
542 | inputFileListPaths = (
543 | );
544 | inputPaths = (
545 | );
546 | name = "Start Packager";
547 | outputFileListPaths = (
548 | );
549 | outputPaths = (
550 | );
551 | runOnlyForDeploymentPostprocessing = 0;
552 | shellPath = /bin/sh;
553 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
554 | showEnvVarsInLog = 0;
555 | };
556 | /* End PBXShellScriptBuildPhase section */
557 |
558 | /* Begin PBXSourcesBuildPhase section */
559 | 00E356EA1AD99517003FC87E /* Sources */ = {
560 | isa = PBXSourcesBuildPhase;
561 | buildActionMask = 2147483647;
562 | files = (
563 | 00E356F31AD99517003FC87E /* SensorTagTests.m in Sources */,
564 | );
565 | runOnlyForDeploymentPostprocessing = 0;
566 | };
567 | 13B07F871A680F5B00A75B9A /* Sources */ = {
568 | isa = PBXSourcesBuildPhase;
569 | buildActionMask = 2147483647;
570 | files = (
571 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
572 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
573 | );
574 | runOnlyForDeploymentPostprocessing = 0;
575 | };
576 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
577 | isa = PBXSourcesBuildPhase;
578 | buildActionMask = 2147483647;
579 | files = (
580 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
581 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
582 | );
583 | runOnlyForDeploymentPostprocessing = 0;
584 | };
585 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
586 | isa = PBXSourcesBuildPhase;
587 | buildActionMask = 2147483647;
588 | files = (
589 | 2DCD954D1E0B4F2C00145EB5 /* SensorTagTests.m in Sources */,
590 | );
591 | runOnlyForDeploymentPostprocessing = 0;
592 | };
593 | /* End PBXSourcesBuildPhase section */
594 |
595 | /* Begin PBXTargetDependency section */
596 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
597 | isa = PBXTargetDependency;
598 | target = 13B07F861A680F5B00A75B9A /* SensorTag */;
599 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
600 | };
601 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
602 | isa = PBXTargetDependency;
603 | target = 2D02E47A1E0B4A5D006451C7 /* SensorTag-tvOS */;
604 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
605 | };
606 | /* End PBXTargetDependency section */
607 |
608 | /* Begin XCBuildConfiguration section */
609 | 00E356F61AD99517003FC87E /* Debug */ = {
610 | isa = XCBuildConfiguration;
611 | baseConfigurationReference = AFA34071074B21395F40EB14 /* Pods-SensorTag-SensorTagTests.debug.xcconfig */;
612 | buildSettings = {
613 | BUNDLE_LOADER = "$(TEST_HOST)";
614 | GCC_PREPROCESSOR_DEFINITIONS = (
615 | "DEBUG=1",
616 | "$(inherited)",
617 | );
618 | INFOPLIST_FILE = SensorTagTests/Info.plist;
619 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
620 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
621 | OTHER_LDFLAGS = (
622 | "-ObjC",
623 | "-lc++",
624 | "$(inherited)",
625 | );
626 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
627 | PRODUCT_NAME = "$(TARGET_NAME)";
628 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SensorTag.app/SensorTag";
629 | };
630 | name = Debug;
631 | };
632 | 00E356F71AD99517003FC87E /* Release */ = {
633 | isa = XCBuildConfiguration;
634 | baseConfigurationReference = D4614F2C7CA2D98B22F0643B /* Pods-SensorTag-SensorTagTests.release.xcconfig */;
635 | buildSettings = {
636 | BUNDLE_LOADER = "$(TEST_HOST)";
637 | COPY_PHASE_STRIP = NO;
638 | INFOPLIST_FILE = SensorTagTests/Info.plist;
639 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
640 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
641 | OTHER_LDFLAGS = (
642 | "-ObjC",
643 | "-lc++",
644 | "$(inherited)",
645 | );
646 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
647 | PRODUCT_NAME = "$(TARGET_NAME)";
648 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SensorTag.app/SensorTag";
649 | };
650 | name = Release;
651 | };
652 | 13B07F941A680F5B00A75B9A /* Debug */ = {
653 | isa = XCBuildConfiguration;
654 | baseConfigurationReference = 2A3004FB36873750E9696CF6 /* Pods-SensorTag.debug.xcconfig */;
655 | buildSettings = {
656 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
657 | CLANG_ENABLE_MODULES = YES;
658 | CURRENT_PROJECT_VERSION = 1;
659 | DEVELOPMENT_TEAM = 5KDPRP7T4V;
660 | ENABLE_BITCODE = NO;
661 | INFOPLIST_FILE = SensorTag/Info.plist;
662 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
663 | OTHER_LDFLAGS = (
664 | "$(inherited)",
665 | "-ObjC",
666 | "-lc++",
667 | );
668 | PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.SensorTag613;
669 | PRODUCT_NAME = SensorTag;
670 | SWIFT_OBJC_BRIDGING_HEADER = "SensorTag-Bridging-Header.h";
671 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
672 | SWIFT_VERSION = 5.0;
673 | VERSIONING_SYSTEM = "apple-generic";
674 | };
675 | name = Debug;
676 | };
677 | 13B07F951A680F5B00A75B9A /* Release */ = {
678 | isa = XCBuildConfiguration;
679 | baseConfigurationReference = A7A5919F4A1CEF350D202E40 /* Pods-SensorTag.release.xcconfig */;
680 | buildSettings = {
681 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
682 | CLANG_ENABLE_MODULES = YES;
683 | CURRENT_PROJECT_VERSION = 1;
684 | DEVELOPMENT_TEAM = 5KDPRP7T4V;
685 | INFOPLIST_FILE = SensorTag/Info.plist;
686 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
687 | OTHER_LDFLAGS = (
688 | "$(inherited)",
689 | "-ObjC",
690 | "-lc++",
691 | );
692 | PRODUCT_BUNDLE_IDENTIFIER = org.reactjs.native.example.SensorTag613;
693 | PRODUCT_NAME = SensorTag;
694 | SWIFT_OBJC_BRIDGING_HEADER = "SensorTag-Bridging-Header.h";
695 | SWIFT_VERSION = 5.0;
696 | VERSIONING_SYSTEM = "apple-generic";
697 | };
698 | name = Release;
699 | };
700 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
701 | isa = XCBuildConfiguration;
702 | baseConfigurationReference = A27477B4984BEB56FEDDA556 /* Pods-SensorTag-tvOS.debug.xcconfig */;
703 | buildSettings = {
704 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
705 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
706 | CLANG_ANALYZER_NONNULL = YES;
707 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
708 | CLANG_WARN_INFINITE_RECURSION = YES;
709 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
710 | DEBUG_INFORMATION_FORMAT = dwarf;
711 | ENABLE_TESTABILITY = YES;
712 | GCC_NO_COMMON_BLOCKS = YES;
713 | INFOPLIST_FILE = "SensorTag-tvOS/Info.plist";
714 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
715 | OTHER_LDFLAGS = (
716 | "$(inherited)",
717 | "-ObjC",
718 | "-lc++",
719 | );
720 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.SensorTag-tvOS";
721 | PRODUCT_NAME = "$(TARGET_NAME)";
722 | SDKROOT = appletvos;
723 | TARGETED_DEVICE_FAMILY = 3;
724 | TVOS_DEPLOYMENT_TARGET = 10.0;
725 | };
726 | name = Debug;
727 | };
728 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
729 | isa = XCBuildConfiguration;
730 | baseConfigurationReference = F7FEA4732498DA82AA299A4F /* Pods-SensorTag-tvOS.release.xcconfig */;
731 | buildSettings = {
732 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
733 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
734 | CLANG_ANALYZER_NONNULL = YES;
735 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
736 | CLANG_WARN_INFINITE_RECURSION = YES;
737 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
738 | COPY_PHASE_STRIP = NO;
739 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
740 | GCC_NO_COMMON_BLOCKS = YES;
741 | INFOPLIST_FILE = "SensorTag-tvOS/Info.plist";
742 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
743 | OTHER_LDFLAGS = (
744 | "$(inherited)",
745 | "-ObjC",
746 | "-lc++",
747 | );
748 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.SensorTag-tvOS";
749 | PRODUCT_NAME = "$(TARGET_NAME)";
750 | SDKROOT = appletvos;
751 | TARGETED_DEVICE_FAMILY = 3;
752 | TVOS_DEPLOYMENT_TARGET = 10.0;
753 | };
754 | name = Release;
755 | };
756 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
757 | isa = XCBuildConfiguration;
758 | baseConfigurationReference = D903BF1AD04F06308886CE86 /* Pods-SensorTag-tvOSTests.debug.xcconfig */;
759 | buildSettings = {
760 | BUNDLE_LOADER = "$(TEST_HOST)";
761 | CLANG_ANALYZER_NONNULL = YES;
762 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
763 | CLANG_WARN_INFINITE_RECURSION = YES;
764 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
765 | DEBUG_INFORMATION_FORMAT = dwarf;
766 | ENABLE_TESTABILITY = YES;
767 | GCC_NO_COMMON_BLOCKS = YES;
768 | INFOPLIST_FILE = "SensorTag-tvOSTests/Info.plist";
769 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
770 | OTHER_LDFLAGS = (
771 | "$(inherited)",
772 | "-ObjC",
773 | "-lc++",
774 | );
775 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.SensorTag-tvOSTests";
776 | PRODUCT_NAME = "$(TARGET_NAME)";
777 | SDKROOT = appletvos;
778 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SensorTag-tvOS.app/SensorTag-tvOS";
779 | TVOS_DEPLOYMENT_TARGET = 10.1;
780 | };
781 | name = Debug;
782 | };
783 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
784 | isa = XCBuildConfiguration;
785 | baseConfigurationReference = 5014253190C2E98AF09F8C63 /* Pods-SensorTag-tvOSTests.release.xcconfig */;
786 | buildSettings = {
787 | BUNDLE_LOADER = "$(TEST_HOST)";
788 | CLANG_ANALYZER_NONNULL = YES;
789 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
790 | CLANG_WARN_INFINITE_RECURSION = YES;
791 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
792 | COPY_PHASE_STRIP = NO;
793 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
794 | GCC_NO_COMMON_BLOCKS = YES;
795 | INFOPLIST_FILE = "SensorTag-tvOSTests/Info.plist";
796 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
797 | OTHER_LDFLAGS = (
798 | "$(inherited)",
799 | "-ObjC",
800 | "-lc++",
801 | );
802 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.SensorTag-tvOSTests";
803 | PRODUCT_NAME = "$(TARGET_NAME)";
804 | SDKROOT = appletvos;
805 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SensorTag-tvOS.app/SensorTag-tvOS";
806 | TVOS_DEPLOYMENT_TARGET = 10.1;
807 | };
808 | name = Release;
809 | };
810 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
811 | isa = XCBuildConfiguration;
812 | buildSettings = {
813 | ALWAYS_SEARCH_USER_PATHS = NO;
814 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
815 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
816 | CLANG_CXX_LIBRARY = "libc++";
817 | CLANG_ENABLE_MODULES = YES;
818 | CLANG_ENABLE_OBJC_ARC = YES;
819 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
820 | CLANG_WARN_BOOL_CONVERSION = YES;
821 | CLANG_WARN_COMMA = YES;
822 | CLANG_WARN_CONSTANT_CONVERSION = YES;
823 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
824 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
825 | CLANG_WARN_EMPTY_BODY = YES;
826 | CLANG_WARN_ENUM_CONVERSION = YES;
827 | CLANG_WARN_INFINITE_RECURSION = YES;
828 | CLANG_WARN_INT_CONVERSION = YES;
829 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
830 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
831 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
832 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
833 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
834 | CLANG_WARN_STRICT_PROTOTYPES = YES;
835 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
836 | CLANG_WARN_UNREACHABLE_CODE = YES;
837 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
838 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
839 | COPY_PHASE_STRIP = NO;
840 | ENABLE_STRICT_OBJC_MSGSEND = YES;
841 | ENABLE_TESTABILITY = YES;
842 | GCC_C_LANGUAGE_STANDARD = gnu99;
843 | GCC_DYNAMIC_NO_PIC = NO;
844 | GCC_NO_COMMON_BLOCKS = YES;
845 | GCC_OPTIMIZATION_LEVEL = 0;
846 | GCC_PREPROCESSOR_DEFINITIONS = (
847 | "DEBUG=1",
848 | "$(inherited)",
849 | );
850 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
851 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
852 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
853 | GCC_WARN_UNDECLARED_SELECTOR = YES;
854 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
855 | GCC_WARN_UNUSED_FUNCTION = YES;
856 | GCC_WARN_UNUSED_VARIABLE = YES;
857 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
858 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
859 | LIBRARY_SEARCH_PATHS = (
860 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
861 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
862 | "\"$(inherited)\"",
863 | );
864 | MTL_ENABLE_DEBUG_INFO = YES;
865 | ONLY_ACTIVE_ARCH = YES;
866 | SDKROOT = iphoneos;
867 | };
868 | name = Debug;
869 | };
870 | 83CBBA211A601CBA00E9B192 /* Release */ = {
871 | isa = XCBuildConfiguration;
872 | buildSettings = {
873 | ALWAYS_SEARCH_USER_PATHS = NO;
874 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
875 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
876 | CLANG_CXX_LIBRARY = "libc++";
877 | CLANG_ENABLE_MODULES = YES;
878 | CLANG_ENABLE_OBJC_ARC = YES;
879 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
880 | CLANG_WARN_BOOL_CONVERSION = YES;
881 | CLANG_WARN_COMMA = YES;
882 | CLANG_WARN_CONSTANT_CONVERSION = YES;
883 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
884 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
885 | CLANG_WARN_EMPTY_BODY = YES;
886 | CLANG_WARN_ENUM_CONVERSION = YES;
887 | CLANG_WARN_INFINITE_RECURSION = YES;
888 | CLANG_WARN_INT_CONVERSION = YES;
889 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
890 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
891 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
892 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
893 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
894 | CLANG_WARN_STRICT_PROTOTYPES = YES;
895 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
896 | CLANG_WARN_UNREACHABLE_CODE = YES;
897 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
898 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
899 | COPY_PHASE_STRIP = YES;
900 | ENABLE_NS_ASSERTIONS = NO;
901 | ENABLE_STRICT_OBJC_MSGSEND = YES;
902 | GCC_C_LANGUAGE_STANDARD = gnu99;
903 | GCC_NO_COMMON_BLOCKS = YES;
904 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
905 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
906 | GCC_WARN_UNDECLARED_SELECTOR = YES;
907 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
908 | GCC_WARN_UNUSED_FUNCTION = YES;
909 | GCC_WARN_UNUSED_VARIABLE = YES;
910 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
911 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
912 | LIBRARY_SEARCH_PATHS = (
913 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
914 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
915 | "\"$(inherited)\"",
916 | );
917 | MTL_ENABLE_DEBUG_INFO = NO;
918 | SDKROOT = iphoneos;
919 | VALIDATE_PRODUCT = YES;
920 | };
921 | name = Release;
922 | };
923 | /* End XCBuildConfiguration section */
924 |
925 | /* Begin XCConfigurationList section */
926 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "SensorTagTests" */ = {
927 | isa = XCConfigurationList;
928 | buildConfigurations = (
929 | 00E356F61AD99517003FC87E /* Debug */,
930 | 00E356F71AD99517003FC87E /* Release */,
931 | );
932 | defaultConfigurationIsVisible = 0;
933 | defaultConfigurationName = Release;
934 | };
935 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "SensorTag" */ = {
936 | isa = XCConfigurationList;
937 | buildConfigurations = (
938 | 13B07F941A680F5B00A75B9A /* Debug */,
939 | 13B07F951A680F5B00A75B9A /* Release */,
940 | );
941 | defaultConfigurationIsVisible = 0;
942 | defaultConfigurationName = Release;
943 | };
944 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SensorTag-tvOS" */ = {
945 | isa = XCConfigurationList;
946 | buildConfigurations = (
947 | 2D02E4971E0B4A5E006451C7 /* Debug */,
948 | 2D02E4981E0B4A5E006451C7 /* Release */,
949 | );
950 | defaultConfigurationIsVisible = 0;
951 | defaultConfigurationName = Release;
952 | };
953 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "SensorTag-tvOSTests" */ = {
954 | isa = XCConfigurationList;
955 | buildConfigurations = (
956 | 2D02E4991E0B4A5E006451C7 /* Debug */,
957 | 2D02E49A1E0B4A5E006451C7 /* Release */,
958 | );
959 | defaultConfigurationIsVisible = 0;
960 | defaultConfigurationName = Release;
961 | };
962 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "SensorTag" */ = {
963 | isa = XCConfigurationList;
964 | buildConfigurations = (
965 | 83CBBA201A601CBA00E9B192 /* Debug */,
966 | 83CBBA211A601CBA00E9B192 /* Release */,
967 | );
968 | defaultConfigurationIsVisible = 0;
969 | defaultConfigurationName = Release;
970 | };
971 | /* End XCConfigurationList section */
972 | };
973 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
974 | }
975 |
--------------------------------------------------------------------------------