forked from arnesson/cordova-plugin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
27 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
var androidHelper = require('../lib/android-helper'); | ||
var utilities = require("../lib/utilities"); | ||
var helper = require('./helper'); | ||
|
||
module.exports = function(context) { | ||
|
||
// Modify the Gradle build file to add a task that will upload the debug symbols | ||
// at build time. | ||
androidHelper.restoreRootBuildGradle(); | ||
androidHelper.modifyRootBuildGradle(); | ||
helper.restoreRootBuildGradle(); | ||
helper.modifyRootBuildGradle(); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
var androidHelper = require('../lib/android-helper'); | ||
var utilities = require("../lib/utilities"); | ||
var helper = require('./helper'); | ||
|
||
module.exports = function(context) { | ||
|
||
// Remove the Gradle modifications that were added when the plugin was installed. | ||
androidHelper.restoreRootBuildGradle(); | ||
helper.restoreRootBuildGradle(); | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
var iosHelper = require("../lib/ios-helper"); | ||
var utilities = require("../lib/utilities"); | ||
var helper = require("./helper"); | ||
|
||
module.exports = function(context) { | ||
|
||
// Add a build phase which runs a shell script that executes the Crashlytics | ||
// run command line tool which uploads the debug symbols at build time. | ||
var xcodeProjectPath = utilities.getXcodeProjectPath(context); | ||
iosHelper.removeShellScriptBuildPhase(context, xcodeProjectPath); | ||
iosHelper.addShellScriptBuildPhase(context, xcodeProjectPath); | ||
var xcodeProjectPath = helper.getXcodeProjectPath(context); | ||
helper.removeShellScriptBuildPhase(context, xcodeProjectPath); | ||
helper.addShellScriptBuildPhase(context, xcodeProjectPath); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
var iosHelper = require("../lib/ios-helper"); | ||
var utilities = require("../lib/utilities"); | ||
var helper = require("./helper"); | ||
|
||
module.exports = function(context) { | ||
|
||
// Remove the build script that was added when the plugin was installed. | ||
var xcodeProjectPath = utilities.getXcodeProjectPath(context); | ||
iosHelper.removeShellScriptBuildPhase(context, xcodeProjectPath); | ||
var xcodeProjectPath = helper.getXcodeProjectPath(context); | ||
helper.removeShellScriptBuildPhase(context, xcodeProjectPath); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters