Skip to content

Commit

Permalink
Merge pull request #366 from apptentive/next
Browse files Browse the repository at this point in the history
PR for 3.2.1
  • Loading branch information
skykelsey authored Aug 9, 2016
2 parents 6ca5598 + 7b6b03c commit 9a914f6
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ build/
.idea/vcs.xml
.idea/workspace.xml
.idea/libraries
projectFilesBackup/

# Eclipse
.settings
Expand Down
12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 2016-08-09 - 3.2.1

#### Bugs Fixed

* Add proguard rule to prevent obfuscating `android.support.v4.app.FragmentManagerImpl`, which we load via reflection in a workaround for a bug in the support library.
* Prevent NPE when animation runs after object is nulled.
* Fix a bug that sometimes prevented the Message Center Composing view from gaining focus on user touch.

# 2016-07-13 - 3.2.0

#### Improvements
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|3.2.0|aar)
##### Binary releases are hosted for Maven [here](http://search.maven.org/#artifactdetails|com.apptentive|apptentive-android|3.2.1|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
3 changes: 2 additions & 1 deletion apptentive/consumer-proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@

-dontwarn com.apptentive.android.sdk.**
-keepattributes SourceFile,LineNumberTable
-keep class com.apptentive.android.sdk.** { *; }
-keep class com.apptentive.android.sdk.** { *; }
-keep class android.support.v4.app.FragmentManagerImpl { *; }
Original file line number Diff line number Diff line change
Expand Up @@ -381,21 +381,25 @@ public void run() {
} else if (nameEditText != null) {
if (whoCardViewIndex != INVALID_POSITION && whoCardViewIndex == position) {
if (focusOnNameField) {
nameEditText.post(new Runnable()
{
public void run()
{
nameEditText.requestFocus();
nameEditText.post(
new Runnable() {
public void run() {
if (nameEditText != null) {
nameEditText.requestFocus();
}
}
}
});
);
} else {
emailEditText.post(new Runnable()
{
public void run()
{
emailEditText.requestFocus();
emailEditText.post(
new Runnable() {
public void run() {
if (emailEditText != null) {
emailEditText.requestFocus();
}
}
}
});
);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class Constants {

public static final String APPTENTIVE_SDK_VERSION = "3.2.0";
public static final String APPTENTIVE_SDK_VERSION = "3.2.1";


public static final int REQUEST_CODE_PHOTO_FROM_SYSTEM_PICKER = 10;
Expand Down

0 comments on commit 9a914f6

Please sign in to comment.