Skip to content

Commit

Permalink
Merge pull request #39 from shankari/master
Browse files Browse the repository at this point in the history
Change the class import script to work with the cordova 7+
  • Loading branch information
shankari authored Apr 6, 2020
2 parents 123a410 + 2018f98 commit a699d2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hooks/android/addResourcesClassImport.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ module.exports = function (ctx) {
path = ctx.requireCordovaModule('path'),
Q = ctx.requireCordovaModule('q');

var platformSourcesRoot = path.join(ctx.opts.projectRoot, 'platforms/android/src');
var platformSourcesRoot = path.join(ctx.opts.projectRoot, 'platforms/android/app/src/main/java/');
var pluginSourcesRoot = path.join(ctx.opts.plugin.dir, 'src/android');

var androidPluginsData = JSON.parse(fs.readFileSync(path.join(ctx.opts.projectRoot, 'plugins', 'android.json'), 'utf8'));
Expand Down
3 changes: 2 additions & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="edu.berkeley.eecs.emission.cordova.usercache"
version="1.1.1">
version="1.1.2">

<name>UserCache</name>
<description>Cache messages to and from the server so that we can retrieve
Expand All @@ -11,6 +11,7 @@

<engines>
<engine name="cordova" version=">=3.6.0"/>
<engine name="cordova-android" version=">=7.0.0"/>
</engines>

<asset src="www/usercache.js" target="js/usercache.js"/>
Expand Down

0 comments on commit a699d2d

Please sign in to comment.