Skip to content

Commit

Permalink
1. Increased library version to 1.0.2
Browse files Browse the repository at this point in the history
2. Updated build.gradle configuration compile to implementation
  • Loading branch information
romandanylyk committed Sep 11, 2018
1 parent 4ac5002 commit 60a98e9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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 {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong
Expand Down
8 changes: 4 additions & 4 deletions pageindicatorview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/romandanylyk/PageIndicatorView'
gitUrl = 'https://github.com/romandanylyk/PageIndicatorView.git'

libraryVersion = '1.0.1'
libraryVersion = '1.0.2'

developerId = 'romandanylyk'
developerName = 'Roman Danylyk'
Expand Down Expand Up @@ -49,9 +49,9 @@ dependencies {
repositories {
maven { url "https://maven.google.com" }
}
compile 'com.android.support:support-annotations:27.1.1'
compile 'com.android.support:support-compat:27.1.1'
compile 'com.android.support:support-core-ui:27.1.1'
implementation 'com.android.support:support-annotations:27.1.1'
implementation 'com.android.support:support-compat:27.1.1'
implementation 'com.android.support:support-core-ui:27.1.1'
}

allprojects {
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:27.1.1'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
compile project(':pageindicatorview')
implementation project(':pageindicatorview')
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ private void updateIndicator() {
pageIndicatorView.setRtlMode(customization.getRtlMode());
pageIndicatorView.setInteractiveAnimation(customization.isInteractiveAnimation());
pageIndicatorView.setAutoVisibility(customization.isAutoVisibility());
pageIndicatorView.setFadeOnIdle(customization.isFadeOnIdle());
// pageIndicatorView.setFadeOnIdle(customization.isFadeOnIdle());
}
}

0 comments on commit 60a98e9

Please sign in to comment.