Skip to content

Commit 55aad13

Browse files
author
David Vávra
committed
Release 2.3.0
1 parent 30444a0 commit 55aad13

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Features:
2020

2121
```groovy
2222
dependencies {
23-
compile 'com.avast:android-styled-dialogs:2.2.0'
23+
compile 'com.avast:android-styled-dialogs:2.3.0'
2424
}
2525
```
2626
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)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ allprojects {
1515
}
1616

1717
ext {
18-
VERSION_NAME = "2.2.1-SNAPSHOT"
18+
VERSION_NAME = "2.3.0"
1919
VERSION_CODE = 10
2020
}
2121

demo/src/main/java/com/avast/dialogs/DemoActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ public boolean onOptionsItemSelected(MenuItem item) {
326326
setTheme(R.style.AppThemeDark);
327327
Toast.makeText(DemoActivity.this, "Dark theme set", Toast.LENGTH_SHORT).show();
328328
}
329-
invalidateOptionsMenu();
329+
supportInvalidateOptionsMenu();
330330
return true;
331331
case R.id.about:
332332
Intent i = new Intent(Intent.ACTION_VIEW);

library/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ android {
1616
versionName project.VERSION_NAME
1717
versionCode project.VERSION_CODE
1818
}
19+
20+
lintOptions {
21+
abortOnError false
22+
}
1923
}
2024

2125
dependencies {

0 commit comments

Comments
 (0)