rohfosho / CordovaCallNumberPlugin

Call a number directly from your cordova application.
MIT License
185 stars 151 forks source link

Fix Android package name #55

Closed dpa99c closed 6 years ago

dpa99c commented 6 years ago

This pull request fixes the following issue:

The package path declared in plugin.xml is com/rohithvaranasi/callnumber but the package name declared in CFCallNumber.java is mx.ferreyra.callnumber which results in the Java error:

Package name 'mx.ferreyra.callnumber' does not correspond to the file path 'com.rohithvaranasi.callnumber'

This causes the plugin not to work because Cordova cannot find the plugin class to call.

nishilshah17 commented 6 years ago

Thanks, merged.