mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00

Co-authored-by: Evgenii Kozlov <enklave.mare.balticum@protonmail.com> Co-authored-by: Evgenii Kozlov <ubuphobos@gmail.com>
16 lines
339 B
Groovy
16 lines
339 B
Groovy
plugins {
|
|
id 'maven-publish'
|
|
}
|
|
|
|
afterEvaluate {
|
|
publishing {
|
|
publications {
|
|
myLocalPublication(MavenPublication) {
|
|
artifact(file('lib.aar'))
|
|
groupId 'io.anyproto'
|
|
artifactId 'anytype-heart-android'
|
|
version = '0.99'
|
|
}
|
|
}
|
|
}
|
|
}
|