【Android】Android Studio kotlin DSL導(dǎo)包指南

前言

新版本的Android Studio修改了gradle.build腳本的寫法岸军,從原本的Groovy DSL改成了kotlin DSL,第一次接觸有點(diǎn)不知所措瓦侮。自己摸索了一下艰赞,寫個(gè)記錄給后來人指路。

如果你創(chuàng)建項(xiàng)目的時(shí)候選的是這個(gè)Kotlin DSL才需要本文的指導(dǎo)肚吏,如果選的是下面那個(gè)就不用看了方妖,那個(gè)是舊版的寫法。

新建項(xiàng)目時(shí)的選項(xiàng)

新老版本差異

其實(shí)只變了三個(gè)文件罚攀,如圖所示

Kotlin DSL
Groovy DSL

導(dǎo)入依賴包

此處以mmkv為例党觅,Groovy DSL的寫法是

implementation 'com.tencent:mmkv-static:1.0.24'

語句由以下幾部分組成:

函數(shù)名 '組名:模塊名:版本號'

函數(shù)名 也就是最前面的 implementation,有三種不同的函數(shù)斋泄,區(qū)別如下:
implementation:依賴不傳遞杯瞻,打入最終APK中
api:依賴傳遞,打入最終APK中
compileOnly:僅編譯時(shí)需要炫掐,最終APK中不包含

其中依賴傳遞的意思是魁莉,會不會將這個(gè)包傳遞給依賴自己的對象。

舉例來說募胃,假如我們有一個(gè)moduleHTTP module旗唁,封裝了一層OkHttp,這個(gè)HTTP module自己依賴了OkHttp痹束,此時(shí)如果我們把這個(gè)HTTP module給主APP用检疫,如果在導(dǎo)入OkHttp依賴的時(shí)候這么寫

implementation `com.squareup.okhttp3:okhttp:3.3.0'

那么我們可以在主APP調(diào)用HTTP module封裝好的內(nèi)容,但不可以使用OkHttp的內(nèi)容参袱,這就是依賴不傳遞电谣。
如果想要主APP可以直接調(diào)用OkHttp的內(nèi)容,就需要依賴傳遞抹蚀,也就是使用api函數(shù)來導(dǎo)包剿牺。

api `com.squareup.okhttp3:okhttp:3.3.0'

簡單說就是implementation==privateapi==public
如果你的項(xiàng)目就一個(gè)module那這倆用哪個(gè)都一樣环壤。
compileOnly依賴的內(nèi)容不會被編譯進(jìn)APK晒来,一般用于測試相關(guān)的庫以及注解相關(guān)的庫,比如lombok之類的郑现。

Kotlin DSL寫法

有億點(diǎn)麻煩湃崩,需要改兩個(gè)文件荧降,先打開gradle/libs.versions.toml這個(gè)文件

libs.versions.toml位置

默認(rèn)的大概長這個(gè)樣子

[versions]
agp = "8.3.2"
kotlin = "1.9.0"
coreKtx = "1.13.1"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
lifecycleRuntimeKtx = "2.8.0"
activityCompose = "1.9.0"
composeBom = "2023.08.00"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-ui = { group = "androidx.compose.ui", name = "ui" }
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }

[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }

[versions]下面的內(nèi)容是每個(gè)包的版本號,鍵值對形式攒读,前面是包的名字朵诫,后面是版本號。
[libraries]里面就是導(dǎo)包語句了薄扁,group對應(yīng)組名剪返,name對應(yīng)模塊名,version.ref對應(yīng)版本號邓梅,可以不寫脱盲,不寫就是自動。
[plugins]下面的內(nèi)容就等同于以前build.gradle里的plugins函數(shù)日缨,上面默認(rèn)的那段就等同于下面這段:

plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}

現(xiàn)在我們添加mmkv的依賴钱反,照著舊的寫法抄

implementation 'com.tencent:mmkv-static:1.0.24'

把版本號抄到[versions]下面,命名為mmkv

mmkv = "1.2.7"

把組名和模塊名抄到[libraries]下面匣距,也命名為mmkv

mmkv = { group = "com.tencent", name = "mmkv-static",version.ref = "mmkv" }

改完以后長這樣

[versions]
agp = "8.3.2"
kotlin = "1.9.0"
coreKtx = "1.13.1"
junit = "4.13.2"
junitVersion = "1.1.5"
espressoCore = "3.5.1"
lifecycleRuntimeKtx = "2.8.0"
activityCompose = "1.9.0"
composeBom = "2023.08.00"
nanohttpd = "2.3.1"
mmkv = "1.2.7"
fastjson = "1.1.52.android"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-ui = { group = "androidx.compose.ui", name = "ui" }
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
nanohttpd = { group = "org.nanohttpd", name = "nanohttpd",version.ref = "nanohttpd" }
mmkv = { group = "com.tencent", name = "mmkv-static",version.ref = "mmkv" }
fastjson = { group = "com.alibaba", name = "fastjson",version.ref = "fastjson" }

[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
jetbrainsKotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }

還沒完面哥,還有一個(gè)文件要改,我們打開APP級別的build.gradle.kt墨礁,找到最下面的dependencies幢竹,大概長這樣:

dependencies {

    implementation(libs.androidx.core.ktx)
    implementation(libs.androidx.lifecycle.runtime.ktx)
    implementation(libs.androidx.activity.compose)
    implementation(platform(libs.androidx.compose.bom))
    implementation(libs.androidx.ui)
    implementation(libs.androidx.ui.graphics)
    implementation(libs.androidx.ui.tooling.preview)
    implementation(libs.androidx.material3)
    testImplementation(libs.junit)
    androidTestImplementation(libs.androidx.junit)
    androidTestImplementation(libs.androidx.espresso.core)
    androidTestImplementation(platform(libs.androidx.compose.bom))
    androidTestImplementation(libs.androidx.ui.test.junit4)
    debugImplementation(libs.androidx.ui.tooling)
    debugImplementation(libs.androidx.ui.test.manifest)

}

在最下面加入這行

implementation(libs.mmkv)

就完事了

添加源

還是先講舊的寫法耳峦,找到最外層的build.gradle恩静,在repositories里添加一行

maven { url "源地址" }

比如說添加阿里云倉庫

// Top-level build file where you can add configuration options common to all sub-projects/modules.
//apply from: './config.gradle'
buildscript {
    ext.kotlin_version = "1.5.0"
    repositories {
        mavenLocal()
        google()
        maven { url "https://maven.aliyun.com/repository/public" }
    }
    dependencies {
       ...
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
        maven { url "https://maven.aliyun.com/repository/public" }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Kotlin DSL寫法

打開項(xiàng)目最外層的settings.gradle.kts,然后在repositories里添加一行

maven { setUrl("源地址") }

像這樣

pluginManagement {
    repositories {
        google {
            content {
                includeGroupByRegex("com\.android.*")
                includeGroupByRegex("com\.google.*")
                includeGroupByRegex("androidx.*")
            }
        }
        mavenCentral()
        gradlePluginPortal()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { setUrl("https://maven.aliyun.com/repository/public") }
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末蹲坷,一起剝皮案震驚了整個(gè)濱河市驶乾,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌循签,老刑警劉巖级乐,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異县匠,居然都是意外死亡风科,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進(jìn)店門乞旦,熙熙樓的掌柜王于貴愁眉苦臉地迎上來贼穆,“玉大人,你說我怎么就攤上這事兰粉」嗜” “怎么了?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵玖姑,是天一觀的道長愕秫。 經(jīng)常有香客問我慨菱,道長,這世上最難降的妖魔是什么戴甩? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任符喝,我火速辦了婚禮,結(jié)果婚禮上甜孤,老公的妹妹穿的比我還像新娘洲劣。我一直安慰自己,他們只是感情好课蔬,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布囱稽。 她就那樣靜靜地躺著,像睡著了一般二跋。 火紅的嫁衣襯著肌膚如雪战惊。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天扎即,我揣著相機(jī)與錄音吞获,去河邊找鬼。 笑死谚鄙,一個(gè)胖子當(dāng)著我的面吹牛各拷,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播闷营,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼烤黍,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了傻盟?” 一聲冷哼從身側(cè)響起速蕊,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎娘赴,沒想到半個(gè)月后规哲,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡诽表,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年唉锌,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片竿奏。...
    茶點(diǎn)故事閱讀 38,039評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡袄简,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出议双,到底是詐尸還是另有隱情痘番,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站汞舱,受9級特大地震影響伍纫,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜昂芜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一莹规、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧泌神,春花似錦良漱、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至损趋,卻和暖如春患久,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背浑槽。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工蒋失, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人桐玻。 一個(gè)月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓篙挽,卻偏偏與公主長得像,于是被迫代替她去往敵國和親镊靴。 傳聞我的和親對象是個(gè)殘疾皇子铣卡,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評論 2 345

推薦閱讀更多精彩內(nèi)容