Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AndroidX support #109

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
wip mvn
kibotu committed Sep 16, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 68f0004e24009c191aa8a7870f3098dd9c2f70df
13 changes: 13 additions & 0 deletions buildSrc/install-publish.gradle
Original file line number Diff line number Diff line change
@@ -12,3 +12,16 @@ android {
}
}
}
publishing {
publications {
release(MavenPublication) {
groupId = group
artifactId = artifact
version = "1.0.0"

afterEvaluate {
from components.release
}
}
}
}