Releases: airbnb/okreplay
Releases · airbnb/okreplay
v1.6.0
- Change AGP and ddmlib to compileOnly instead of implementation (#96)
- Convert Optional to use Kotlin nullable (#97)
- Configure tasks lazily (#99)
- Move to more modern gradle publish plugin, add comment of how to build for publish (#100)
v1.5.0
- Compatibility with Android Gradle Plugin v3.5.0 #92
- Memoize RecordedInteraction conversion #83
- Added support for a quiet mode #68
- Bumped OkHttp version to 3.12.2 #92
- Add unique Gradle tasks per Project flavor #77
v1.4.0
- New #54:
minSdkVersion
is now 14
- Fix #57: Fix NPE in
Charset#forName
- New #61: Non-final
AndroidTapeRoot
- Fix #62: Fix
NoSuchElementException
in gradle plugin
v1.3.0
- New #40 - No longer depends on Guava
- Fix #44 - Http message must be set for OkHttp 3.8
v1.2.0
OkReplay official open source release
Recent changes:
- #32 Add no-op module for release builds
- Prevent adb errors from causing the Gradle tasks to fail
v1.0 Initial Release
Make sure RecorderRule runs before ActivityTestRule (#13)
This was causing some requests at app startup to not be captured because
it would take some time for the RecorderRule to load the yaml file and
the app has already started running in the meantime.
This guarantees that the app only starts after the tape is loaded.