无法使用JitPack将模块化Android存储库发布为模块

时间:2018-10-30 09:19:05

标签: android android-gradle android-library jitpack

我有一个Android项目,其中既包含示例应用程序,又包含Android库published on GitHub。我希望能够使用JitPack将库导入到我的Android项目中。

当我使用

导入整个Android项目时,效果很好
implementation 'com.github.magnuswikhog:remotedb-android:1.0.6'

但是我不能使用

仅导入库项目。
implementation 'com.github.magnuswikhog.remotedb-android:remotedb:1.0.6'

我已关注this guide,因此我的图书馆build.gradle包含

group='com.github.magnuswikhog.remotedb-android'

我的根项目build.gradle包含

classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'

,并根据the JitPack documentation使用正确的语法(在仓库名称之前使用.在模块名称之前使用:

简而言之-我似乎无法使用JitPack使模块化方法完全起作用。

0 个答案:

没有答案