Code Monkey home page Code Monkey logo

composer-gradle-plugin's Introduction

composer-gradle-plugin

Gradle task type and plugin for running gojuno/composer from gradle.

Installation & Usage

In the appropriate build.gradle file add the jitpack repository and classpath dependency.

buildscript {
    repositories {
        maven { url "https://jitpack.io" }
    }
    dependencies {
        classpath 'com.github.trevjonez.composer-gradle-plugin:plugin:0.6.0'
    }
}

This can be consumed in two ways, via a android variant aware plugin or as a pre-provided task type.

Plugin

apply plugin: 'composer'

The above should be all you need to get started and will create a task for each testable variant in the project.

The tasks that are created will be of the form testFlavorTypeComposer

If you want to limit the variants that get tasks or provide custom configuration you can do so via the composer DSL block:

composer {
  variants "redDebug" // optional, variant names to create composer tasks for. If empty all testable variants will receive a task.
  instrumentationArgument('key1', 'value1') //optional. args that apply to all created tasks
  instrumentationArgument('key2', 'value2')
  instrumentationArgument('keyN', 'valueN')

  configs { 
    redDebug {
      apk 'app/build/outputs/apk/example-debug.apk' //optional override
      testApk 'build/outputs/apk/example-debug-androidTest.apk' //optional override
      shard true //optional. default true
      outputDirectory 'artifacts/composer-output' //optional override. default 'build/reports/composer/redDebug'
      instrumentationArgument('key1', 'value1') //optional
      instrumentationArgument('key2', 'value2')
      instrumentationArgument('keyN', 'valueN')
      verboseOutput false //optional default false
      device 'emulator-5554' //optional, additive
      device 'emulator-5558'
      devices('emulator-5554', 'emulator-5558') //optional, additive
      devicePattern 'somePattern' //optional
      apkInstallTimeout 90 //optional, timeout in seconds default 120
    }
  }
}

Core

Manual task creation looks something like this:

task customTaskName(type: ComposerTask) {
  apk 'app/build/outputs/apk/example-debug.apk' //required
  testApk 'build/outputs/apk/example-debug-androidTest.apk' //required
  shard true //optional
  outputDirectory 'artifacts/composer-output' //optional
  instrumentationArgument('key1', 'value1') //optional
  instrumentationArgument('key2', 'value2')
  instrumentationArgument('keyN', 'valueN')
  verboseOutput false //optional
  device 'emulator-5554' //optional
  device 'emulator-5558'
  devices('emulator-5554', 'emulator-5558') //optional
  devicePattern 'somePattern' //optional
  apkInstallTimeout 90 //optional
}

Dependency Configuration

If you need to use a different version of the composer jar than this plugin uses by default, you can modify the composer configuration with normal gradle strategies. The composer configuration is added to your project once a ComposerTask has been created or the plugin has been applied to the project.

dependencies {
 composer "com.gojuno.composer:composer:0.3.2"
}

Disclaimer

So far this plugin has had light use in the wild and the test cases only verify that composer is ran. Please give any feedback possible if you have issues so I can make things work as expected.

Notes on Compatibility

The plugin is developed against specific version of gradle and the android gradle plugin. In most cases using the latest version of gradle is safe but the minimum supported version of gradle is 4.0 or whatever minimum is mandated by the android gradle plugin.

Composer plugin version Gradle version Android plugin version
0.6.0 4.6 3.1.0

License

Copyright 2017 Trevor Jones

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

composer-gradle-plugin's People

Contributors

trevjonez avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.