/style-config-android

Shared style configurations and scripts for Automattic Android apps

Primary LanguageGroovyGNU General Public License v2.0GPL-2.0

style-config-android

Shared style configurations and scripts for Automattic Android apps.

Use the library in your project

In your root build.gradle:

buildscript {
    dependencies {
        classpath 'com.automattic.android:fetchstyle:1.1'
    }
}

apply plugin: 'com.automattic.android.fetchstyle'

You can now fetch/update the style config files using:

$ ./gradlew downloadConfigs

The files fetched are contained in config/.

Publish an updated version to your local maven repository

You can bump the version name in the build file: fetchstyle-gradle/build.gradle. After updating the build file, you can build, and publish the library to your local maven repo. That will let you try the new version in your app, for example.

$ ./gradlew assemble test publishToMavenLocal

Publish it to Bintray

When a new version is ready to be published to the remote repository, use the following command to upload it to Bintray:

$ ./gradlew assemble test bintrayUpload -PbintrayUser=FIXME -PbintrayKey=FIXME -PdryRun=false

Apps and libraries using style-config-android:

License

style-config-android is an Open Source project covered by the GNU General Public License version 2.