android-test
android-test copied to clipboard
An extensive framework for testing Android apps
Replace PendingIntent.FLAG_UPDATE_CURRENT with PendingIntent.FLAG_CANCEL_CURRENT in InstrumentationActivityInvoker. FLAG_CANCEL_CURRENT solves the issue where the system caches the extras from the previous intent for the PendingIntent and thus the extras passed to the...
Cleanup min_api=21 as this is the default.
I'm writing the unit tests for MyService, which runs in a separate process `android:process=":ai"`, and the code like this: ```kotlin //The Service: class MyService: Service() { inner class TestBinder() :...