1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00
anytype-kotlin/libs/build.gradle
2023-06-05 23:02:52 +02:00

16 lines
340 B
Groovy

plugins {
id 'maven-publish'
}
afterEvaluate {
publishing {
publications {
myLocalPublication(MavenPublication) {
artifact(file('lib.aar'))
groupId 'io.anyproto'
artifactId 'anytype-heart-android'
version = '2.3.0'
}
}
}
}