diff --git a/README.md b/README.md index b270d94..02c5b99 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi ```groovy dependencies { // For AndroidX enabled projects. - implementation 'com.pranavpandey.android:dynamic-engine:4.3.3' + implementation 'com.pranavpandey.android:dynamic-engine:4.4.0' // For legacy projects. implementation 'com.pranavpandey.android:dynamic-engine:1.3.0' diff --git a/build.gradle b/build.gradle index 254c592..fdb9fbd 100644 --- a/build.gradle +++ b/build.gradle @@ -69,12 +69,12 @@ ext { mavenDir = 'com/pranavpandey/android' mavenArtifactId = 'dynamic-engine' mavenInceptionYear = '2017' - mavenVersion = '4.3.3' - mavenVersionCode = 32 + mavenVersion = '4.4.0' + mavenVersionCode = 33 developerId = 'pranavpandey' developerName = 'Pranav Pandey' - developerEmail = 'pranavpande92@gmail.com' + developerEmail = 'dynamic@pranavpandey.com' licenseName = 'The Apache Software License, Version 2.0' licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' diff --git a/dynamic-engine/maven.gradle b/dynamic-engine/maven.gradle index 689eb51..e0e8312 100644 --- a/dynamic-engine/maven.gradle +++ b/dynamic-engine/maven.gradle @@ -1,5 +1,5 @@ /* - * Copyright 2017-2022 Pranav Pandey + * Copyright 2017-2023 Pranav Pandey * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,8 +28,11 @@ if (project.hasProperty("android")) { } task javadoc(type: Javadoc) { + dependsOn("generateReleaseRFile") + source = android.sourceSets.main.java.srcDirs classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) + doNotTrackState("Javadoc needs to be generated every time.") failOnError = false }