Skip to content

Commit

Permalink
v1.2.1
Browse files Browse the repository at this point in the history
• Changed default cancelable value to true.
  • Loading branch information
kishannareshpal committed Dec 11, 2018
1 parent 6ec6ef4 commit cc09934
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

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

2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "v1.2"
versionName "v1.2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions superdialog/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
group = 'com.github.kishannareshpal'
version = 'v1.2'
version = 'v1.2.1'

android {
compileSdkVersion 28
Expand All @@ -12,7 +12,7 @@ android {
minSdkVersion 17
targetSdkVersion 28
versionCode 1
versionName "v1.2"
versionName "v1.2.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class SuperDialog extends DialogFragment {
private int negativeColorRes = DEFAULT;
private int cancelColorRes = DEFAULT;
private boolean isAllCaps;
private boolean cancelable;
private boolean cancelable = true;
private String title;
private String message;
private String positiveText;
Expand Down

0 comments on commit cc09934

Please sign in to comment.