Skip to content

Commit

Permalink
Merge pull request #37 from shankari/add_generated_token
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 5, 2020
2 parents fe688ac + caa9e3e commit e658599
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.auth"
version="1.6.0">
version="1.6.1">

<name>JWTAuth</name>
<description>Get the user email and associated JWT tokens from both native
Expand All @@ -13,6 +13,7 @@

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

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

0 comments on commit e658599

Please sign in to comment.