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

Commit

Permalink
fix(ios): FirebaseCrashlytics release mode and delegate handling impr…
Browse files Browse the repository at this point in the history
…ovements #1714 - remove the semicolon
  • Loading branch information
EddyVerbruggen committed Nov 2, 2020
1 parent e253bc8 commit 57b1460
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publish/scripts/installer.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ const pattern3 = /\\n\\s*\\/\\/Crashlytics 3 BEGIN[\\s\\S]*\\/\\/Crashlytics 3 E
const string1 = \`
//Crashlytics 1 BEGIN
#else
#import <FirebaseCrashlytics/FirebaseCrashlytics.h>;
#import <FirebaseCrashlytics/FirebaseCrashlytics.h>
#endif
//Crashlytics 1 END
\`;
Expand Down Expand Up @@ -978,7 +978,7 @@ module.exports = function($logger, $projectData) {
let gradlePattern = /classpath ('|")com\\.android\\.tools\\.build:gradle:\\d+\\.\\d+\\.\\d+('|")/;
let googleServicesPattern = /classpath ('|")com\\.google\\.gms:google-services:\\d+\\.\\d+\\.\\d+('|")/;
let latestGoogleServicesPlugin = 'classpath "com.google.gms:google-services:4.3.0"';
let latestGoogleServicesPlugin = 'classpath "com.google.gms:google-services:4.3.4"';
if (googleServicesPattern.test(buildGradleContent)) {
buildGradleContent = buildGradleContent.replace(googleServicesPattern, latestGoogleServicesPlugin);
} else {
Expand Down

0 comments on commit 57b1460

Please sign in to comment.