Skip to content

Commit

Permalink
Version 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phantomVK committed Oct 17, 2019
1 parent abee8a1 commit 8afc6f8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 19 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SlideBack
=========

[![Download](https://api.bintray.com/packages/phantomtvk/SlideBack/slideback/images/download.svg?version=0.3.0)](https://bintray.com/phantomtvk/SlideBack/slideback/0.3.0/link) [![中文README](https://img.shields.io/badge/Readme-%E4%B8%AD%E6%96%87-orange)](https://github.com/phantomVK/SlideBack/blob/master/README_CN.md) [![README in English](https://img.shields.io/badge/Readme-English-yellow)](https://github.com/phantomVK/SlideBack/blob/master/README.md) [![license](https://img.shields.io/badge/License-Apache2.0-brightgreen)](https://github.com/phantomVK/SlideBack/blob/master/LICENSE)
[![Download](https://api.bintray.com/packages/phantomtvk/SlideBack/slideback/images/download.svg?version=0.3.1)](https://bintray.com/phantomtvk/SlideBack/slideback/0.3.1/link) [![中文README](https://img.shields.io/badge/Readme-%E4%B8%AD%E6%96%87-orange)](https://github.com/phantomVK/SlideBack/blob/master/README_CN.md) [![README in English](https://img.shields.io/badge/Readme-English-yellow)](https://github.com/phantomVK/SlideBack/blob/master/README.md) [![license](https://img.shields.io/badge/License-Apache2.0-brightgreen)](https://github.com/phantomVK/SlideBack/blob/master/LICENSE)

[中文版README](./README_CN.md)

Expand All @@ -24,7 +24,7 @@ repositories {
}
dependencies {
implementation 'com.phantomvk.slideback:slideback:0.3.0'
implementation 'com.phantomvk.slideback:slideback:0.3.1'
}
```

Expand All @@ -37,7 +37,7 @@ repositories {
}
dependencies {
implementation 'com.phantomvk.slideback:slideback-support:0.3.0'
implementation 'com.phantomvk.slideback:slideback-support:0.3.1'
}
```

Expand Down
6 changes: 3 additions & 3 deletions README_CN.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SlideBack
=========

[![Download](https://api.bintray.com/packages/phantomtvk/SlideBack/slideback/images/download.svg?version=0.3.0)](https://bintray.com/phantomtvk/SlideBack/slideback/0.3.0/link) [![中文README](https://img.shields.io/badge/Readme-%E4%B8%AD%E6%96%87-orange)](https://github.com/phantomVK/SlideBack/blob/master/README_CN.md) [![README in English](https://img.shields.io/badge/Readme-English-yellow)](https://github.com/phantomVK/SlideBack/blob/master/README.md) [![license](https://img.shields.io/badge/License-Apache2.0-brightgreen)](https://github.com/phantomVK/SlideBack/blob/master/LICENSE)
[![Download](https://api.bintray.com/packages/phantomtvk/SlideBack/slideback/images/download.svg?version=0.3.1)](https://bintray.com/phantomtvk/SlideBack/slideback/0.3.1/link) [![中文README](https://img.shields.io/badge/Readme-%E4%B8%AD%E6%96%87-orange)](https://github.com/phantomVK/SlideBack/blob/master/README_CN.md) [![README in English](https://img.shields.io/badge/Readme-English-yellow)](https://github.com/phantomVK/SlideBack/blob/master/README.md) [![license](https://img.shields.io/badge/License-Apache2.0-brightgreen)](https://github.com/phantomVK/SlideBack/blob/master/LICENSE)

[README in English](./README.md)

Expand All @@ -24,7 +24,7 @@ repositories {
}
dependencies {
implementation 'com.phantomvk.slideback:slideback:0.3.0'
implementation 'com.phantomvk.slideback:slideback:0.3.1'
}
```

Expand All @@ -37,7 +37,7 @@ repositories {
}
dependencies {
implementation 'com.phantomvk.slideback:slideback-support:0.3.0'
implementation 'com.phantomvk.slideback:slideback-support:0.3.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ buildscript {
// in the individual module build.gradle files
}
rootProject.ext {
versionCode = 30
versionName = "0.3.0"
versionCode = 31
versionName = "0.3.1"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,14 @@ public void startActivityForResult(Intent intent, int requestCode, @Nullable Bun
super.startActivityForResult(intent, requestCode, options);
}

@Override
public boolean slideBackDisable() {
return Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT;
}

@Override
public void onEnterAnimationComplete() {
super.onEnterAnimationComplete();
slideManager.onEnterAnimationComplete();
}
}

@Override
public boolean slideBackDisable() {
return Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ public void startActivityForResult(Intent intent, int requestCode, @Nullable Bun
super.startActivityForResult(intent, requestCode, options);
}

@Override
public boolean slideBackDisable() {
return Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT;
}

@Override
public void onEnterAnimationComplete() {
super.onEnterAnimationComplete();
slideManager.onEnterAnimationComplete();
}

@Override
public boolean slideBackDisable() {
return Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT;
}
}

0 comments on commit 8afc6f8

Please sign in to comment.