diff --git a/EasyFlipView/build.gradle b/EasyFlipView/build.gradle
index fdb4836..3ff0b33 100644
--- a/EasyFlipView/build.gradle
+++ b/EasyFlipView/build.gradle
@@ -21,7 +21,7 @@ ext {
siteUrl = 'https://github.com/wajahatkarim3/EasyFlipView'
gitUrl = 'https://github.com/wajahatkarim3/EasyFlipView.git'
- libraryVersion = '2.0.6'
+ libraryVersion = '2.1.0'
developerId = 'wajahatkarim3'
developerName = 'Wajahat Karim'
diff --git a/README.md b/README.md
index 680b28c..ab2b9cf 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Installation
Add this in your app's build.gradle file:
```groovy
dependencies {
- implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.0.6'
+ implementation 'com.wajahatkarim3.EasyFlipView:EasyFlipView:2.1.0'
}
```
@@ -26,7 +26,7 @@ Or add EasyFlipView as a new dependency inside your pom.xml
com.wajahatkarim3.EasyFlipView
EasyFlipView
- 2.0.6
+ 2.1.0
pom
```
@@ -44,6 +44,7 @@ EasyFlipView In XML layouts("Vertical")
app:flipEnabled="true"
app:flipDuration="400"
app:flipType="vertical"
+ app:flipFrom="front"
>
@@ -63,6 +64,7 @@ EasyFlipView In XML layouts("Horizontal")
app:flipOnTouch="true"
app:flipEnabled="true"
app:flipDuration="400"
+ app:flipFrom="right"
app:flipType="horizontal"
>
@@ -100,6 +102,18 @@ All customizable attributes for EasyFlipView
vertical |
Whether card should flip in vertical or horizontal |
+
+ app:flipType="horizontal" |
+ vertical |
+ Whether card should flip in vertical or horizontal |
+
+
+ app:flipFrom="right"
+ app:flipFrom="back" |
+ left
+ front |
+ Whether card should flip from left to right Or right to left(Horizontal type) or car should flip to front or back(Vertical type) |
+
In Code (Java)
@@ -185,8 +199,8 @@ Wajahat Karim
Special Thanks
=========
- [**iGio90**](https://github.com/iGio90) for adding dynamic views support [Pull Request # 10](https://github.com/wajahatkarim3/EasyFlipView/pull/10)
-
- [**Sachin Varma**](https://www.linkedin.com/in/sachin-varma-58b243118/) for adding vertical animations support [Pull Request # 12](https://github.com/wajahatkarim3/EasyFlipView/pull/12)
+- [**Sachin Varma**](https://www.linkedin.com/in/sachin-varma-58b243118/) for adding multi-dimension animations support [Pull Request # 23](https://github.com/wajahatkarim3/EasyFlipView/pull/23)
# How to Contribute
diff --git a/build.gradle b/build.gradle
index 949a501..9dc7c8c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -8,7 +8,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.1.1'
+ classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
diff --git a/gradle.properties b/gradle.properties
index 1554a13..e37a3c4 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -16,3 +16,6 @@ org.gradle.jvmargs=-Xmx1536M
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
+
+# JDK Path
+org.gradle.java.home=C:\\Program Files\\Java\\jdk1.8.0_144