Ohad Navon
Ohad Navon
Building the WireMock tests fails with > Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebugAndroidTest'. > > com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK META-INF/LICENSE > File1: /Users/ohad/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.8.0/45b426f7796b741035581a176744d91090e2e6fb/jackson-annotations-2.8.0.jar > File2: /Users/ohad/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.8.5/60d059f5d2930ccd1ef03535b713fd9f933d1ba7/jackson-core-2.8.5.jar > File3:...
Since you can't mock dagger components (they are final), here is a little hack: ``` if (moduleName.startsWith("Dagger")) { moduleName = moduleName.substring(6); for (Class interfaceClass : moduleClass.getInterfaces()) { if (Objects.equals(interfaceClass.getSimpleName(), moduleName))...
`getVideoOrientation()` is invoked from a background thread
``` Compilation warnings encountered: StringUtil.sol:250:5: Warning: This declaration shadows an existing declaration. uint len; ^------^ StringUtil.sol:157:3: The shadowed declaration is here: function len(slice self) internal returns (uint l) { ^...