Skip to content

Commit

Permalink
Merge pull request #1011 from ense-org/master
Browse files Browse the repository at this point in the history
Fix cordova-android 8.0.0 Crashlytics bug
  • Loading branch information
briantq authored Mar 25, 2019
2 parents db3b661 + 3690858 commit f590cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/android/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function addDependencies(buildGradle) {
var whitespace = match[1];

// modify the line to add the necessary dependencies
var googlePlayDependency = whitespace + 'classpath \'com.google.gms:google-services:4.1.0\' // google-services dependency from cordova-plugin-firebase';
var googlePlayDependency = whitespace + 'classpath \'com.google.gms:google-services:4.2.0\' // google-services dependency from cordova-plugin-firebase';
var fabricDependency = whitespace + 'classpath \'io.fabric.tools:gradle:1.25.4\' // fabric dependency from cordova-plugin-firebase'
var modifiedLine = match[0] + '\n' + googlePlayDependency + '\n' + fabricDependency;

Expand Down Expand Up @@ -115,4 +115,4 @@ module.exports = {

writeRootBuildGradle(buildGradle);
}
};
};

0 comments on commit f590cb4

Please sign in to comment.