Skip to content

Commit

Permalink
Version 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
geftimov committed Dec 9, 2015
1 parent c0f41a3 commit 11f3308
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 49 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Result

![svg](https://github.com/geftimov/android-pathview/blob/master/art/path.gif)

#### Use the animator
#### Use the animator for parallel animation

pathView.getPathAnimator()
.delay(100)
Expand All @@ -63,6 +63,16 @@ Result
.listenerEnd(new AnimationListenerEnd())
.interpolator(new AccelerateDecelerateInterpolator())
.start();

#### Use the animator for sequential animation

pathView.getSequentialPathAnimator()
.delay(100)
.duration(500)
.listenerStart(new AnimationListenerStart())
.listenerEnd(new AnimationListenerEnd())
.interpolator(new AccelerateDecelerateInterpolator())
.start();
#### If you want to use the svg colors.

Expand Down Expand Up @@ -97,7 +107,7 @@ Make and pull - request and we can discuss it.
##### Download

dependencies {
compile 'com.eftimoff:android-pathview:1.0.6@aar'
compile 'com.eftimoff:android-pathview:1.0.7@aar'
}

##### Licence
Expand All @@ -114,8 +124,4 @@ Make and pull - request and we can discuss it.
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.




limitations under the License.
83 changes: 41 additions & 42 deletions android-pathview/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
apply plugin: 'com.android.library'
apply plugin: 'android-library'
apply plugin: 'maven'
apply plugin: 'signing'

version = "1.0.6"
version = "1.0.7"
group = "com.eftimoff"

android {
Expand All @@ -29,46 +28,46 @@ signing {
sign configurations.archives
}

//uploadArchives {
// configuration = configurations.archives
// repositories.mavenDeployer {
// beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
//
// repository(url: sonatypeRepo) {
// authentication(userName: sonatypeUsername,
// password: sonatypePassword)
// }
//
// pom.project {
// name 'Android Path View Library'
// packaging 'aar'
// description 'Android view that animate the both path from constructed path or from svg'
// url 'https://github.com/geftimov/android-pathview'
//
// scm {
// url 'scm:[email protected]:geftimov/android-pathview.git'
// connection 'scm:[email protected]:geftimov/android-pathview.git'
// developerConnection 'scm:[email protected]:geftimov/android-pathview.git'
// }
//
// licenses {
// license {
// name 'The Apache Software License, Version 2.0'
// url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
// distribution 'repo'
// }
// }
//
// developers {
// developer {
// id 'geftimov'
// name 'Georgi Eftimov'
// email '[email protected]'
// }
// }
// }
// }
//}
uploadArchives {
configuration = configurations.archives
repositories.mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: sonatypeRepo) {
authentication(userName: sonatypeUsername,
password: sonatypePassword)
}

pom.project {
name 'Android Path View Library'
packaging 'aar'
description 'Android view that animate the both path from constructed path or from svg'
url 'https://github.com/geftimov/android-pathview'

scm {
url 'scm:[email protected]:geftimov/android-pathview.git'
connection 'scm:[email protected]:geftimov/android-pathview.git'
developerConnection 'scm:[email protected]:geftimov/android-pathview.git'
}

licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}

developers {
developer {
id 'geftimov'
name 'Georgi Eftimov'
email '[email protected]'
}
}
}
}
}

dependencies {
compile files('libs/androidsvg-1.2.1.jar')
Expand Down

0 comments on commit 11f3308

Please sign in to comment.