Skip to content

Commit

Permalink
update to 1.5.2 with dependencies, SDK number, and build tools upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
klinker24 committed Dec 9, 2017
1 parent 10361cf commit 247a2ee
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

### Version 1.5.2:
- Remove `final` modifier, per request

### Version 1.5.1:
- Update dependencies and build tools for SDK 26

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Include the following in your gradle script:

```groovy
dependencies {
compile 'com.klinkerapps:sliding-activity:1.5.0'
compile 'com.klinkerapps:sliding-activity:1.5.2'
}
```

Expand Down Expand Up @@ -179,7 +179,7 @@ if (intent.getBooleanExtra(SampleActivity.ARG_USE_EXPANSION, false)) {
}
```

My suggestion: in the [SampleActivity.addExpansionArgs(Intent)](https://github.com/klinker41/android-slidingactivity/blob/master/sample/src/main/java/com/klinker/android/sliding/sample/SampleActivity.java) function, you can see that I pass the expansion parameters as extras on the intent. I would recommend using this method to pass the view from the activity under the SlidingActivity, to the SlidingActivity.
My suggestion: in the [SampleActivity.addExpansionArgs(Intent)](https://github.com/klinker41/android-slidingactivity/blob/master/sample/src/main/java/com/klinker/android/sliding/sample/SampleActivity.java) function, you can see that I pass the expansion parameters as extras on the intent. I would recommend using this method to pass the view from the activity under the SlidingActivity, to the SlidingActivity.

#### Theming

Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# limitations under the License.
#

VERSION_NAME=1.5.1
VERSION_CODE=119
VERSION_NAME=1.5.2
VERSION_CODE=120
GROUP=com.klinkerapps

POM_DESCRIPTION=Library for allowing activities to be slide up and down on the screen
Expand All @@ -32,9 +32,9 @@ POM_NAME=Android Sliding Activity Library
POM_ARTIFACT_ID=sliding-activity
POM_PACKAGING=aar

ANDROID_GRADLE_VERSION=3.0.0-beta4
BUILD_TOOLS_VERSION=26.0.1
COMPILE_SDK_VERSION=26
TARGET_SDK_VERSION=26
ANDROID_GRADLE_VERSION=3.0.1
BUILD_TOOLS_VERSION=27.0.1
COMPILE_SDK_VERSION=27
TARGET_SDK_VERSION=27
MIN_SDK_VERSION=15
ANDROID_SUPPORT_VERSION=26.0.2
ANDROID_SUPPORT_VERSION=27.0.2

0 comments on commit 247a2ee

Please sign in to comment.