isServiceAvailable
on Android did not return a list of available printing apps (fix for #6)
This commit is contained in:
parent
847b91053f
commit
032b2f5611
@ -25,6 +25,9 @@ cordova plugin rm de.appplant.cordova.plugin.printer
|
||||
```
|
||||
|
||||
## Release Notes
|
||||
#### Version 0.5.2 (not yet released)
|
||||
- [bugfix:] `isServiceAvailable` on Android did not return a list of available printing apps.
|
||||
|
||||
#### Version 0.5.1 (15.12.2013)
|
||||
- Removed Android KitKat support *(See kitkat branch)*
|
||||
|
||||
|
@ -27,7 +27,6 @@
|
||||
|
||||
<!-- ios -->
|
||||
<platform name="ios">
|
||||
|
||||
<config-file target="config.xml" parent="/*">
|
||||
<feature name="Printer">
|
||||
<param name="ios-package" value="APPPrinter"/>
|
||||
@ -36,7 +35,6 @@
|
||||
|
||||
<header-file src="src/ios/APPPrinter.h" />
|
||||
<source-file src="src/ios/APPPrinter.m" />
|
||||
|
||||
</platform>
|
||||
|
||||
<!-- android -->
|
||||
|
@ -108,9 +108,15 @@ public class Printer extends CordovaPlugin {
|
||||
* Überprüft, ob ein Drucker zur Verfügung steht.
|
||||
*/
|
||||
private void isServiceAvailable (CallbackContext ctx) {
|
||||
JSONArray appIds = this.getInstalledAppIds();
|
||||
Boolean available = appIds.length() > 0;
|
||||
PluginResult result = new PluginResult(PluginResult.Status.OK, available);
|
||||
JSONArray appIds = this.getInstalledAppIds();
|
||||
Boolean available = appIds.length() > 0;
|
||||
JSONArray args = new JSONArray();
|
||||
PluginResult result;
|
||||
|
||||
args.put(available);
|
||||
args.put(appIds);
|
||||
|
||||
result = new PluginResult(PluginResult.Status.OK, args);
|
||||
|
||||
ctx.sendPluginResult(result);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user