This repository has been archived by the owner on Jan 27, 2020. It is now read-only.
forked from yuyakaido/CardStackView
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade build tool - fix deprecated usages - fix adding clickListener…
… to all child of top card - improve swipe listener - calling notifyDataSetChange no longer has effect instead a notifyDataSetChange added to CardStackView which can skip first card ( boolean input )
- Loading branch information
Showing
19 changed files
with
283 additions
and
192 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,18 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'com.novoda.bintray-release' | ||
|
||
buildscript { | ||
repositories { | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'com.novoda:bintray-release:0.3.4' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion "25.0.3" | ||
|
||
compileSdkVersion 27 | ||
defaultConfig { | ||
minSdkVersion 14 | ||
targetSdkVersion 25 | ||
minSdkVersion 19 | ||
targetSdkVersion 27 | ||
versionCode 1 | ||
versionName "1.0.0" | ||
} | ||
} | ||
|
||
dependencies { | ||
compile 'com.android.support:support-v4:25.4.0' | ||
implementation 'com.android.support:support-v4:27.1.1' | ||
} | ||
|
||
publish { | ||
groupId = 'com.yuyakaido.android' | ||
artifactId = 'card-stack-view' | ||
publishVersion = '1.0.0-beta9' | ||
uploadName = 'CardStackView' | ||
website = 'https://github.com/yuyakaido/CardStackView' | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.