unmock-plugin icon indicating copy to clipboard operation
unmock-plugin copied to clipboard

Gradle plugin to be used in combination with the new unit testing feature of the Gradle Plugin / Android Studio to use real classes for e.g. SparseArray.

Results 13 unmock-plugin issues
Sort by recently updated
recently updated
newest added

My Config (basically default config, except with new android-all dependency): ``` apply plugin: 'de.mobilej.unmock' unMock { keep "android.widget.BaseAdapter" keep "android.widget.ArrayAdapter" keep "android.os.Bundle" keepStartingWith "android.database.MatrixCursor" keep "android.database.AbstractCursor" keep "android.database.CrossProcessCursor" keepStartingWith "android.text.TextUtils"...

JCenter is shutting down soon, please publish unmock to Maven Central More details at https://chris.banes.dev/publishing-to-maven-central/

i have one device - a Nokia 7.1 with Android 10 - that seemingly has an empty album with no name. No idea how it got there. So FishBun crashes...

Hi, When building on CI we sometimes see the following error: ``` Execution failed for task ':app:unMock'. error 06-Apr-2020 10:17:43 > Exception while unmocking ``` I've attached a complete stack...

I am currently seeing this error again after updating to kotlin 1.3.50: ``` * What went wrong: A problem occurred configuring project ':app'. > Could not resolve all files for...

Add plugin to Gradle's plugin repository, so it can be added to the project declaratively like this: ``` plugins { id 'de.mobilej.unmock' version '0.7.3' } ``` This allows the plugin...

Here is the android doc : https://docs.travis-ci.com/user/languages/android/ The setup instructions are here: https://docs.travis-ci.com/user/tutorial/ The `.travis.yml` file will look like this: ```yml language: android android: components: # https://github.com/travis-ci/travis-ci/issues/5036 - tools -...

Make "ABridge" smarter to look for a class implementing the native methods of an unmocked class and call those methods instead. Additionally make it possible to register callbacks for specific...

enhancement