Skip to content

Commit

Permalink
v1.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
orhanobut committed Jul 18, 2015
1 parent 9dea2ee commit d8fa9ad
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 32 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Simple, easy dialog solution for android.

### Gradle
```groovy
compile 'com.orhanobut:dialogplus:1.9@aar'
compile 'com.orhanobut:dialogplus:1.10@aar'
```

### Usage
Expand All @@ -29,14 +29,14 @@ Use the builder to create the dialog.
Basic usage
```java
DialogPlus dialog = DialogPlus.newDialog(this)
.setAdapter(adapter)
.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(DialogPlus dialog, Object item, View view, int position) {
}
})
.setExpanded(true) // This will enable the expand feature, (similar to android L share dialog)
.create();
.setAdapter(adapter)
.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(DialogPlus dialog, Object item, View view, int position) {
}
})
.setExpanded(true) // This will enable the expand feature, (similar to android L share dialog)
.create();
dialog.show();
```

Expand Down
6 changes: 2 additions & 4 deletions dialogplus/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 21
compileSdkVersion 22
buildToolsVersion "22.0.1"

defaultConfig {
minSdkVersion 10
targetSdkVersion 21
versionCode 1
versionName "1.0"
targetSdkVersion 22
}

lintOptions {
Expand Down
17 changes: 0 additions & 17 deletions dialogplus/proguard-rules.pro

This file was deleted.

4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# org.gradle.parallel=true
# VERSION_NAME=1.2-SNAPSHOT
# VERSION_CODE=3
VERSION_NAME=1.9
VERSION_CODE=10
VERSION_NAME=1.10
VERSION_CODE=11
GROUP=com.orhanobut

POM_DESCRIPTION=Android simple dialog
Expand Down

0 comments on commit d8fa9ad

Please sign in to comment.