Skip to content

Commit

Permalink
Merge pull request #1 from WeaverOfTheWeb/master
Browse files Browse the repository at this point in the history
Plugin now compiles on PhoneGap Build
  • Loading branch information
nick-denry authored Jul 29, 2019
2 parents dc116f0 + d618800 commit d623e4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intent-list",
"version": "0.0.6",
"version": "0.0.7",
"description": "",
"cordova": {
"id": "cordova-plugin-intent-list",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-intent-list" version="0.0.5" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-intent-list" version="0.0.7" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>IntentList</name>
<js-module name="IntentList" src="www/IntentList.js">
<clobbers target="navigator.IntentList" />
Expand Down
2 changes: 1 addition & 1 deletion src/android/IntentList.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public boolean execute(String action, JSONArray args, CallbackContext callbackCo
return false;
}

private void getIntentList(CallbackContext callbackContext) {
private void getIntentList(final CallbackContext callbackContext) {
cordova.getThreadPool().execute(new Runnable() {
public void run() {
try {
Expand Down

0 comments on commit d623e4e

Please sign in to comment.