Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
David Vávra committed Jan 4, 2016
1 parent 30444a0 commit 55aad13
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Features:

```groovy
dependencies {
compile 'com.avast:android-styled-dialogs:2.2.0'
compile 'com.avast:android-styled-dialogs:2.3.0'
}
```
Hosted in [jcenter](https://bintray.com/avast/android/styled-dialogs/): [ ![Download](https://api.bintray.com/packages/avast/android/styled-dialogs/images/download.svg) ](https://bintray.com/avast/android/styled-dialogs/_latestVersion)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ allprojects {
}

ext {
VERSION_NAME = "2.2.1-SNAPSHOT"
VERSION_NAME = "2.3.0"
VERSION_CODE = 10
}

Expand Down
2 changes: 1 addition & 1 deletion demo/src/main/java/com/avast/dialogs/DemoActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
setTheme(R.style.AppThemeDark);
Toast.makeText(DemoActivity.this, "Dark theme set", Toast.LENGTH_SHORT).show();
}
invalidateOptionsMenu();
supportInvalidateOptionsMenu();
return true;
case R.id.about:
Intent i = new Intent(Intent.ACTION_VIEW);
Expand Down
4 changes: 4 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ android {
versionName project.VERSION_NAME
versionCode project.VERSION_CODE
}

lintOptions {
abortOnError false
}
}

dependencies {
Expand Down

0 comments on commit 55aad13

Please sign in to comment.