有一種方法可以自動將庫添加到每個新項目/模塊。 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'
}
正如你可以看到,滑翔庫已經在末尾添加。
當此文件被修改時,每個新的Android Phone & Table module
都將包含此庫。
當然,沒有什麼能夠阻止您添加自己的模塊或項目模板。
看一看Android Studio中的Live模板功能https://www.youtube.com/watch?v=4rI4tTd7-J8 – Luksprog
檢查這個帖子http://stackoverflow.com/a/39116613/1770868 –
@ Luksprog,首先感謝您的閱讀,這是一種重用代碼的替代方式。 –