forked from scor4er/dl-axist-cordova-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdf18bc
commit 3656989
Showing
2 changed files
with
31 additions
and
33 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"name": "dl-axist-cordova-plugin", | ||
"version": "0.1.1", | ||
"name": "cordova-plugin-datalogic-scanner", | ||
"version": "1.0.0", | ||
"description": "Datalogic DL-Axist Cordova Plugin", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/scor4er/dl-axist-cordova-plugin.git" | ||
"url": "git+https://github.com/diogoqueiros/dl-axist-cordova-plugin.git" | ||
}, | ||
"author": "", | ||
"author": "scor4er", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/scor4er/dl-axist-cordova-plugin/issues" | ||
"url": "https://github.com/diogoqueiros/dl-axist-cordova-plugin/issues" | ||
}, | ||
"homepage": "https://github.com/scor4er/dl-axist-cordova-plugin#readme" | ||
} | ||
"homepage": "https://github.com/diogoqueiros/dl-axist-cordova-plugin#readme" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" | ||
id="com.itr.dlaxist" | ||
version="0.1.1"> | ||
id="cordova-plugin-datalogic-scanner" | ||
version="1.0.0"> | ||
|
||
<name>Datalogic DL-Axist Plugin</name> | ||
<name>Datalogic DL-Axist Plugin</name> | ||
|
||
<engines> | ||
<engine name="cordova" version=">=3.4.0"/> | ||
</engines> | ||
<engines> | ||
<engine name="cordova" version=">=3.4.0"/> | ||
</engines> | ||
|
||
<js-module src="www/dlaxist.js" name="dlaxist"> | ||
<clobbers target="dlaxist" /> | ||
</js-module> | ||
<js-module src="www/dlaxist.js" name="dlaxist"> | ||
<clobbers target="dlaxist" /> | ||
</js-module> | ||
|
||
<platform name="android"> | ||
<platform name="android"> | ||
<config-file target="res/xml/config.xml" parent="/*"> | ||
<feature name="DlAxistScanner"> | ||
<param name="android-package" value="com.itr.dlaxist.ScanService"/> | ||
</feature> | ||
</config-file> | ||
<config-file target="AndroidManifest.xml" parent="/*/application"> | ||
<uses-library android:name="com.datalogic.device" android:required="false"/> | ||
</config-file> | ||
|
||
<config-file target="res/xml/config.xml" parent="/*"> | ||
<feature name="DlAxistScanner"> | ||
<param name="android-package" value="com.itr.dlaxist.ScanService"/> | ||
</feature> | ||
</config-file> | ||
<config-file target="AndroidManifest.xml" parent="/*/application"> | ||
<uses-library android:name="com.datalogic.device" android:required="false"/> | ||
</config-file> | ||
|
||
<source-file src="src/android/com/itr/dlaxist/BarcodeScan.java" target-dir="src/com/itr/dlaxist/"/> | ||
<source-file src="src/android/com/itr/dlaxist/ScanCallback.java" target-dir="src/com/itr/dlaxist/"/> | ||
<source-file src="src/android/com/itr/dlaxist/ScanService.java" target-dir="src/com/itr/dlaxist/"/> | ||
<source-file src="lib/datalogic.jar" target-dir="libs" /> | ||
</platform> | ||
|
||
</plugin> | ||
<source-file src="src/android/com/itr/dlaxist/BarcodeScan.java" target-dir="src/com/itr/dlaxist/"/> | ||
<source-file src="src/android/com/itr/dlaxist/ScanCallback.java" target-dir="src/com/itr/dlaxist/"/> | ||
<source-file src="src/android/com/itr/dlaxist/ScanService.java" target-dir="src/com/itr/dlaxist/"/> | ||
<source-file src="lib/datalogic.jar" target-dir="libs" /> | ||
</platform> | ||
</plugin> |