Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.28 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.28 KB

A repository of assorted (Android) libraries.

Android Test Kit is packaged here with a local build that utilized Dagger 1.2.1, as an alternative of Jake Wharton's own Double Espresso, which does not play nicely with Robolectric tests in the same source tree (more information).

To use this repository in your Gradle-based project, include it so:

repositories {
    ...
    maven { url "https://raw.github.com/tommyd3mdi/mvn/master" }
}

Then, provide the dependency like so:

androidTestCompile("com.google.android.apps.common.testing.ui.espresso:espresso:1.1") {
    exclude group: "com.squareup.dagger"
    ...
}

There is also a repackaged version of okio / okhttp that works with Android L build LVP79. Use these artifacts:

compile 'com.squareup.okio:okio:1.0.0-REPACKAGED'

and

compile 'com.squareup.okhttp:okhttp:2.0.0-REPACKAGED-OKIO'

respectively.

Finally, this repository contains a patched version of ACRA 4.5.0 that make it work on Android Devices using ART until ACRA/acra#136 is properly fixed. Include it like this:

compile 'ch.acra:acra:4.5.0-ART-FIX'
  • Thomas