Skip to content

Commit

Permalink
Bump up sdk version to 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry Li committed Jan 21, 2016
1 parent db20567 commit a844992
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 2016-01-20 - 2.1.3

#### Bug Fixed and Improvements

* If apps upgrading from pre-2.0.0 still has now obsolete NetworkStateReceiver defined in their manifest, an immediate run-time exception will help them detect early.
* Message Center now has different layout on tablet

# 2016-01-08 - 2.1.2

#### Bug Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use your app, to talk to them at the right time, and in the right way.

##### Version history is tracked [here](CHANGELOG.md)

##### Binary releases are hosted for Maven [here](http://search.maven.org/#artifactdetails|com.apptentive|apptentive-android|2.1.2|aar)
##### Binary releases are hosted for Maven [here](http://search.maven.org/#artifactdetails|com.apptentive|apptentive-android|2.1.3|aar)
#### Reporting Bugs

We encourage you to help us find and fix bugs. If you find a bug, please fill in the contributor agreement, then open a [github issue](https://github.com/apptentive/apptentive-android/issues?direction=desc&sort=created&state=open).
Expand Down
4 changes: 2 additions & 2 deletions apptentive/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.apptentive.android.sdk"
android:versionCode="33"
android:versionName="2.1.2">
android:versionCode="34"
android:versionName="2.1.3">
<uses-sdk android:minSdkVersion="11"/>
</manifest>
2 changes: 1 addition & 1 deletion apptentive/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
targetSdkVersion 23

versionCode System.getenv("BUILD_NUMBER") as Integer ?: 0
versionName "2.1.2"
versionName "2.1.3"
}

lintOptions {
Expand Down
2 changes: 1 addition & 1 deletion apptentive/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=2.1.2
VERSION_NAME=2.1.3
POM_NAME=Apptentive Android SDK
POM_ARTIFACT_ID=apptentive-android
POM_PACKAGING=aar
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
public class Constants {

public static final String APPTENTIVE_SDK_VERSION = "2.1.2";
public static final String APPTENTIVE_SDK_VERSION = "2.1.3";


public static final int REQUEST_CODE_PHOTO_FROM_SYSTEM_PICKER = 1000;
Expand Down

0 comments on commit a844992

Please sign in to comment.