Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 57b1460

Browse files
fix(ios): FirebaseCrashlytics release mode and delegate handling improvements #1714 - remove the semicolon
1 parent e253bc8 commit 57b1460

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

publish/scripts/installer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ const pattern3 = /\\n\\s*\\/\\/Crashlytics 3 BEGIN[\\s\\S]*\\/\\/Crashlytics 3 E
455455
const string1 = \`
456456
//Crashlytics 1 BEGIN
457457
#else
458-
#import <FirebaseCrashlytics/FirebaseCrashlytics.h>;
458+
#import <FirebaseCrashlytics/FirebaseCrashlytics.h>
459459
#endif
460460
//Crashlytics 1 END
461461
\`;
@@ -978,7 +978,7 @@ module.exports = function($logger, $projectData) {
978978
979979
let gradlePattern = /classpath ('|")com\\.android\\.tools\\.build:gradle:\\d+\\.\\d+\\.\\d+('|")/;
980980
let googleServicesPattern = /classpath ('|")com\\.google\\.gms:google-services:\\d+\\.\\d+\\.\\d+('|")/;
981-
let latestGoogleServicesPlugin = 'classpath "com.google.gms:google-services:4.3.0"';
981+
let latestGoogleServicesPlugin = 'classpath "com.google.gms:google-services:4.3.4"';
982982
if (googleServicesPattern.test(buildGradleContent)) {
983983
buildGradleContent = buildGradleContent.replace(googleServicesPattern, latestGoogleServicesPlugin);
984984
} else {

0 commit comments

Comments
 (0)