如何创建我自己的 android 库并托管它

How to create my own android library and host it

我正在努力创建一个登录屏幕,以用于多个不同的 android 应用程序。最好的打包方式是什么,以便其他人可以在他们的应用程序上使用我的登录功能。如果我们要进行更改,最好能为它们自动同步。 ***编辑**** 似乎将它打包成一个库模块是最好的选择。如何上传此模块,以便如果我们对此模块进行更新,它将无缝更新,而无需从 github 中提取。

谢谢!

根据您的来源制作包或 jar,并 post 在 git 中心上,您可以参考 ide 中的 git 导入或检查更新。

将相关的 类 制作成一个库模块——你似乎已经知道该怎么做了——然后使用 Gradle Bintray plugin to upload it to JCenter.

假设您将 build.gradle 中的 group 设置为 com.ryan-newsomversion1.0 并且项目名称是 android-log-in-screen.

(部分)android-log-in-screen/build.gradle:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:0.6"
    }
}

apply plugin: 'com.jfrog.bintray'

group = 'com.ryan-newsom'
version = '1.0'

bintray {
    // Omitted for brevity, refer to the examples on GitHub.
}

您(或其他任何人)可以通过添加以下内容在您的项目中使用它:

(部分)other-project/build.gradle:

repositories {
    jcenter()
}

dependencies {
    compile "com.ryan-newsom:android-log-in-screen:1.0"
}

然后库将从 JCenter 中拉出并添加到类路径中。

您可以将库打包成AAR 格式。它还将包含您在登录模块中使用的资源。之后,您可以将 AAR 库格式推送到 bintray(它是免费的,并允许您设置自己的存储库)。

您的协作者随后可以使用如下所示的依赖项访问该库:

编译'com.newsom:awesome-login-screen:0.5'

如果您正在使用 AndroidStudio/Gradle 并希望将其推送到 bintray,请查看此入门教程。 https://github.com/jimcoven/android-bintray-kit

创建库并使其可供其他开发人员使用的最佳方法是创建 AAR,以便开发人员可以将其导入到他们的项目中使用 依赖项。

过程比较长。 这些是发布库时应遵循的主要步骤:

我写了一篇关于它的 post,要了解更多详细信息,您可以查看 here。 这是一段名为 maven_push.gradle:

的 gradle 文件
apply plugin: 'maven'
apply plugin: 'signing'

def sonatypeRepositoryUrl
if (isReleaseBuild()) {
    println 'RELEASE BUILD
    sonatypeRepositoryUrl = hasProperty('RELEASE_REPOSITORY_URL') ? RELEASE_REPOSITORY_URL
            : "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
} else {
    println 'SNAPSHOT BUILD'
    sonatypeRepositoryUrl = hasProperty('SNAPSHOT_REPOSITORY_URL') ? SNAPSHOT_REPOSITORY_URL
            : "https://oss.sonatype.org/content/repositories/snapshots/"

}

def getRepositoryUsername() {
    return hasProperty('nexusUsername') ? nexusUsername : ""
}

def getRepositoryPassword() {
    return hasProperty('nexusPassword') ? nexusPassword : ""
}

afterEvaluate { project ->
    uploadArchives {
        repositories {
            mavenDeployer {
                beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

                pom.artifactId = POM_ARTIFACT_ID

                repository(url: sonatypeRepositoryUrl) {
                    authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
                }

                pom.project {
                    name POM_NAME
                    packaging POM_PACKAGING
                    description POM_DESCRIPTION
                    url POM_URL

                    scm {
                        url POM_SCM_URL
                        connection POM_SCM_CONNECTION
                        developerConnection POM_SCM_DEV_CONNECTION
                    }

                    licenses {
                        license {
                            name POM_LICENCE_NAME
                            url POM_LICENCE_URL
                            distribution POM_LICENCE_DIST
                        }
                    }

                    developers {
                        developer {
                            id POM_DEVELOPER_ID
                            name POM_DEVELOPER_NAME
                        }
                    }
                }
            }
        }
    }

    signing {
        required { isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives") }
        sign configurations.archives
    }

    task androidJavadocs(type: Javadoc) {
        source = android.sourceSets.main.allJava
        classpath += project.files(android.plugin.getRuntimeJarList().join(File.pathSeparator))
    }

    task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {
        classifier = 'javadoc'
        //basename = artifact_id
        from androidJavadocs.destinationDir
    }

    task androidSourcesJar(type: Jar) {
        classifier = 'sources'
        //basename = artifact_id
        from android.sourceSets.main.allSource
    }

    artifacts {
        //archives packageReleaseJar
        archives androidSourcesJar
        archives androidJavadocsJar
    }
}

而 gradle.properties 是:

VERSION_NAME= 
VERSION_CODE=1
GROUP=
POM_DESCRIPTION=
POM_URL=
POM_SCM_URL= POM_SCM_CONNECTION=
POM_SCM_DEV_CONNECTION=scm:git@github.com:
POM_LICENCE_NAME=The Apache Software License, Version 2.0 POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt POM_LICENCE_DIST=repo 
POM_DEVELOPER_ID=
POM_DEVELOPER_NAME=

还有一个方法,我没试过,好像更简单。 看看 jitpack.

希望对你有帮助。

如果您已将代码推送到 GitHub,那么使用 JitPack 共享库 (aar) 很容易。

您的用户只需将存储库添加到他们的 build.gradle:

repositories {
    jcenter()
    maven { url "https://jitpack.io" }
}

然后你的 GitHub 存储库作为依赖项:

dependencies {
    // ...
    compile 'com.github.YourUsername:Repo:Release'
}

好处是您不必上传您的图书馆。在幕后,JitPack 将检查 GitHub 中的代码并编译它。当您在 GitHub 上发布新版本时,其他人可以使用它。

还有 a guide 如何准备 Android 项目。