Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

#32: Enable publishing bdk-android sources and java docs #33

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ android {
proguardFiles(file("proguard-android-optimize.txt"), file("proguard-rules.pro"))
}
}

publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
Copy link
Contributor Author

@kirillzh kirillzh Mar 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As mentioned in #32 this will probably need to be custom implemented to use dokka instead of actual javadocs.

}
}
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.4")
classpath("com.android.tools.build:gradle:7.1.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
}
}
Expand Down