Satish Kumar
Satish Kumar
Replace your dispatchTouchEvent with below code `@Override public boolean dispatchTouchEvent(MotionEvent ev) { if (touchListener != null) { try { touchListener.getTouchCoordinates(ev); return super.dispatchTouchEvent(ev); } catch (Exception e) { return false; }...
same issue here. In activity its working fine. But for view holder items in recyclerview which is placed inside a fragment, its not not working. Any solution?
yea. im also having the same issue. @shahabiii did u find any solution?
For using it with Java 11, Add this line as mentioned below. tasks.withType(Test) { jacoco.includeNoLocationClasses = true **jacoco.excludes = ['jdk.internal.*'] // Allows it to run on Java 11** }
Add **jacoco.excludes = ['jdk.internal.*']** // Allows it to run on Java 11 **Exmaple:** tasks.withType(Test) { jacoco.includeNoLocationClasses = true jacoco.excludes = ['jdk.internal.*'] // Allows it to run on Java 11 }
apply plugin: 'kotlin-android' Add above line in build.gradle