parse-push-plugin
parse-push-plugin copied to clipboard
Plugin needs update to support Cordova 7.x Android folder structure
It looks like the /res folder moved when you build with Cordova 7.x.
In afterAndroidPrepare.js, change line 10 to:
var androidPrjDir = path.join(context.opts.projectRoot, 'platforms/android/app/src/main');
Then change line 28 to:
var iconTargetPath = path.join(context.opts.projectRoot, 'platforms', 'android', 'app', 'src', 'main', 'res', 'drawable');
Unsure if this will break others?
Please check #121