我有一个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使模块化方法完全起作用。