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 Cordova Hook (script) modifies the serve-config.js (app-scripts/dist/dev-server/) | |
// It modifes the ANDROID_PLATFORM_PATH assignment to include 'app/src/main' | |
// The reference to the issue is best described at https://github.com/ionic-team/ionic-app-scripts/issues/1354 | |
// The authoritive source is found at: https://gist.github.com/SteveKennedy | |
module.exports = function (ctx) { | |
console.log("Attempting To Modify serve-config.js....") | |
// Reference Dependencies |
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 Cordova Hook (script) removes "AdSupport.framework" and "libAdIdAccess" references | |
// from the cordova-plugin-google-analytics plugin, as well as removes it from | |
// references found in the corresponding node_module and .project.pbxproj. | |
// The authoritive source is found at: https://gist.github.com/SteveKennedy | |
module.exports = function (ctx) { | |
console.log("Attempting To Remove Ad (IDFA) References from project....") | |
var pluginName = 'cordova-plugin-google-analytics'; |