Skip to content

Commit

Permalink
Fixing version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
bhariharan committed Apr 20, 2015
1 parent 785fa35 commit 838fb4c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libs/SalesforceSDK/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.salesforce.androidsdk"
android:versionCode="42"
android:versionName="3.2.0.unstable">
android:versionName="3.2.0">

<uses-sdk android:minSdkVersion="17"
android:targetSdkVersion="21" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public class SalesforceSDKManager {
/**
* Current version of this SDK.
*/
public static final String SDK_VERSION = "3.2.0.unstable";
public static final String SDK_VERSION = "3.2.0";

/**
* Default app name.
Expand Down
2 changes: 1 addition & 1 deletion libs/SmartStore/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.salesforce.androidsdk.smartstore"
android:versionCode="42"
android:versionName="3.2.0.unstable">
android:versionName="3.2.0">

<uses-sdk android:minSdkVersion="17"
android:targetSdkVersion="21" />
Expand Down
2 changes: 1 addition & 1 deletion libs/SmartSync/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.salesforce.androidsdk.smartsync"
android:versionCode="42"
android:versionName="3.2.0.unstable">
android:versionName="3.2.0">

<uses-sdk android:minSdkVersion="17"
android:targetSdkVersion="21" />
Expand Down
2 changes: 1 addition & 1 deletion node/forcedroid.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function createHybridApp(config) {
shelljs.exec('cordova create "' + config.projectDir + '" ' + config.packagename + ' ' + config.appname);
shelljs.pushd(config.projectDir);
shelljs.exec('cordova platform add android');
shelljs.exec('cordova plugin add https://github.com/forcedotcom/SalesforceMobileSDK-CordovaPlugin#unstable');
shelljs.exec('cordova plugin add https://github.com/forcedotcom/SalesforceMobileSDK-CordovaPlugin');

// Remove the default Cordova app.
shelljs.rm('-rf', path.join('www', '*'));
Expand Down

0 comments on commit 838fb4c

Please sign in to comment.