无法在Android项目中导入git模块

时间:2019-06-07 10:38:39

标签: java android git annotations build.gradle

我一直在尝试创建一个项目,该项目使用我自己的项目之一(在github上发布)作为依赖项。我一直在使用以下方法将其添加为依赖项。 settings.gradle(项目):

sourceControl{
gitRepository("https://github.com/sudhanshujaisani38/SimpleApp"){
    producesModule("com.example.simpleapp:app")
}
}

build.gradle(Module:app)

implementation("com.example.simpleapp:app"){
    version{
        branch='master'
    }
}

我可以看到已经添加了项目并且构建成功,但是我无法访问其中的类。我丢失了某些东西还是做错了什么?

谢谢。

enter image description here

0 个答案:

没有答案