File tree Expand file tree Collapse file tree 5 files changed +22
-3
lines changed
.swiftpm/xcode/xcshareddata/xcschemes
Sources/AuthProvider/Phone Expand file tree Collapse file tree 5 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
7
7
buildImplicitDependencies = " YES" >
8
+ <BuildActionEntries >
9
+ <BuildActionEntry
10
+ buildForTesting = " YES"
11
+ buildForRunning = " NO"
12
+ buildForProfiling = " NO"
13
+ buildForArchiving = " NO"
14
+ buildForAnalyzing = " YES" >
15
+ <BuildableReference
16
+ BuildableIdentifier = " primary"
17
+ BlueprintIdentifier = " AuthUnit"
18
+ BuildableName = " AuthUnit"
19
+ BlueprintName = " AuthUnit"
20
+ ReferencedContainer = " container:" >
21
+ </BuildableReference >
22
+ </BuildActionEntry >
23
+ </BuildActionEntries >
8
24
</BuildAction >
9
25
<TestAction
10
26
buildConfiguration = " Debug"
Original file line number Diff line number Diff line change
1
+ # 8.2.0
2
+ - [ fixed] Fixed analyze issues introduced in Xcode 12.5. (#8210 )
3
+
1
4
# 8.0.0
2
5
- [ fixed] Fixed a crash that occurred when assigning auth settings (#7670 ).
3
6
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ + (instancetype)providerWithAuth:(FIRAuth *)auth {
245
245
@param error The error that occurred if any.
246
246
@return The reCAPTCHA token if successful.
247
247
*/
248
- - (NSString *)reCAPTCHATokenForURL : (NSURL *)URL error : (NSError **)error {
248
+ - (nullable NSString *)reCAPTCHATokenForURL : (NSURL *)URL error : (NSError **_Nonnull )error {
249
249
NSURLComponents *actualURLComponents = [NSURLComponents componentsWithURL: URL
250
250
resolvingAgainstBaseURL: NO ];
251
251
NSArray <NSURLQueryItem *> *queryItems = [actualURLComponents queryItems ];
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ NS_ASSUME_NONNULL_BEGIN
61
61
@param JSON The JSON to return.
62
62
@param error The simulated error to return from GTM.
63
63
*/
64
- - (NSData *)respondWithJSON : (nullable NSDictionary *)JSON error : (nullable NSError *)error ;
64
+ - (nullable NSData *)respondWithJSON : (nullable NSDictionary *)JSON error : (nullable NSError *)error ;
65
65
66
66
/* * @fn respondWithJSONError:
67
67
@brief Responds to a pending RPC request with a JSON server error.
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ - (NSData *)respondWithServerErrorMessage:(NSString *)errorMessage {
60
60
return [self respondWithServerErrorMessage: errorMessage error: error];
61
61
}
62
62
63
- - (NSData *)respondWithJSON : (NSDictionary *)JSON error : (NSError *)error {
63
+ - (nullable NSData *)respondWithJSON : (NSDictionary *)JSON error : (NSError *)error {
64
64
NSError *JSONEncodingError;
65
65
NSData *data;
66
66
if (JSON) {
You can’t perform that action at this time.
0 commit comments