Shared style configurations and scripts for Automattic Android apps.
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/.
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
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
style-config-android is an Open Source project covered by the GNU General Public License version 2.