將module模組變成aar檔案

2021-08-19 18:47:40 字數 447 閱讀 4976

在專案開發中,我們經常會使用jar或者aar檔案作為第三方庫引入工程中,jar和aar的區別是什麼呢?

aar:包含class檔案和資源檔名,是android的專屬jar

jar:僅僅包含class和清單檔案,不支援資源檔案

將mudle變成aar的步驟如下:

第一步:建立完module模組以後,寫完功能邏輯,使用build -> make module "common"

第二步:我們就可以到moudle模組中的build/outputs/aar/ 檔案下,看到生成的aar檔案了。

第三步:我們就可以將common.aar檔案複製到專案的libs包下

第四步:在gradle中就可以引用aar檔案了 

repositories 

}dependencies

nodejs 模組module學習

在nodejs中乙個檔案就是乙個模組。nodejs提供了exports和require兩個物件,其中exports是模組公開的介面,require用於從外部獲取乙個模組的介面,即所獲取模組的exports物件。演示示例 新建乙個module.js檔案,如下 var name exports.setn...

Node核心模組 Module

分類 載入機制 路徑分析 檔案定位 載入封裝 function exports,require,module,filename,dirname 編譯執行 快取delete require.cache id 模組迴圈載入console.log a 開始 exports.done false const...

Golang的模組管理Module

golang 1.11版本終於支援了官方的模組依賴管理功能,1.11以前想要實現依賴管理只能夠通過借助第三方庫來實現,1.11以前的版本golang專案必須依賴以gopath,從當前版本開始golang專案可以完全脫離gopath目錄而工作,gopath將會逐漸被移除 go mod的使用也比較簡單,...