Update cordova build to 0.6.1

This commit is contained in:
Yemel Jardi 2014-09-23 12:30:10 -03:00
parent 4b7c138877
commit d201cce7ab
4 changed files with 5 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="11" android:versionName="0.5.0" android:windowSoftInputMode="adjustPan" package="com.bitpay.copay" xmlns:android="http://schemas.android.com/apk/res/android"> <manifest android:hardwareAccelerated="true" android:versionCode="12" android:versionName="0.6.1" android:windowSoftInputMode="adjustPan" package="com.bitpay.copay" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" /> <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@drawable/copay" android:label="@string/app_name"> <application android:hardwareAccelerated="true" android:icon="@drawable/copay" android:label="@string/app_name">

View File

@ -118,9 +118,7 @@ checkOK
cp -R android/res/* $PROJECT/platforms/android/res cp -R android/res/* $PROJECT/platforms/android/res
checkOK checkOK
echo $SKIPIOS;
if [[ !$SKIPIOS ]]; then if [[ !$SKIPIOS ]]; then
echo "Copiando IOS";
cp -R ios/icons/* $PROJECT/platforms/ios/Copay/Resources/icons cp -R ios/icons/* $PROJECT/platforms/ios/Copay/Resources/icons
checkOK checkOK

View File

@ -57,7 +57,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.5.0</string> <string>0.6.1</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
@ -72,7 +72,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.5.0</string> <string>0.6.1</string>
<key>LSRequiresIPhoneOS</key> <key>LSRequiresIPhoneOS</key>
<true/> <true/>
<key>NSMainNibFile</key> <key>NSMainNibFile</key>

View File

@ -4,10 +4,11 @@
* [Install Android SDK](https://developer.android.com/sdk/installing/index.html?pkg=tools) * [Install Android SDK](https://developer.android.com/sdk/installing/index.html?pkg=tools)
* [Install XCode for IOS](https://itunes.apple.com/en/app/xcode/id497799835?mt=12) * [Install XCode for IOS](https://itunes.apple.com/en/app/xcode/id497799835?mt=12)
* Install Cordova: ``sudo npm install -g cordova`` * Install Cordova: ``sudo npm install -g cordova``
* Install Copay dependecies: ``bower install && npm install``
## Build the project ## Build the project
$ sh cordova/build.sh $ sh cordova/build.sh [--android]
$ cd cordova/project $ cd cordova/project
$ cordova run android $ cordova run android
$ cordova emulate ios $ cordova emulate ios