gpt4 book ai didi

android - 将模块导入到 gradle

转载 作者:行者123 更新时间:2023-12-03 04:49:28 26 4
gpt4 key购买 nike

我已将 volley 库克隆到 /Users/user/volley
如何将其作为模块导入到我的 android studio 项目中,由 gradle 提供支持,类似于 IntelliJ Idea 中的“导入模块”选项。

最佳答案

And the new Android Studio is missing File -> Import module.



那是因为 AndroidStudio 与您的构建不再有任何关系。 Gradle 是真正构建您的应用程序的人。如果你想在你的项目中添加 volley,你必须编辑 build.gradle脚本。评论中有链接,或者您可以使用下一个作为 fragment :
repositories {
maven {
url 'https://github.com/Goddchen/mvn-repo/raw/master/'
}
mavenCentral()
}

dependencies {
compile 'com.android:volley:1.0'
}

添加这些行后,按 Sync project with gradle files AndroidStudio 将导入您的模块。

关于android - 将模块导入到 gradle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19622781/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com