update strings to WheresTheTP
|
|
@ -1,10 +1,10 @@
|
|||
# Aretherecookies?
|
||||
# Where's the TP?
|
||||
A mobile app to find a place that has some cookies!
|
||||
|
||||
## Getting Started
|
||||
|
||||
```sh
|
||||
git clone git@gitlab.com:aretherecookies/ui-mobile.git
|
||||
git clone git@gitlab.com:wheres-the-tp/ui-mobile.git
|
||||
yarn install
|
||||
react-native run-android
|
||||
react-native start
|
||||
|
|
|
|||
|
|
@ -35,12 +35,12 @@ android_library(
|
|||
|
||||
android_build_config(
|
||||
name = "build_config",
|
||||
package = "com.aretherecookies",
|
||||
package = "com.wheresthetp",
|
||||
)
|
||||
|
||||
android_resource(
|
||||
name = "res",
|
||||
package = "com.aretherecookies",
|
||||
package = "com.wheresthetp",
|
||||
res = "src/main/res",
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ android {
|
|||
}
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.aretherecookies"
|
||||
applicationId "com.wheresthetp"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
versionCode 105
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
"client_info": {
|
||||
"mobilesdk_app_id": "1:648700523612:android:6a01cf0d8c4bf5fc",
|
||||
"android_client_info": {
|
||||
"package_name": "com.aretherecookies"
|
||||
"package_name": "com.wheresthetp"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
|
|
@ -26,7 +26,7 @@
|
|||
"client_id": "648700523612-lm35m5d7m7k0sdutqmatbfhq2qsnd5if.apps.googleusercontent.com",
|
||||
"client_type": 1,
|
||||
"android_info": {
|
||||
"package_name": "com.aretherecookies",
|
||||
"package_name": "com.wheresthetp",
|
||||
"certificate_hash": "2d8bb3695a1f451c938dd3a137578bbd8cd98b3f"
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.aretherecookies">
|
||||
package="com.wheresthetp">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package com.aretherecookies;
|
||||
package com.wheresthetp;
|
||||
|
||||
import com.facebook.react.ReactActivity;
|
||||
|
||||
|
|
@ -10,6 +10,6 @@ public class MainActivity extends ReactActivity {
|
|||
*/
|
||||
@Override
|
||||
protected String getMainComponentName() {
|
||||
return "aretherecookies";
|
||||
return "wheresthetp";
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package com.aretherecookies;
|
||||
package com.wheresthetp;
|
||||
|
||||
import android.app.Application;
|
||||
import android.util.Log;
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
<resources>
|
||||
<string name="app_name">Aretherecookies?</string>
|
||||
<string name="app_name">Where\'s the TP?</string>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
rootProject.name = 'aretherecookies'
|
||||
rootProject.name = 'wheresthetp'
|
||||
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
|
||||
include ':app'
|
||||
|
|
|
|||
4
app.json
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"name": "aretherecookies",
|
||||
"displayName": "Aretherecookies?"
|
||||
"name": "wheresthetp",
|
||||
"displayName": "Where's the TP?"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Are There Cookies? Check for good stuff near you.</title>
|
||||
<title>Where's the TP? Check for good stuff near you.</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,700" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.6/dist/jquery.fancybox.min.css" />
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
<div class="container">
|
||||
<div class="row align-items-center justify-content-center no-gutters">
|
||||
<div class="col-lg-1 col-sm-2"><img src="img/atc-cookie-logo.png" class="logo img-fluid" alt="logo" /></div>
|
||||
<div class="col-lg-5 col-sm-6"><h1>Are There Cookies?</h1></div>
|
||||
<div class="col-lg-5 col-sm-6"><h1>Where's the TP?</h1></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -24,19 +24,19 @@
|
|||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<h2>Welcome to our Alpha testing program.</h2>
|
||||
<p><strong>Are There Cookies?</strong> is an app that lets people share and learn what's available near by. Mainly food.</p>
|
||||
<p><strong>Where's the TP?</strong> is an app that lets people share and learn what's available near by. Mainly food.</p>
|
||||
<ul>
|
||||
<li>Let other knows how much of something is left</li>
|
||||
<li>See how much of the thing you want is left</li>
|
||||
</ul>
|
||||
|
||||
<a href="https://play.google.com/apps/testing/com.aretherecookies" class="btn btn-primary join">Join the Alpha Test</a>
|
||||
<a href="https://play.google.com/apps/testing/com.wheresthetp" class="btn btn-primary join">Join the Alpha Test</a>
|
||||
<!-- <p> Want to know if Whole Foods has any of those Big John cookies left? Look it up on our app. Are you at Whole Foods and
|
||||
see that there are only a few cookies left? Let other people know. This works for anything. Are you at that food truck
|
||||
and see they are sold our of their special? Let everyone know. Do you want to know if that bakery has anyone cupcakes left? Look it up.</p> -->
|
||||
|
||||
<div class="screens">
|
||||
<h5 class="text-center">Are There Cookies? Screens</h5>
|
||||
<h5 class="text-center">Where's the TP? Screens</h5>
|
||||
<div class="row">
|
||||
<div class="col-4 text-center">
|
||||
<a data-fancybox="gallery" href="img/Screenshot3.jpg">
|
||||
|
|
|
|||
|
|
@ -4,17 +4,17 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Are There Cookies? Join our Alpha testing program.</title>
|
||||
<title>Where's the TP? Join our Alpha testing program.</title>
|
||||
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,700" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.6/dist/jquery.fancybox.min.css" />
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
|
||||
<meta property="og:url" content="http://aretherecookies.com" />
|
||||
<meta property="og:url" content="http://wheresthetp.com" />
|
||||
<meta property="og:type" content="article" />
|
||||
<meta property="og:title" content="Join our Alpha testing program." />
|
||||
<meta property="og:description" content="Learn about the Are There Cookies Android app and join our alpha test." />
|
||||
<meta property="og:image" content="http://aretherecookies.com/img/atc-cookie-logo.png" />
|
||||
<meta property="og:description" content="Learn about the Where's the TP Android app and join our alpha test." />
|
||||
<meta property="og:image" content="http://wheresthetp.com/img/atc-cookie-logo.png" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="jumbotron jumbotron-fluid atc-header">
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
<div class="row no-gutters">
|
||||
<div class="col-lg-12 text-center">
|
||||
<img src="img/atc-cookie-logo.png" class="logo" alt="logo" />
|
||||
<h1 class="align-middle">Are There Cookies?</h1>
|
||||
<h1 class="align-middle">Where's the TP?</h1>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
<p>
|
||||
How often has this happened to you? You get a craving for something and make the trip to the store to
|
||||
get it, only to find they are out. Wouldn’t it be nice to know if the store had what you wanted before
|
||||
you left? <strong>Are There Cookies</strong> lets you check the mount of food that is left and update the amount for other
|
||||
you left? <strong>Where's the TP</strong> lets you check the mount of food that is left and update the amount for other
|
||||
people.
|
||||
</p>
|
||||
<p class="text-center">
|
||||
|
|
@ -46,13 +46,13 @@
|
|||
</p>
|
||||
|
||||
|
||||
<a href="https://play.google.com/apps/testing/com.aretherecookies" class="btn btn-primary join">Join the Alpha Test</a>
|
||||
<a href="https://play.google.com/apps/testing/com.wheresthetp" class="btn btn-primary join">Join the Alpha Test</a>
|
||||
<!-- <p> Want to know if Whole Foods has any of those Big John cookies left? Look it up on our app. Are you at Whole Foods and
|
||||
see that there are only a few cookies left? Let other people know. This works for anything. Are you at that food truck
|
||||
and see they are sold our of their special? Let everyone know. Do you want to know if that bakery has anyone cupcakes left? Look it up.</p> -->
|
||||
|
||||
<div class="screens">
|
||||
<h4 class="text-center">Are There Cookies? Screens</h4>
|
||||
<h4 class="text-center">Where's the TP? Screens</h4>
|
||||
<div class="row">
|
||||
<div class="col-4 text-center">
|
||||
<a data-fancybox="gallery" href="img/Screenshot3.jpg">
|
||||
|
|
|
|||
12
ios/Podfile
|
|
@ -1,8 +1,8 @@
|
|||
platform :ios, '9.0'
|
||||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
||||
|
||||
target 'aretherecookies' do
|
||||
# Pods for aretherecookies
|
||||
target 'wheresthetp' do
|
||||
# Pods for wheresthetp
|
||||
pod 'React', :path => '../node_modules/react-native/'
|
||||
pod 'React-Core', :path => '../node_modules/react-native/React'
|
||||
pod 'React-DevSupport', :path => '../node_modules/react-native/React'
|
||||
|
|
@ -31,7 +31,7 @@ target 'aretherecookies' do
|
|||
pod 'react-native-geolocation', path: '../node_modules/@react-native-community/geolocation'
|
||||
|
||||
|
||||
target 'aretherecookiesTests' do
|
||||
target 'wheresthetpTests' do
|
||||
inherit! :search_paths
|
||||
# Pods for testing
|
||||
end
|
||||
|
|
@ -39,10 +39,10 @@ target 'aretherecookies' do
|
|||
use_native_modules!
|
||||
end
|
||||
|
||||
target 'aretherecookies-tvOS' do
|
||||
# Pods for aretherecookies-tvOS
|
||||
target 'wheresthetp-tvOS' do
|
||||
# Pods for wheresthetp-tvOS
|
||||
|
||||
target 'aretherecookies-tvOSTests' do
|
||||
target 'wheresthetp-tvOSTests' do
|
||||
inherit! :search_paths
|
||||
# Pods for testing
|
||||
end
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
00E356F31AD99517003FC87E /* aretherecookiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* aretherecookiesTests.m */; };
|
||||
059B94808F77442BE9D23D4F /* libPods-aretherecookies-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BD2C1DF6FC2DCAF8FF7251F /* libPods-aretherecookies-tvOSTests.a */; };
|
||||
00E356F31AD99517003FC87E /* wheresthetpTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* wheresthetpTests.m */; };
|
||||
059B94808F77442BE9D23D4F /* libPods-wheresthetp-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BD2C1DF6FC2DCAF8FF7251F /* libPods-wheresthetp-tvOSTests.a */; };
|
||||
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
|
||||
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
|
||||
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
||||
|
|
@ -16,10 +16,10 @@
|
|||
2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
|
||||
2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
||||
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
||||
2DCD954D1E0B4F2C00145EB5 /* aretherecookiesTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* aretherecookiesTests.m */; };
|
||||
3EB3A0C32ACC6A1EB36E8C78 /* libPods-aretherecookies.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F558C5D7B66C984A1E191FD /* libPods-aretherecookies.a */; };
|
||||
40B5869F9D5A784F8BAF5B2A /* libPods-aretherecookies-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B0C0C61A65682F4FAF5A57D /* libPods-aretherecookies-tvOS.a */; };
|
||||
483EC2D374DE88D6D9191BA7 /* libPods-aretherecookiesTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0138EED8EB9F5930C25F445A /* libPods-aretherecookiesTests.a */; };
|
||||
2DCD954D1E0B4F2C00145EB5 /* wheresthetpTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* wheresthetpTests.m */; };
|
||||
3EB3A0C32ACC6A1EB36E8C78 /* libPods-wheresthetp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F558C5D7B66C984A1E191FD /* libPods-wheresthetp.a */; };
|
||||
40B5869F9D5A784F8BAF5B2A /* libPods-wheresthetp-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B0C0C61A65682F4FAF5A57D /* libPods-wheresthetp-tvOS.a */; };
|
||||
483EC2D374DE88D6D9191BA7 /* libPods-wheresthetpTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0138EED8EB9F5930C25F445A /* libPods-wheresthetpTests.a */; };
|
||||
864B2F272336930000D30B44 /* Roboto-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 864B2F1B2336930000D30B44 /* Roboto-Italic.ttf */; };
|
||||
864B2F282336930000D30B44 /* Roboto-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 864B2F1C2336930000D30B44 /* Roboto-Regular.ttf */; };
|
||||
864B2F292336930000D30B44 /* Roboto-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 864B2F1D2336930000D30B44 /* Roboto-Black.ttf */; };
|
||||
|
|
@ -40,36 +40,36 @@
|
|||
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
||||
remoteInfo = aretherecookies;
|
||||
remoteInfo = wheresthetp;
|
||||
};
|
||||
2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
|
||||
remoteInfo = "aretherecookies-tvOS";
|
||||
remoteInfo = "wheresthetp-tvOS";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
|
||||
00E356EE1AD99517003FC87E /* aretherecookiesTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = aretherecookiesTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
00E356EE1AD99517003FC87E /* wheresthetpTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = wheresthetpTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
00E356F21AD99517003FC87E /* aretherecookiesTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = aretherecookiesTests.m; sourceTree = "<group>"; };
|
||||
0138EED8EB9F5930C25F445A /* libPods-aretherecookiesTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-aretherecookiesTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
0BD2C1DF6FC2DCAF8FF7251F /* libPods-aretherecookies-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-aretherecookies-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
13B07F961A680F5B00A75B9A /* aretherecookies.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = aretherecookies.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = aretherecookies/AppDelegate.h; sourceTree = "<group>"; };
|
||||
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = aretherecookies/AppDelegate.m; sourceTree = "<group>"; };
|
||||
00E356F21AD99517003FC87E /* wheresthetpTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = wheresthetpTests.m; sourceTree = "<group>"; };
|
||||
0138EED8EB9F5930C25F445A /* libPods-wheresthetpTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-wheresthetpTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
0BD2C1DF6FC2DCAF8FF7251F /* libPods-wheresthetp-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-wheresthetp-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
13B07F961A680F5B00A75B9A /* wheresthetp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = wheresthetp.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = wheresthetp/AppDelegate.h; sourceTree = "<group>"; };
|
||||
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = wheresthetp/AppDelegate.m; sourceTree = "<group>"; };
|
||||
13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
|
||||
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = aretherecookies/Images.xcassets; sourceTree = "<group>"; };
|
||||
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = aretherecookies/Info.plist; sourceTree = "<group>"; };
|
||||
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = aretherecookies/main.m; sourceTree = "<group>"; };
|
||||
16BDF95E88444554395C9619 /* Pods-aretherecookiesTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookiesTests.debug.xcconfig"; path = "Target Support Files/Pods-aretherecookiesTests/Pods-aretherecookiesTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
2D02E47B1E0B4A5D006451C7 /* aretherecookies-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "aretherecookies-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
2D02E4901E0B4A5D006451C7 /* aretherecookies-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "aretherecookies-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
5EFE6F6533996B77ED8319E1 /* Pods-aretherecookies.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookies.debug.xcconfig"; path = "Target Support Files/Pods-aretherecookies/Pods-aretherecookies.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
79D753C2DEA55DC82D3DC21E /* Pods-aretherecookies.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookies.release.xcconfig"; path = "Target Support Files/Pods-aretherecookies/Pods-aretherecookies.release.xcconfig"; sourceTree = "<group>"; };
|
||||
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = wheresthetp/Images.xcassets; sourceTree = "<group>"; };
|
||||
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = wheresthetp/Info.plist; sourceTree = "<group>"; };
|
||||
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = wheresthetp/main.m; sourceTree = "<group>"; };
|
||||
16BDF95E88444554395C9619 /* Pods-wheresthetpTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetpTests.debug.xcconfig"; path = "Target Support Files/Pods-wheresthetpTests/Pods-wheresthetpTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
2D02E47B1E0B4A5D006451C7 /* wheresthetp-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "wheresthetp-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
2D02E4901E0B4A5D006451C7 /* wheresthetp-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "wheresthetp-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
5EFE6F6533996B77ED8319E1 /* Pods-wheresthetp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetp.debug.xcconfig"; path = "Target Support Files/Pods-wheresthetp/Pods-wheresthetp.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
79D753C2DEA55DC82D3DC21E /* Pods-wheresthetp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetp.release.xcconfig"; path = "Target Support Files/Pods-wheresthetp/Pods-wheresthetp.release.xcconfig"; sourceTree = "<group>"; };
|
||||
864B2F1B2336930000D30B44 /* Roboto-Italic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "Roboto-Italic.ttf"; path = "../static/fonts/Roboto-Italic.ttf"; sourceTree = "<group>"; };
|
||||
864B2F1C2336930000D30B44 /* Roboto-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "Roboto-Regular.ttf"; path = "../static/fonts/Roboto-Regular.ttf"; sourceTree = "<group>"; };
|
||||
864B2F1D2336930000D30B44 /* Roboto-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "Roboto-Black.ttf"; path = "../static/fonts/Roboto-Black.ttf"; sourceTree = "<group>"; };
|
||||
|
|
@ -82,15 +82,15 @@
|
|||
864B2F242336930000D30B44 /* Roboto-MediumItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "Roboto-MediumItalic.ttf"; path = "../static/fonts/Roboto-MediumItalic.ttf"; sourceTree = "<group>"; };
|
||||
864B2F252336930000D30B44 /* Roboto-Thin.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "Roboto-Thin.ttf"; path = "../static/fonts/Roboto-Thin.ttf"; sourceTree = "<group>"; };
|
||||
864B2F262336930000D30B44 /* Roboto-ThinItalic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "Roboto-ThinItalic.ttf"; path = "../static/fonts/Roboto-ThinItalic.ttf"; sourceTree = "<group>"; };
|
||||
8F558C5D7B66C984A1E191FD /* libPods-aretherecookies.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-aretherecookies.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
996F38314CE5C56ED0171810 /* Pods-aretherecookies-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookies-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-aretherecookies-tvOSTests/Pods-aretherecookies-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||
9B0C0C61A65682F4FAF5A57D /* libPods-aretherecookies-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-aretherecookies-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
B1E3D3780A5838126F29C8D1 /* Pods-aretherecookies-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookies-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-aretherecookies-tvOSTests/Pods-aretherecookies-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
B41CD910A4154DDECE69AF9E /* Pods-aretherecookies-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookies-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-aretherecookies-tvOS/Pods-aretherecookies-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
B5B76F0CFFD3FECFC296152E /* Pods-aretherecookiesTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookiesTests.release.xcconfig"; path = "Target Support Files/Pods-aretherecookiesTests/Pods-aretherecookiesTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||
8F558C5D7B66C984A1E191FD /* libPods-wheresthetp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-wheresthetp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
996F38314CE5C56ED0171810 /* Pods-wheresthetp-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetp-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-wheresthetp-tvOSTests/Pods-wheresthetp-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||
9B0C0C61A65682F4FAF5A57D /* libPods-wheresthetp-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-wheresthetp-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
B1E3D3780A5838126F29C8D1 /* Pods-wheresthetp-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetp-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-wheresthetp-tvOSTests/Pods-wheresthetp-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
B41CD910A4154DDECE69AF9E /* Pods-wheresthetp-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetp-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-wheresthetp-tvOS/Pods-wheresthetp-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
B5B76F0CFFD3FECFC296152E /* Pods-wheresthetpTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetpTests.release.xcconfig"; path = "Target Support Files/Pods-wheresthetpTests/Pods-wheresthetpTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
||||
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; };
|
||||
EDF48D9B600BF039DF905409 /* Pods-aretherecookies-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-aretherecookies-tvOS.release.xcconfig"; path = "Target Support Files/Pods-aretherecookies-tvOS/Pods-aretherecookies-tvOS.release.xcconfig"; sourceTree = "<group>"; };
|
||||
EDF48D9B600BF039DF905409 /* Pods-wheresthetp-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-wheresthetp-tvOS.release.xcconfig"; path = "Target Support Files/Pods-wheresthetp-tvOS/Pods-wheresthetp-tvOS.release.xcconfig"; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
483EC2D374DE88D6D9191BA7 /* libPods-aretherecookiesTests.a in Frameworks */,
|
||||
483EC2D374DE88D6D9191BA7 /* libPods-wheresthetpTests.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3EB3A0C32ACC6A1EB36E8C78 /* libPods-aretherecookies.a in Frameworks */,
|
||||
3EB3A0C32ACC6A1EB36E8C78 /* libPods-wheresthetp.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
@ -114,7 +114,7 @@
|
|||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
40B5869F9D5A784F8BAF5B2A /* libPods-aretherecookies-tvOS.a in Frameworks */,
|
||||
40B5869F9D5A784F8BAF5B2A /* libPods-wheresthetp-tvOS.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
@ -122,20 +122,20 @@
|
|||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
059B94808F77442BE9D23D4F /* libPods-aretherecookies-tvOSTests.a in Frameworks */,
|
||||
059B94808F77442BE9D23D4F /* libPods-wheresthetp-tvOSTests.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
00E356EF1AD99517003FC87E /* aretherecookiesTests */ = {
|
||||
00E356EF1AD99517003FC87E /* wheresthetpTests */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
00E356F21AD99517003FC87E /* aretherecookiesTests.m */,
|
||||
00E356F21AD99517003FC87E /* wheresthetpTests.m */,
|
||||
00E356F01AD99517003FC87E /* Supporting Files */,
|
||||
);
|
||||
path = aretherecookiesTests;
|
||||
path = wheresthetpTests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
name = Resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
13B07FAE1A68108700A75B9A /* aretherecookies */ = {
|
||||
13B07FAE1A68108700A75B9A /* wheresthetp */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
||||
|
|
@ -176,20 +176,20 @@
|
|||
13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
|
||||
13B07FB71A68108700A75B9A /* main.m */,
|
||||
);
|
||||
name = aretherecookies;
|
||||
name = wheresthetp;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
155329BE38B5B21AA2D08380 /* Pods */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5EFE6F6533996B77ED8319E1 /* Pods-aretherecookies.debug.xcconfig */,
|
||||
79D753C2DEA55DC82D3DC21E /* Pods-aretherecookies.release.xcconfig */,
|
||||
B41CD910A4154DDECE69AF9E /* Pods-aretherecookies-tvOS.debug.xcconfig */,
|
||||
EDF48D9B600BF039DF905409 /* Pods-aretherecookies-tvOS.release.xcconfig */,
|
||||
B1E3D3780A5838126F29C8D1 /* Pods-aretherecookies-tvOSTests.debug.xcconfig */,
|
||||
996F38314CE5C56ED0171810 /* Pods-aretherecookies-tvOSTests.release.xcconfig */,
|
||||
16BDF95E88444554395C9619 /* Pods-aretherecookiesTests.debug.xcconfig */,
|
||||
B5B76F0CFFD3FECFC296152E /* Pods-aretherecookiesTests.release.xcconfig */,
|
||||
5EFE6F6533996B77ED8319E1 /* Pods-wheresthetp.debug.xcconfig */,
|
||||
79D753C2DEA55DC82D3DC21E /* Pods-wheresthetp.release.xcconfig */,
|
||||
B41CD910A4154DDECE69AF9E /* Pods-wheresthetp-tvOS.debug.xcconfig */,
|
||||
EDF48D9B600BF039DF905409 /* Pods-wheresthetp-tvOS.release.xcconfig */,
|
||||
B1E3D3780A5838126F29C8D1 /* Pods-wheresthetp-tvOSTests.debug.xcconfig */,
|
||||
996F38314CE5C56ED0171810 /* Pods-wheresthetp-tvOSTests.release.xcconfig */,
|
||||
16BDF95E88444554395C9619 /* Pods-wheresthetpTests.debug.xcconfig */,
|
||||
B5B76F0CFFD3FECFC296152E /* Pods-wheresthetpTests.release.xcconfig */,
|
||||
);
|
||||
path = Pods;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -199,10 +199,10 @@
|
|||
children = (
|
||||
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
||||
ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
|
||||
8F558C5D7B66C984A1E191FD /* libPods-aretherecookies.a */,
|
||||
9B0C0C61A65682F4FAF5A57D /* libPods-aretherecookies-tvOS.a */,
|
||||
0BD2C1DF6FC2DCAF8FF7251F /* libPods-aretherecookies-tvOSTests.a */,
|
||||
0138EED8EB9F5930C25F445A /* libPods-aretherecookiesTests.a */,
|
||||
8F558C5D7B66C984A1E191FD /* libPods-wheresthetp.a */,
|
||||
9B0C0C61A65682F4FAF5A57D /* libPods-wheresthetp-tvOS.a */,
|
||||
0BD2C1DF6FC2DCAF8FF7251F /* libPods-wheresthetp-tvOSTests.a */,
|
||||
0138EED8EB9F5930C25F445A /* libPods-wheresthetpTests.a */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -217,9 +217,9 @@
|
|||
83CBB9F61A601CBA00E9B192 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
13B07FAE1A68108700A75B9A /* aretherecookies */,
|
||||
13B07FAE1A68108700A75B9A /* wheresthetp */,
|
||||
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
||||
00E356EF1AD99517003FC87E /* aretherecookiesTests */,
|
||||
00E356EF1AD99517003FC87E /* wheresthetpTests */,
|
||||
83CBBA001A601CBA00E9B192 /* Products */,
|
||||
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
||||
155329BE38B5B21AA2D08380 /* Pods */,
|
||||
|
|
@ -233,10 +233,10 @@
|
|||
83CBBA001A601CBA00E9B192 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
13B07F961A680F5B00A75B9A /* aretherecookies.app */,
|
||||
00E356EE1AD99517003FC87E /* aretherecookiesTests.xctest */,
|
||||
2D02E47B1E0B4A5D006451C7 /* aretherecookies-tvOS.app */,
|
||||
2D02E4901E0B4A5D006451C7 /* aretherecookies-tvOSTests.xctest */,
|
||||
13B07F961A680F5B00A75B9A /* wheresthetp.app */,
|
||||
00E356EE1AD99517003FC87E /* wheresthetpTests.xctest */,
|
||||
2D02E47B1E0B4A5D006451C7 /* wheresthetp-tvOS.app */,
|
||||
2D02E4901E0B4A5D006451C7 /* wheresthetp-tvOSTests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
|
|
@ -244,9 +244,9 @@
|
|||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
00E356ED1AD99517003FC87E /* aretherecookiesTests */ = {
|
||||
00E356ED1AD99517003FC87E /* wheresthetpTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "aretherecookiesTests" */;
|
||||
buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "wheresthetpTests" */;
|
||||
buildPhases = (
|
||||
F000EFB4BA9CAE58B7AABDDB /* [CP] Check Pods Manifest.lock */,
|
||||
00E356EA1AD99517003FC87E /* Sources */,
|
||||
|
|
@ -258,14 +258,14 @@
|
|||
dependencies = (
|
||||
00E356F51AD99517003FC87E /* PBXTargetDependency */,
|
||||
);
|
||||
name = aretherecookiesTests;
|
||||
productName = aretherecookiesTests;
|
||||
productReference = 00E356EE1AD99517003FC87E /* aretherecookiesTests.xctest */;
|
||||
name = wheresthetpTests;
|
||||
productName = wheresthetpTests;
|
||||
productReference = 00E356EE1AD99517003FC87E /* wheresthetpTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
13B07F861A680F5B00A75B9A /* aretherecookies */ = {
|
||||
13B07F861A680F5B00A75B9A /* wheresthetp */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "aretherecookies" */;
|
||||
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "wheresthetp" */;
|
||||
buildPhases = (
|
||||
1C549CBF9E52A4D4768CE210 /* [CP] Check Pods Manifest.lock */,
|
||||
FD10A7F022414F080027D42C /* Start Packager */,
|
||||
|
|
@ -279,14 +279,14 @@
|
|||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = aretherecookies;
|
||||
productName = aretherecookies;
|
||||
productReference = 13B07F961A680F5B00A75B9A /* aretherecookies.app */;
|
||||
name = wheresthetp;
|
||||
productName = wheresthetp;
|
||||
productReference = 13B07F961A680F5B00A75B9A /* wheresthetp.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
2D02E47A1E0B4A5D006451C7 /* aretherecookies-tvOS */ = {
|
||||
2D02E47A1E0B4A5D006451C7 /* wheresthetp-tvOS */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "aretherecookies-tvOS" */;
|
||||
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "wheresthetp-tvOS" */;
|
||||
buildPhases = (
|
||||
5D679EA2DE63D135DADE8511 /* [CP] Check Pods Manifest.lock */,
|
||||
FD10A7F122414F3F0027D42C /* Start Packager */,
|
||||
|
|
@ -299,14 +299,14 @@
|
|||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "aretherecookies-tvOS";
|
||||
productName = "aretherecookies-tvOS";
|
||||
productReference = 2D02E47B1E0B4A5D006451C7 /* aretherecookies-tvOS.app */;
|
||||
name = "wheresthetp-tvOS";
|
||||
productName = "wheresthetp-tvOS";
|
||||
productReference = 2D02E47B1E0B4A5D006451C7 /* wheresthetp-tvOS.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
2D02E48F1E0B4A5D006451C7 /* aretherecookies-tvOSTests */ = {
|
||||
2D02E48F1E0B4A5D006451C7 /* wheresthetp-tvOSTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "aretherecookies-tvOSTests" */;
|
||||
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "wheresthetp-tvOSTests" */;
|
||||
buildPhases = (
|
||||
603E7DD1A971A03AF5F8B1A7 /* [CP] Check Pods Manifest.lock */,
|
||||
2D02E48C1E0B4A5D006451C7 /* Sources */,
|
||||
|
|
@ -318,9 +318,9 @@
|
|||
dependencies = (
|
||||
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "aretherecookies-tvOSTests";
|
||||
productName = "aretherecookies-tvOSTests";
|
||||
productReference = 2D02E4901E0B4A5D006451C7 /* aretherecookies-tvOSTests.xctest */;
|
||||
name = "wheresthetp-tvOSTests";
|
||||
productName = "wheresthetp-tvOSTests";
|
||||
productReference = 2D02E4901E0B4A5D006451C7 /* wheresthetp-tvOSTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
|
@ -347,7 +347,7 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "aretherecookies" */;
|
||||
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "wheresthetp" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
|
|
@ -360,10 +360,10 @@
|
|||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
13B07F861A680F5B00A75B9A /* aretherecookies */,
|
||||
00E356ED1AD99517003FC87E /* aretherecookiesTests */,
|
||||
2D02E47A1E0B4A5D006451C7 /* aretherecookies-tvOS */,
|
||||
2D02E48F1E0B4A5D006451C7 /* aretherecookies-tvOSTests */,
|
||||
13B07F861A680F5B00A75B9A /* wheresthetp */,
|
||||
00E356ED1AD99517003FC87E /* wheresthetpTests */,
|
||||
2D02E47A1E0B4A5D006451C7 /* wheresthetp-tvOS */,
|
||||
2D02E48F1E0B4A5D006451C7 /* wheresthetp-tvOSTests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
|
@ -444,7 +444,7 @@
|
|||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-aretherecookies-checkManifestLockResult.txt",
|
||||
"$(DERIVED_FILE_DIR)/Pods-wheresthetp-checkManifestLockResult.txt",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
|
|
@ -480,7 +480,7 @@
|
|||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-aretherecookies-tvOS-checkManifestLockResult.txt",
|
||||
"$(DERIVED_FILE_DIR)/Pods-wheresthetp-tvOS-checkManifestLockResult.txt",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
|
|
@ -502,7 +502,7 @@
|
|||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-aretherecookies-tvOSTests-checkManifestLockResult.txt",
|
||||
"$(DERIVED_FILE_DIR)/Pods-wheresthetp-tvOSTests-checkManifestLockResult.txt",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
|
|
@ -515,7 +515,7 @@
|
|||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-aretherecookies/Pods-aretherecookies-resources.sh",
|
||||
"${PODS_ROOT}/Target Support Files/Pods-wheresthetp/Pods-wheresthetp-resources.sh",
|
||||
"${PODS_ROOT}/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/Resources/GoogleMaps.bundle",
|
||||
"${PODS_ROOT}/GooglePlaces/Frameworks/GooglePlaces.framework/Resources/GooglePlaces.bundle",
|
||||
"${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController/QBImagePicker.bundle",
|
||||
|
|
@ -562,7 +562,7 @@
|
|||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-aretherecookies/Pods-aretherecookies-resources.sh\"\n";
|
||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-wheresthetp/Pods-wheresthetp-resources.sh\"\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
F000EFB4BA9CAE58B7AABDDB /* [CP] Check Pods Manifest.lock */ = {
|
||||
|
|
@ -580,7 +580,7 @@
|
|||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-aretherecookiesTests-checkManifestLockResult.txt",
|
||||
"$(DERIVED_FILE_DIR)/Pods-wheresthetpTests-checkManifestLockResult.txt",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
|
|
@ -632,7 +632,7 @@
|
|||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
00E356F31AD99517003FC87E /* aretherecookiesTests.m in Sources */,
|
||||
00E356F31AD99517003FC87E /* wheresthetpTests.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
@ -658,7 +658,7 @@
|
|||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2DCD954D1E0B4F2C00145EB5 /* aretherecookiesTests.m in Sources */,
|
||||
2DCD954D1E0B4F2C00145EB5 /* wheresthetpTests.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
@ -667,12 +667,12 @@
|
|||
/* Begin PBXTargetDependency section */
|
||||
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 13B07F861A680F5B00A75B9A /* aretherecookies */;
|
||||
target = 13B07F861A680F5B00A75B9A /* wheresthetp */;
|
||||
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
||||
};
|
||||
2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 2D02E47A1E0B4A5D006451C7 /* aretherecookies-tvOS */;
|
||||
target = 2D02E47A1E0B4A5D006451C7 /* wheresthetp-tvOS */;
|
||||
targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
|
@ -684,7 +684,7 @@
|
|||
13B07FB21A68108700A75B9A /* Base */,
|
||||
);
|
||||
name = LaunchScreen.xib;
|
||||
path = aretherecookies;
|
||||
path = wheresthetp;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
|
@ -692,14 +692,14 @@
|
|||
/* Begin XCBuildConfiguration section */
|
||||
00E356F61AD99517003FC87E /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 16BDF95E88444554395C9619 /* Pods-aretherecookiesTests.debug.xcconfig */;
|
||||
baseConfigurationReference = 16BDF95E88444554395C9619 /* Pods-wheresthetpTests.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
INFOPLIST_FILE = aretherecookiesTests/Info.plist;
|
||||
INFOPLIST_FILE = wheresthetpTests/Info.plist;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
|
|
@ -709,17 +709,17 @@
|
|||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/aretherecookies.app/aretherecookies";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/wheresthetp.app/wheresthetp";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
00E356F71AD99517003FC87E /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = B5B76F0CFFD3FECFC296152E /* Pods-aretherecookiesTests.release.xcconfig */;
|
||||
baseConfigurationReference = B5B76F0CFFD3FECFC296152E /* Pods-wheresthetpTests.release.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
INFOPLIST_FILE = aretherecookiesTests/Info.plist;
|
||||
INFOPLIST_FILE = wheresthetpTests/Info.plist;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
|
|
@ -729,18 +729,18 @@
|
|||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/aretherecookies.app/aretherecookies";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/wheresthetp.app/wheresthetp";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
13B07F941A680F5B00A75B9A /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 5EFE6F6533996B77ED8319E1 /* Pods-aretherecookies.debug.xcconfig */;
|
||||
baseConfigurationReference = 5EFE6F6533996B77ED8319E1 /* Pods-wheresthetp.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
DEAD_CODE_STRIPPING = NO;
|
||||
INFOPLIST_FILE = aretherecookies/Info.plist;
|
||||
INFOPLIST_FILE = wheresthetp/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
"$(inherited)",
|
||||
|
|
@ -748,18 +748,18 @@
|
|||
"-lc++",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
||||
PRODUCT_NAME = aretherecookies;
|
||||
PRODUCT_NAME = wheresthetp;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
13B07F951A680F5B00A75B9A /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 79D753C2DEA55DC82D3DC21E /* Pods-aretherecookies.release.xcconfig */;
|
||||
baseConfigurationReference = 79D753C2DEA55DC82D3DC21E /* Pods-wheresthetp.release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
INFOPLIST_FILE = aretherecookies/Info.plist;
|
||||
INFOPLIST_FILE = wheresthetp/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
"$(inherited)",
|
||||
|
|
@ -767,14 +767,14 @@
|
|||
"-lc++",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
||||
PRODUCT_NAME = aretherecookies;
|
||||
PRODUCT_NAME = wheresthetp;
|
||||
VERSIONING_SYSTEM = "apple-generic";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
2D02E4971E0B4A5E006451C7 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = B41CD910A4154DDECE69AF9E /* Pods-aretherecookies-tvOS.debug.xcconfig */;
|
||||
baseConfigurationReference = B41CD910A4154DDECE69AF9E /* Pods-wheresthetp-tvOS.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
|
|
@ -785,14 +785,14 @@
|
|||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
INFOPLIST_FILE = "aretherecookies-tvOS/Info.plist";
|
||||
INFOPLIST_FILE = "wheresthetp-tvOS/Info.plist";
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
"$(inherited)",
|
||||
"-ObjC",
|
||||
"-lc++",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.aretherecookies-tvOS";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.wheresthetp-tvOS";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
|
|
@ -802,7 +802,7 @@
|
|||
};
|
||||
2D02E4981E0B4A5E006451C7 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = EDF48D9B600BF039DF905409 /* Pods-aretherecookies-tvOS.release.xcconfig */;
|
||||
baseConfigurationReference = EDF48D9B600BF039DF905409 /* Pods-wheresthetp-tvOS.release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
|
|
@ -813,14 +813,14 @@
|
|||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
INFOPLIST_FILE = "aretherecookies-tvOS/Info.plist";
|
||||
INFOPLIST_FILE = "wheresthetp-tvOS/Info.plist";
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
"$(inherited)",
|
||||
"-ObjC",
|
||||
"-lc++",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.aretherecookies-tvOS";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.wheresthetp-tvOS";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
|
|
@ -830,7 +830,7 @@
|
|||
};
|
||||
2D02E4991E0B4A5E006451C7 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = B1E3D3780A5838126F29C8D1 /* Pods-aretherecookies-tvOSTests.debug.xcconfig */;
|
||||
baseConfigurationReference = B1E3D3780A5838126F29C8D1 /* Pods-wheresthetp-tvOSTests.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
|
|
@ -840,24 +840,24 @@
|
|||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
INFOPLIST_FILE = "aretherecookies-tvOSTests/Info.plist";
|
||||
INFOPLIST_FILE = "wheresthetp-tvOSTests/Info.plist";
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
"$(inherited)",
|
||||
"-ObjC",
|
||||
"-lc++",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.aretherecookies-tvOSTests";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.wheresthetp-tvOSTests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/aretherecookies-tvOS.app/aretherecookies-tvOS";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/wheresthetp-tvOS.app/wheresthetp-tvOS";
|
||||
TVOS_DEPLOYMENT_TARGET = 10.1;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
2D02E49A1E0B4A5E006451C7 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 996F38314CE5C56ED0171810 /* Pods-aretherecookies-tvOSTests.release.xcconfig */;
|
||||
baseConfigurationReference = 996F38314CE5C56ED0171810 /* Pods-wheresthetp-tvOSTests.release.xcconfig */;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
|
|
@ -867,17 +867,17 @@
|
|||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
INFOPLIST_FILE = "aretherecookies-tvOSTests/Info.plist";
|
||||
INFOPLIST_FILE = "wheresthetp-tvOSTests/Info.plist";
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
OTHER_LDFLAGS = (
|
||||
"$(inherited)",
|
||||
"-ObjC",
|
||||
"-lc++",
|
||||
);
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.aretherecookies-tvOSTests";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.wheresthetp-tvOSTests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/aretherecookies-tvOS.app/aretherecookies-tvOS";
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/wheresthetp-tvOS.app/wheresthetp-tvOS";
|
||||
TVOS_DEPLOYMENT_TARGET = 10.1;
|
||||
};
|
||||
name = Release;
|
||||
|
|
@ -984,7 +984,7 @@
|
|||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "aretherecookiesTests" */ = {
|
||||
00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "wheresthetpTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
00E356F61AD99517003FC87E /* Debug */,
|
||||
|
|
@ -993,7 +993,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "aretherecookies" */ = {
|
||||
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "wheresthetp" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
13B07F941A680F5B00A75B9A /* Debug */,
|
||||
|
|
@ -1002,7 +1002,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "aretherecookies-tvOS" */ = {
|
||||
2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "wheresthetp-tvOS" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2D02E4971E0B4A5E006451C7 /* Debug */,
|
||||
|
|
@ -1011,7 +1011,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "aretherecookies-tvOSTests" */ = {
|
||||
2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "wheresthetp-tvOSTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2D02E4991E0B4A5E006451C7 /* Debug */,
|
||||
|
|
@ -1020,7 +1020,7 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "aretherecookies" */ = {
|
||||
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "wheresthetp" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
83CBBA201A601CBA00E9B192 /* Debug */,
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "group:aretherecookies.xcodeproj">
|
||||
location = "group:wheresthetp.xcodeproj">
|
||||
</FileRef>
|
||||
<FileRef
|
||||
location = "group:Pods/Pods.xcodeproj">
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
{
|
||||
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
||||
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
||||
moduleName:@"aretherecookies"
|
||||
moduleName:@"wheresthetp"
|
||||
initialProperties:nil];
|
||||
|
||||
rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="aretherecookies" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="wheresthetp" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
|
||||
<rect key="frame" x="20" y="140" width="441" height="43"/>
|
||||
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
|
||||
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
|
||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
|
|
@ -5,7 +5,7 @@
|
|||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>aretherecookies</string>
|
||||
<string>wheresthetp</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
|
@ -14,11 +14,11 @@
|
|||
#define TIMEOUT_SECONDS 600
|
||||
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
|
||||
|
||||
@interface aretherecookiesTests : XCTestCase
|
||||
@interface wheresthetpsTests : XCTestCase
|
||||
|
||||
@end
|
||||
|
||||
@implementation aretherecookiesTests
|
||||
@implementation wheresthetpsTests
|
||||
|
||||
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
|
||||
{
|
||||
|
|
@ -15,7 +15,7 @@ const getAuth0Instance = () => {
|
|||
return (
|
||||
auth0Instance ||
|
||||
new Auth0({
|
||||
domain: 'aretherecookies.auth0.com',
|
||||
domain: 'wheresthetp.auth0.com',
|
||||
clientId: 'hyrRaEFeh4Eo1NYTQwDB1phqdSqfROxg',
|
||||
})
|
||||
);
|
||||
|
|
@ -46,7 +46,7 @@ export const createAuth0User = async ({ email, username, password }) => {
|
|||
export const resetAuth0Password = async () => {
|
||||
const creds = await getAuth0Instance().webAuth.authorize({
|
||||
scope: 'openid profile email',
|
||||
audience: 'https://aretherecookies.auth0.com/userinfo',
|
||||
audience: 'https://wheresthetp.auth0.com/userinfo',
|
||||
});
|
||||
return creds;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,25 +1,25 @@
|
|||
// @flow
|
||||
import { emitter } from "../streams/LocationStream";
|
||||
import { getCoordsFromZip } from "./GoogleMapsApi";
|
||||
import { PermissionsAndroid, Platform } from "react-native";
|
||||
import { emitter } from '../streams/LocationStream';
|
||||
import { getCoordsFromZip } from './GoogleMapsApi';
|
||||
import { PermissionsAndroid, Platform } from 'react-native';
|
||||
import AsyncStorage from '@react-native-community/async-storage';
|
||||
import Geolocation from "react-native-geolocation-service";
|
||||
import Geolocation from 'react-native-geolocation-service';
|
||||
|
||||
const {
|
||||
PERMISSIONS: { ACCESS_FINE_LOCATION },
|
||||
RESULTS,
|
||||
request: requestPermission
|
||||
request: requestPermission,
|
||||
} = PermissionsAndroid;
|
||||
|
||||
let locationPermissionResponse = false;
|
||||
|
||||
const askLocationPermission = async () => {
|
||||
if (Platform.OS === "ios") {
|
||||
if (Platform.OS === 'ios') {
|
||||
locationPermissionResponse = RESULTS.GRANTED;
|
||||
} else if (locationPermissionResponse !== RESULTS.GRANTED) {
|
||||
locationPermissionResponse = await requestPermission(ACCESS_FINE_LOCATION, {
|
||||
title: "Aretherecookies? Location Permission",
|
||||
message: "Aretherecookies? would like to use your location to find some cookies. Is that OK?"
|
||||
title: "Where's the TP? Location Permission",
|
||||
message: "Where's the TP? would like to use your location to find some cookies. Is that OK?",
|
||||
});
|
||||
}
|
||||
return locationPermissionResponse === RESULTS.GRANTED;
|
||||
|
|
@ -27,21 +27,21 @@ const askLocationPermission = async () => {
|
|||
|
||||
export const getCurrentPosition = () => {
|
||||
return new Promise((resolve, reject) => {
|
||||
askLocationPermission().then(granted => {
|
||||
askLocationPermission().then((granted) => {
|
||||
if (!granted) {
|
||||
return reject("Permission was not given for location");
|
||||
return reject('Permission was not given for location');
|
||||
}
|
||||
Geolocation.getCurrentPosition(
|
||||
(pos: Position) => {
|
||||
emitter(pos), resolve(pos);
|
||||
return pos;
|
||||
},
|
||||
err => {
|
||||
(err) => {
|
||||
reject(err);
|
||||
},
|
||||
{
|
||||
enableHighAccuracy: true,
|
||||
timeout: 5000
|
||||
timeout: 5000,
|
||||
}
|
||||
);
|
||||
});
|
||||
|
|
@ -54,8 +54,8 @@ export const getPositionFromZip = async (zip: string) => {
|
|||
const pos: any = {
|
||||
coords: {
|
||||
latitude,
|
||||
longitude
|
||||
}
|
||||
longitude,
|
||||
},
|
||||
};
|
||||
|
||||
emitter(pos);
|
||||
|
|
@ -64,14 +64,14 @@ export const getPositionFromZip = async (zip: string) => {
|
|||
};
|
||||
|
||||
export const getLocation: () => Promise<Position> = async () => {
|
||||
const currentZip = await AsyncStorage.getItem("zipcode");
|
||||
const currentZip = await AsyncStorage.getItem('zipcode');
|
||||
|
||||
if (currentZip && currentZip !== "usegps") {
|
||||
if (currentZip && currentZip !== 'usegps') {
|
||||
return getPositionFromZip(currentZip);
|
||||
} else {
|
||||
AsyncStorage.setItem("zipcode", "usegps");
|
||||
return getCurrentPosition().catch(error => {
|
||||
AsyncStorage.removeItem("zipcode");
|
||||
AsyncStorage.setItem('zipcode', 'usegps');
|
||||
return getCurrentPosition().catch((error) => {
|
||||
AsyncStorage.removeItem('zipcode');
|
||||
throw error;
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ type Props = {
|
|||
|
||||
class TopToolbar extends Component {
|
||||
static defaultProps = {
|
||||
title: 'Are There Cookies?',
|
||||
title: "Where's the TP?",
|
||||
};
|
||||
|
||||
props: Props;
|
||||
|
|
@ -53,12 +53,12 @@ class TopToolbar extends Component {
|
|||
|
||||
onSearchCleared = () => {
|
||||
const { setFilter, filter } = this.props;
|
||||
setFilter(filter.update(prevFilter => prevFilter.set('search', '')));
|
||||
setFilter(filter.update((prevFilter) => prevFilter.set('search', '')));
|
||||
};
|
||||
|
||||
onChangeText = search => {
|
||||
onChangeText = (search) => {
|
||||
const { setFilter, filter } = this.props;
|
||||
setFilter(filter.update(prevFilter => prevFilter.set('search', search)));
|
||||
setFilter(filter.update((prevFilter) => prevFilter.set('search', search)));
|
||||
};
|
||||
|
||||
getRightElement = () => {
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
// @flow
|
||||
|
||||
// @public
|
||||
// export const BASE_URL = 'aretherecookies.herokuapp.com';
|
||||
export const BASE_URL = 'aretherecookies.herokuapp.com';
|
||||
|
||||
// @home
|
||||
// export const BASE_URL = '192.168.1.8:3000';
|
||||
|
||||
// @stouthaus
|
||||
export const BASE_URL = '192.168.1.181:3000';
|
||||
// export const BASE_URL = '192.168.1.181:3000';
|
||||
|
||||
export const GoogleAPIKey = 'AIzaSyBfMm1y6JayCbXrQmgAG1R3ka4ZOJno_5E';
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "aretherecookies",
|
||||
"name": "wheresthetp",
|
||||
"version": "1.6.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||