Skip to content
This repository has been archived by the owner on Feb 11, 2022. It is now read-only.

Release v1.7.0

Compare
Choose a tag to compare
@tasomaniac tasomaniac released this 11 Jan 14:41
· 114 commits to develop since this release

Changes:

  • Fix a bug where installation error marked as a successful build. #104
  • Fixed a bug that caused InstallTask to fail on Nougat devices. #110
  • On Nougat devices, errors in adb shell commands will now cause the build to fail forwarding the error. #110
  • Added a sample showing how to install APKs of all variants in one go. #109
  • Monkey task configuration is adjusted to make more sense. #106

Breaking changes in Monkey configuration

Monkey task configuration is adjusted to make more sense. The following adjustments are needed if custom monkey configs are used.

This sample configuration

android {
    ...
    command {
        events 1000
        categories = ['android.intent.category.ONLY_ME']
    }
}

needs to be changed. There are 2 possible options:

  • Wrap the parameters with a monkey closure. (Notice also that = after categories is not necessary anymore. Moreover, you now provide multiple categories as a comma separated list.)
android {
    ...
    command {
        monkey {
            events 1000
            categories 'android.intent.category.ONLY_ME'
        }
    }
}
  • If you have a simple configuration, you can also prepend the fields with monkey.
android {
    ...
    command {
        monkey.events 1000
    }
}