gpt4 book ai didi

android - 将 android 库添加到 Studio/SDK 中的默认库列表

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:26:40 27 4
gpt4 key购买 nike

所以首先,为了消除疑虑,我知道如何将库添加到 android 项目。我的问题是,我想在我的 android studio 的默认库列表中添加一个库。

让我用一个例子来解释。假设我想将 Glide 库添加到我的项目中。为此,首先,我必须转到 glide github 页面,然后从那里复制 compile 'com.github.bumptech.glide:glide:3.7.0' 文本并粘贴到我的build.gradle 文件。然后 android studio 将通过互联网下载库。所以每次我想在我的任何项目中使用 Glide 库时,我都必须这样做。我想要的是,我想在我可用的默认库列表中包含一个像 Glide 这样的特定库

enter image description here

所以这里是我想包含我的库项目的地方,这样我就可以在我的任何项目中使用它。提前感谢您的阅读。

最佳答案

有一种方法可以自动将库添加到每个新项目/模块。Android Studio 目录中有一个包含模板的文件夹。寻找:

..\Android Studio\plugins\android\lib\templates\gradle-projects\NewAndroidModule\root

在这个目录下有一个文件:

build.gradle.tfl

根据您的需要进行修改。
例子:

dependencies {
<#if dependencyList?? >
<#list dependencyList as dependency>
compile '${dependency}'
</#list>
</#if>
compile fileTree(dir: 'libs', include: ['*.jar'])
<#if WearprojectName?has_content && NumberOfEnabledFormFactors?has_content && NumberOfEnabledFormFactors gt 1 && Wearincluded>
wearApp project(':${WearprojectName}')
compile 'com.google.android.gms:play-services:+'
</#if>
<#if unitTestsSupported>
testCompile 'junit:junit:${junitVersion}'
</#if>
compile 'com.github.bumptech.glide:glide:3.7.0'
}

可以看到,最后添加了Glide库

修改此文件后,每个新的 Android Phone & Table 模块 都将包含此库。

当然,没有什么可以阻止您添加自己的模块或项目模板。

关于android - 将 android 库添加到 Studio/SDK 中的默认库列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39116639/

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