Skip to content

Commit 86c9192

Browse files
committed
Version 1.1.0
1 parent b466aea commit 86c9192

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
3535

3636
```groovy
3737
dependencies {
38-
implementation 'com.pranavpandey.android:dynamic-motion:1.0.2'
38+
implementation 'com.pranavpandey.android:dynamic-motion:1.1.0'
3939
}
4040
```
4141

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ ext {
6969
mavenDir = 'com/pranavpandey/android'
7070
mavenArtifactId = 'dynamic-motion'
7171
mavenInceptionYear = 2018
72-
mavenVersion = '1.0.2'
73-
mavenVersionCode = 8
74-
sampleVersionCode = 8
72+
mavenVersion = '1.1.0'
73+
mavenVersionCode = 9
74+
sampleVersionCode = 9
7575

7676
developerId = 'pranavpandey'
7777
developerName = 'Pranav Pandey'
78-
developerEmail = 'pranavpande92@gmail.com'
78+
developerEmail = 'dynamic@pranavpandey.com'
7979

8080
licenseName = 'The Apache Software License, Version 2.0'
8181
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'

dynamic-motion/maven.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2018-2022 Pranav Pandey
2+
* Copyright 2018-2023 Pranav Pandey
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,8 +28,11 @@ if (project.hasProperty("android")) {
2828
}
2929

3030
task javadoc(type: Javadoc) {
31+
dependsOn("generateReleaseRFile")
32+
3133
source = android.sourceSets.main.java.srcDirs
3234
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
35+
doNotTrackState("Javadoc needs to be generated every time.")
3336

3437
failOnError = false
3538
}

0 commit comments

Comments
 (0)