Skip to content

Commit 0a10131

Browse files
committed
Version 4.5.0
1 parent 67007af commit 0a10131

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
5050
```groovy
5151
dependencies {
5252
// For AndroidX enabled projects.
53-
implementation 'com.pranavpandey.android:dynamic-utils:4.4.8'
53+
implementation 'com.pranavpandey.android:dynamic-utils:4.5.0'
5454
5555
// For legacy projects.
5656
implementation 'com.pranavpandey.android:dynamic-utils:1.3.0'

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ ext {
6767
mavenDir = 'com/pranavpandey/android'
6868
mavenArtifactId = 'dynamic-utils'
6969
mavenInceptionYear = '2017'
70-
mavenVersion = '4.4.8'
71-
mavenVersionCode = 43
70+
mavenVersion = '4.5.0'
71+
mavenVersionCode = 44
7272

7373
developerId = 'pranavpandey'
7474
developerName = 'Pranav Pandey'
75-
developerEmail = 'pranavpande92@gmail.com'
75+
developerEmail = 'dynamic@pranavpandey.com'
7676

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

dynamic-utils/maven.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2017-2022 Pranav Pandey
2+
* Copyright 2017-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)