Skip to content
This repository has been archived by the owner on May 17, 2023. It is now read-only.

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Nov 6, 2016
1 parent 3e98a55 commit 8e25c8e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ android:
components:
- tools
- platform-tools
- build-tools-24.0.0
- android-24
- build-tools-24.0.3
- android-25
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add the following to your module's `build.gradle` file:
```Gradle
dependencies {
// ... other dependencies
compile 'com.afollestad:drag-select-recyclerview:0.3.6'
compile 'com.afollestad:drag-select-recyclerview:0.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.android.tools.build:gradle:2.2.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-bin.zip
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.afollestad'
PUBLISH_ARTIFACT_ID = 'drag-select-recyclerview'
PUBLISH_VERSION = '0.3.6'
TARGET_SDK = 24
BUILD_TOOLS = "24.0.0"
GOOGLE_LIBS = "24.0.0"
PUBLISH_VERSION = '0.4.0'
TARGET_SDK = 25
BUILD_TOOLS = "24.0.3"
GOOGLE_LIBS = "25.0.0"
}

android {
Expand Down
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
apply plugin: 'com.android.application'

ext {
PUBLISH_VERSION = '0.3.6'
TARGET_SDK = 24
BUILD_TOOLS = "24.0.0"
GOOGLE_LIBS = "24.0.0"
PUBLISH_VERSION = '0.4.0'
TARGET_SDK = 25
BUILD_TOOLS = "24.0.3"
GOOGLE_LIBS = "25.0.0"
}

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ protected void onCreate(Bundle savedInstanceState) {
}

@Override
public void onSaveInstanceState(Bundle outState, PersistableBundle outPersistentState) {
super.onSaveInstanceState(outState, outPersistentState);
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
// Save selected indices
mAdapter.saveInstanceState(outState);
if (mCab != null) mCab.saveState(outState);
Expand Down

0 comments on commit 8e25c8e

Please sign in to comment.