📅  最后修改于: 2023-12-03 15:08:32.826000             🧑  作者: Mango
在 Android 开发中,我们经常需要将一段代码封装成一个库或组件,以便在其他项目中复用。这时,我们可以使用 Android Studio 提供的库和模块功能来完成代码的包装。
dependencies {
implementation project(':mylibrary')
}
dependencies {
implementation 'com.example:library:1.0.0'
}
package com.example.mylibrary;
public interface MyInterface {
void myMethod();
}
apply plugin: 'com.android.library'
android {
...
}
dependencies {
...
}
uploadArchives {
repositories {
flatDir {
dirs 'libs'
}
}
}
./gradlew assemble
至此,我们已经成功地将代码封装成了一个库或组件,可以方便地在其他项目中使用。