Fix typo in package name

This commit is contained in:
Yemel Jardi 2014-07-25 13:43:50 -03:00
commit c844ca4203
4 changed files with 11 additions and 13 deletions

10
.gitignore vendored
View file

@ -56,12 +56,10 @@ android/*.keystore
mobile/*.keystore mobile/*.keystore
mobile/assets/www mobile/assets/www
mobile/bin mobile/bin/*
mobile/gen mobile/gen/*
mobile/CordovaLib/bin mobile/cordova/*
mobile/CordovaLib/gen mobile/CordovaLib/*
mobile/CordovaLib/xwalk_core_library/bin
mobile/CordovaLib/xwalk_core_library/gen
coverage/ coverage/

View file

@ -29,7 +29,7 @@
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
</intent-filter> </intent-filter>
</activity> </activity>
<provider android:authorities="com.bipay.copay.plugin.emailcomposer.attachmentprovider" android:name="de.appplant.cordova.plugin.emailcomposer.AttachmentProvider" /> <provider android:authorities="com.bitpay.copay.plugin.emailcomposer.attachmentprovider" android:name="de.appplant.cordova.plugin.emailcomposer.AttachmentProvider" />
</application> </application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" /> <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.VIBRATE" />

View file

@ -61,7 +61,7 @@
"count": 1 "count": 1
}, },
{ {
"xml": "<provider android:authorities=\"com.bipay.copay.plugin.emailcomposer.attachmentprovider\" android:name=\"de.appplant.cordova.plugin.emailcomposer.AttachmentProvider\"></provider>", "xml": "<provider android:authorities=\"com.bitpay.copay.plugin.emailcomposer.attachmentprovider\" android:name=\"de.appplant.cordova.plugin.emailcomposer.AttachmentProvider\"></provider>",
"count": 1 "count": 1
} }
] ]
@ -553,16 +553,16 @@
}, },
"installed_plugins": { "installed_plugins": {
"org.apache.cordova.vibration": { "org.apache.cordova.vibration": {
"PACKAGE_NAME": "com.bipay.copay" "PACKAGE_NAME": "com.bitpay.copay"
}, },
"com.phonegap.plugins.barcodescanner": { "com.phonegap.plugins.barcodescanner": {
"PACKAGE_NAME": "com.bipay.copay" "PACKAGE_NAME": "com.bitpay.copay"
}, },
"de.appplant.cordova.plugin.email-composer": { "de.appplant.cordova.plugin.email-composer": {
"PACKAGE_NAME": "com.bipay.copay" "PACKAGE_NAME": "com.bitpay.copay"
}, },
"org.apache.cordova.splashscreen": { "org.apache.cordova.splashscreen": {
"PACKAGE_NAME": "com.bipay.copay" "PACKAGE_NAME": "com.bitpay.copay"
} }
}, },
"dependent_plugins": {} "dependent_plugins": {}

View file

@ -17,7 +17,7 @@
under the License. under the License.
*/ */
package com.bipay.copay; package com.bitpay.copay;
import android.os.Bundle; import android.os.Bundle;
import org.apache.cordova.*; import org.apache.cordova.*;