Skip to content

Fix missing runtime libraries error #674

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
osx_image: xcode10.1
osx_image: xcode10.2
language: objective-c
xcode_workspace: FirebaseUI.xcworkspace
xcode_scheme: FirebaseUI
Expand Down
20 changes: 20 additions & 0 deletions AnonymousAuth/FirebaseAnonymousAuthUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
8D69E21F21DD476C00CFA49B /* FirebaseAnonymousAuthUI */,
8D69E22A21DD476D00CFA49B /* FirebaseAnonymousAuthUITests */,
8D69E21E21DD476C00CFA49B /* Products */,
BEF4805F13BABCBDD925C264 /* Pods */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -120,6 +121,13 @@
path = Strings;
sourceTree = "<group>";
};
BEF4805F13BABCBDD925C264 /* Pods */ = {
isa = PBXGroup;
children = (
);
path = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -439,6 +447,12 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseUI\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/OCMock\"",
);
OTHER_LDFLAGS = (
"-ObjC",
Expand All @@ -464,6 +478,12 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuth\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseUI\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/OCMock\"",
);
OTHER_LDFLAGS = (
"-ObjC",
Expand Down
6 changes: 3 additions & 3 deletions AnonymousAuth/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ PODS:
- FirebaseAuthInterop (1.0.0)
- FirebaseCore (5.3.1):
- GoogleUtilities/Logger (~> 5.2)
- FirebaseUI/Auth (6.1.1):
- Firebase/Auth (~> 5.0)
- FirebaseUI/Auth (6.2.1):
- Firebase/Auth (~> 5.4)
- GoogleUtilities/UserDefaults
- GoogleUtilities/Environment (5.4.0)
- GoogleUtilities/Logger (5.4.0):
Expand Down Expand Up @@ -46,7 +46,7 @@ SPEC CHECKSUMS:
FirebaseAuth: d85d052354447f30b4b2a805ab91b511458b56a6
FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc
FirebaseCore: 52f851b30e11360f1e67cf04b1edfebf0a47a2d3
FirebaseUI: fc3584df29e96959d895677274681939fa30dbe5
FirebaseUI: a2edbe63a90dff4a9ac715f4dd2869411528eedc
GoogleUtilities: fa768ad04b264be250ee9edf9f378ad006f7a560
GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca
OCMock: 43565190abc78977ad44a61c0d20d7f0784d35ab
Expand Down
12 changes: 12 additions & 0 deletions Auth/FirebaseAuthUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@
8D69E25B21DD4BD000CFA49B /* FirebaseAuthUI */,
8D69E26621DD4BD100CFA49B /* FirebaseAuthUITests */,
8D69E25A21DD4BD000CFA49B /* Products */,
ACF63AA832F9F7882BC43A9D /* Pods */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -391,6 +392,13 @@
path = Strings;
sourceTree = "<group>";
};
ACF63AA832F9F7882BC43A9D /* Pods */ = {
isa = PBXGroup;
children = (
);
path = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -938,6 +946,8 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"$(PODS_CONFIGURATION_BUILD_DIR)/GTMSessionFetcher",
"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities",
);
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseAuthUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -954,6 +964,8 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"$(PODS_CONFIGURATION_BUILD_DIR)/GTMSessionFetcher",
"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities",
);
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseAuthUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
4 changes: 3 additions & 1 deletion Auth/FirebaseAuthUITests/FUIAuthTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ - (void)setUp {
[super setUp];

if ([FIRApp defaultApp] == nil) {
[FIRApp configure];
FIROptions *options = [[FIROptions alloc] initWithGoogleAppID:@"1:1069647793992:ios:91eecf4730fc920b"
GCMSenderID:@"1069647793992"];
[FIRApp configureWithOptions:options];
}

self.auth = [FIRAuth authWithApp:[FIRApp defaultApp]];
Expand Down
36 changes: 17 additions & 19 deletions Auth/FirebaseAuthUITests/GoogleService-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,37 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AD_UNIT_ID_FOR_BANNER_TEST</key>
<string>ad-unit-banner</string>
<key>AD_UNIT_ID_FOR_INTERSTITIAL_TEST</key>
<string>ad-unit-interstitial</string>
<key>CLIENT_ID</key>
<string>client-id.apps.googleusercontent.com</string>
<string>0000000000000000000000000.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.client-id</string>
<string>com.googleusercontent.apps.0000000000000000000000000</string>
<key>ANDROID_CLIENT_ID</key>
<string>0000000000000000000000000.apps.googleusercontent.com</string>
<key>API_KEY</key>
<string>api-key</string>
<string>0000000000000000000000000</string>
<key>GCM_SENDER_ID</key>
<string>sender-id</string>
<string>0000000000000000000000000</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.firebase.firebaseUI.tests</string>
<string>com.firebase.firebaseui.tests</string>
<key>PROJECT_ID</key>
<string>project-id</string>
<string>0000000000000000000000000</string>
<key>STORAGE_BUCKET</key>
<string>storage-bucket</string>
<string>0000000000000000000000000.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<true/>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
<false/>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<false/>
<false></false>
<key>IS_GCM_ENABLED</key>
<true/>
<false></false>
<key>IS_SIGNIN_ENABLED</key>
<true/>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>0:000000000000:ios:0000000000000000</string>
<string>0000000000000000000000000</string>
<key>DATABASE_URL</key>
<string>database-url</string>
<string>https://0000000000000000000000000.firebaseio.com</string>
</dict>
</plist>
</plist>
16 changes: 16 additions & 0 deletions Database/FirebaseDatabaseUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,20 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
5E6E54D5C69E9648700F3B53 /* Pods */ = {
isa = PBXGroup;
children = (
);
path = Pods;
sourceTree = "<group>";
};
8D69E1BC21DD446600CFA49B = {
isa = PBXGroup;
children = (
8D69E1C821DD446600CFA49B /* FirebaseDatabaseUI */,
8D69E1D321DD446600CFA49B /* FirebaseDatabaseUITests */,
8D69E1C721DD446600CFA49B /* Products */,
5E6E54D5C69E9648700F3B53 /* Pods */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -486,6 +494,10 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseDatabase\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library\"",
);
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseDatabaseUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -502,6 +514,10 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseDatabase\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library\"",
);
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseDatabaseUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
6 changes: 3 additions & 3 deletions EmailAuth/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ PODS:
- FirebaseAuthInterop (1.0.0)
- FirebaseCore (5.3.1):
- GoogleUtilities/Logger (~> 5.2)
- FirebaseUI/Auth (6.1.1):
- Firebase/Auth (~> 5.0)
- FirebaseUI/Auth (6.2.1):
- Firebase/Auth (~> 5.4)
- GoogleUtilities/UserDefaults
- GoogleUtilities/Environment (5.4.0)
- GoogleUtilities/Logger (5.4.0):
Expand Down Expand Up @@ -46,7 +46,7 @@ SPEC CHECKSUMS:
FirebaseAuth: d85d052354447f30b4b2a805ab91b511458b56a6
FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc
FirebaseCore: 52f851b30e11360f1e67cf04b1edfebf0a47a2d3
FirebaseUI: fc3584df29e96959d895677274681939fa30dbe5
FirebaseUI: a2edbe63a90dff4a9ac715f4dd2869411528eedc
GoogleUtilities: fa768ad04b264be250ee9edf9f378ad006f7a560
GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca
OCMock: 43565190abc78977ad44a61c0d20d7f0784d35ab
Expand Down
6 changes: 3 additions & 3 deletions FacebookAuth/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ PODS:
- FirebaseAuthInterop (1.0.0)
- FirebaseCore (5.3.1):
- GoogleUtilities/Logger (~> 5.2)
- FirebaseUI/Auth (6.1.1):
- Firebase/Auth (~> 5.0)
- FirebaseUI/Auth (6.2.1):
- Firebase/Auth (~> 5.4)
- GoogleUtilities/UserDefaults
- GoogleUtilities/Environment (5.4.0)
- GoogleUtilities/Logger (5.4.0):
Expand Down Expand Up @@ -64,7 +64,7 @@ SPEC CHECKSUMS:
FirebaseAuth: d85d052354447f30b4b2a805ab91b511458b56a6
FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc
FirebaseCore: 52f851b30e11360f1e67cf04b1edfebf0a47a2d3
FirebaseUI: fc3584df29e96959d895677274681939fa30dbe5
FirebaseUI: a2edbe63a90dff4a9ac715f4dd2869411528eedc
GoogleUtilities: fa768ad04b264be250ee9edf9f378ad006f7a560
GTMSessionFetcher: 32aeca0aa144acea523e1c8e053089dec2cb98ca
OCMock: 43565190abc78977ad44a61c0d20d7f0784d35ab
Expand Down
26 changes: 26 additions & 0 deletions Firestore/FirebaseFirestoreUI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
8D69E46021DD8B2E00CFA49B /* FirebaseFirestoreUI */,
8D69E46B21DD8B2E00CFA49B /* FirebaseFirestoreUITests */,
8D69E45F21DD8B2E00CFA49B /* Products */,
905358392FD4EDB2D9802535 /* Pods */,
);
sourceTree = "<group>";
};
Expand Down Expand Up @@ -115,6 +116,13 @@
path = FirebaseFirestoreUITests;
sourceTree = "<group>";
};
905358392FD4EDB2D9802535 /* Pods */ = {
isa = PBXGroup;
children = (
);
path = Pods;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down Expand Up @@ -426,6 +434,15 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"\"${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/Protobuf\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/nanopb\"",
);
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseFirestoreUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -442,6 +459,15 @@
"$(inherited)",
"@executable_path/Frameworks",
"@loader_path/Frameworks",
"\"${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/FirebaseFirestore\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/Protobuf\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/gRPC-Core\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library\"",
"\"${PODS_CONFIGURATION_BUILD_DIR}/nanopb\"",
);
PRODUCT_BUNDLE_IDENTIFIER = com.firebase.FirebaseFirestoreUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
29 changes: 15 additions & 14 deletions Firestore/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,32 @@ PODS:
- BoringSSL-GRPC/Implementation (0.0.2):
- BoringSSL-GRPC/Interface (= 0.0.2)
- BoringSSL-GRPC/Interface (0.0.2)
- Firebase/CoreOnly (5.18.0):
- FirebaseCore (= 5.3.1)
- Firebase/Firestore (5.18.0):
- Firebase/CoreOnly (5.20.2):
- FirebaseCore (= 5.4.1)
- Firebase/Firestore (5.20.2):
- Firebase/CoreOnly
- FirebaseFirestore (= 1.0.2)
- FirebaseFirestore (= 1.2.1)
- FirebaseAuthInterop (1.0.0)
- FirebaseCore (5.3.1):
- FirebaseCore (5.4.1):
- GoogleUtilities/Environment (~> 5.2)
- GoogleUtilities/Logger (~> 5.2)
- FirebaseFirestore (1.0.2):
- FirebaseFirestore (1.2.1):
- FirebaseAuthInterop (~> 1.0)
- FirebaseCore (~> 5.2)
- FirebaseFirestore/abseil-cpp (= 1.0.2)
- FirebaseFirestore/abseil-cpp (= 1.2.1)
- "gRPC-C++ (= 0.0.6)"
- leveldb-library (~> 1.20)
- nanopb (~> 0.3.901)
- Protobuf (~> 3.1)
- FirebaseFirestore/abseil-cpp (1.0.2):
- FirebaseFirestore/abseil-cpp (1.2.1):
- FirebaseAuthInterop (~> 1.0)
- FirebaseCore (~> 5.2)
- "gRPC-C++ (= 0.0.6)"
- leveldb-library (~> 1.20)
- nanopb (~> 0.3.901)
- Protobuf (~> 3.1)
- GoogleUtilities/Environment (5.4.0)
- GoogleUtilities/Logger (5.4.0):
- GoogleUtilities/Environment (5.8.0)
- GoogleUtilities/Logger (5.8.0):
- GoogleUtilities/Environment
- "gRPC-C++ (0.0.6)":
- "gRPC-C++/Implementation (= 0.0.6)"
Expand Down Expand Up @@ -74,11 +75,11 @@ SPEC REPOS:

SPEC CHECKSUMS:
BoringSSL-GRPC: 2a230d9cd93e7ce39916044f645cebb31f37dde6
Firebase: 02f3281965c075426141a0ce1277e9de6649cab9
Firebase: 0c8cf33f266410c61ab3e2265cfa412200351d9c
FirebaseAuthInterop: 0ffa57668be100582bb7643d4fcb7615496c41fc
FirebaseCore: 52f851b30e11360f1e67cf04b1edfebf0a47a2d3
FirebaseFirestore: ccdaffb8a73c591ff61872b8f7905ad0c237ef50
GoogleUtilities: fa768ad04b264be250ee9edf9f378ad006f7a560
FirebaseCore: f1a9a8be1aee4bf71a2fc0f4096df6788bdfda61
FirebaseFirestore: faca891c0f0d1d6c10c793473e2f6a29d75014b5
GoogleUtilities: 04fce34bcd5620c1ee76fb79172105c74a4df335
"gRPC-C++": e76441995900ac90e9bd98644ab4733f12521edf
gRPC-Core: 4028031ed2c5267cca0d846c876d8046b1ecb9b6
leveldb-library: 08cba283675b7ed2d99629a4bc5fd052cd2bb6a5
Expand Down
Loading