Skip to content
This repository has been archived by the owner on Jan 27, 2020. It is now read-only.

Commit

Permalink
upgrade build tool - fix deprecated usages - fix adding clickListener…
Browse files Browse the repository at this point in the history
… 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
shynline committed Sep 13, 2018
1 parent 9619fa8 commit 5f3a6d2
Show file tree
Hide file tree
Showing 19 changed files with 283 additions and 192 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
maven { url 'https://maven.google.com/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.android.tools.build:gradle:3.3.0-alpha10'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
27 changes: 5 additions & 22 deletions cardstackview/build.gradle
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'
}

2 changes: 1 addition & 1 deletion cardstackview/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yuyakaido.android.cardstackview">
package="com.shynline.android.cardstackview">

<application
android:label="@string/app_name">
Expand Down
Loading

0 comments on commit 5f3a6d2

Please sign in to comment.