Skip to content

Commit 73eeee9

Browse files
committed
Version 4.5.0
1 parent a7c1f0c commit 73eeee9

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
@@ -154,7 +154,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
154154
```groovy
155155
dependencies {
156156
// For AndroidX enabled projects.
157-
implementation 'com.pranavpandey.android:dynamic-theme:4.4.1'
157+
implementation 'com.pranavpandey.android:dynamic-theme:4.5.0'
158158
}
159159
```
160160

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ ext {
6868
mavenDir = 'com/pranavpandey/android'
6969
mavenArtifactId = 'dynamic-theme'
7070
mavenInceptionYear = '2019'
71-
mavenVersion = '4.4.1'
72-
mavenVersionCode = 18
71+
mavenVersion = '4.5.0'
72+
mavenVersionCode = 19
7373

7474
developerId = 'pranavpandey'
7575
developerName = 'Pranav Pandey'
76-
developerEmail = 'pranavpande92@gmail.com'
76+
developerEmail = 'dynamic@pranavpandey.com'
7777

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

dynamic-theme/maven.gradle

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