Skip to content

Commit d8fa9ad

Browse files
committed
v1.10 release
1 parent 9dea2ee commit d8fa9ad

File tree

4 files changed

+13
-32
lines changed

4 files changed

+13
-32
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Simple, easy dialog solution for android.
2020

2121
### Gradle
2222
```groovy
23-
compile 'com.orhanobut:dialogplus:1.9@aar'
23+
compile 'com.orhanobut:dialogplus:1.10@aar'
2424
```
2525

2626
### Usage
@@ -29,14 +29,14 @@ Use the builder to create the dialog.
2929
Basic usage
3030
```java
3131
DialogPlus dialog = DialogPlus.newDialog(this)
32-
.setAdapter(adapter)
33-
.setOnItemClickListener(new OnItemClickListener() {
34-
@Override
35-
public void onItemClick(DialogPlus dialog, Object item, View view, int position) {
36-
}
37-
})
38-
.setExpanded(true) // This will enable the expand feature, (similar to android L share dialog)
39-
.create();
32+
.setAdapter(adapter)
33+
.setOnItemClickListener(new OnItemClickListener() {
34+
@Override
35+
public void onItemClick(DialogPlus dialog, Object item, View view, int position) {
36+
}
37+
})
38+
.setExpanded(true) // This will enable the expand feature, (similar to android L share dialog)
39+
.create();
4040
dialog.show();
4141
```
4242

dialogplus/build.gradle

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 21
4+
compileSdkVersion 22
55
buildToolsVersion "22.0.1"
66

77
defaultConfig {
88
minSdkVersion 10
9-
targetSdkVersion 21
10-
versionCode 1
11-
versionName "1.0"
9+
targetSdkVersion 22
1210
}
1311

1412
lintOptions {

dialogplus/proguard-rules.pro

-17
This file was deleted.

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
# org.gradle.parallel=true
1919
# VERSION_NAME=1.2-SNAPSHOT
2020
# VERSION_CODE=3
21-
VERSION_NAME=1.9
22-
VERSION_CODE=10
21+
VERSION_NAME=1.10
22+
VERSION_CODE=11
2323
GROUP=com.orhanobut
2424

2525
POM_DESCRIPTION=Android simple dialog

0 commit comments

Comments
 (0)