Skip to content

Commit

Permalink
v1.0.1;
Browse files Browse the repository at this point in the history
  • Loading branch information
OCNYang committed Sep 20, 2018
1 parent 6853671 commit f14e112
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This is a PageTransformer library for Android ViewPager;There are many custom PageTransformer styles.Be able to help you when you use ViewPager.

[![Version Code](https://img.shields.io/badge/Version%20Code-1.0.0-brightgreen.svg)](https://github.com/OCNYang/PageTransformerHelp/releases)
[![Version Code](https://img.shields.io/badge/Version%20Code-1.0.1-brightgreen.svg)](https://github.com/OCNYang/PageTransformerHelp/releases)

**[关于 ViewPager 的各种用法详解教程](http://www.jianshu.com/p/f8bf9e8b0a39)**

Expand Down Expand Up @@ -62,7 +62,7 @@ Or use Gradle:
**Step 2.** Add the dependency

dependencies {
compile 'com.github.OCNYang:PageTransformerHelp:v1.0.0'
compile 'com.github.OCNYang:PageTransformerHelp:v1.0.1'
}

Or Maven:
Expand All @@ -80,7 +80,7 @@ Or Maven:
<dependency>
<groupId>com.github.OCNYang</groupId>
<artifactId>PageTransformerHelp</artifactId>
<version>v1.0.0</version>
<version>v1.0.1</version>
</dependency>


Expand Down
18 changes: 9 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
compileSdkVersion 28
defaultConfig {
applicationId "com.ocnyang.variationviewpager"
minSdkVersion 19
targetSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -20,15 +20,15 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.github.bumptech.glide:glide:4.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
implementation 'com.android.support:cardview-v7:27.0.2'
implementation 'com.android.support:cardview-v7:28.0.0-rc02'

implementation project(':pagetransformerhelp')
// implementation 'com.github.OCNYang:PageTransformerHelp:v1.0.0'
implementation project(':pagetransformerhelp')
// implementation 'com.github.OCNYang:PageTransformerHelp:v1.0.1'
}
14 changes: 7 additions & 7 deletions pagetransformerhelp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 26
compileSdkVersion 28



defaultConfig {
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "1.0"
targetSdkVersion 28
versionCode 2
versionName "1.0.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand All @@ -27,8 +27,8 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:appcompat-v7:28.0.0-rc02'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

0 comments on commit f14e112

Please sign in to comment.