Skip to content

Commit 1005b7d

Browse files
committed
Fix dialog factory usage creating overflow error
1 parent bcbdffb commit 1005b7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ publish {
3636
userOrg = 'buffer'
3737
groupId = 'org.buffer.android'
3838
artifactId = 'android-components'
39-
publishVersion = '0.12'
39+
publishVersion = '0.13'
4040
desc = 'An Android library for frequently used UI components'
4141
website = 'https://github.com/bufferapp/android-components'
4242
}

app/src/main/java/org/buffer/android/components/DialogFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ object DialogFactory {
199199
message: String,
200200
neutral: String
201201
): AlertDialog {
202-
return createSimpleInfoDialog(context, title, message, neutral)
202+
return createSimpleInfoDialog(context, title, message, neutral, null)
203203
}
204204

205205
fun createSimpleInfoDialog(

0 commit comments

Comments
 (0)