Gerrit Klasen
Gerrit Klasen
Are there news about this? @silkimen
I can confirm this issue within an Ionic Cordova application: 3.2.2 breaks, 3.2.0 is fine. Data i tried to get was JSON Array: [{...},{...}]
Temporary (hacky) fix for now: Insert this into `\plugins\com-sarriaroman-photoviewer\src\android\PhotoViewer.java` : Imports: ``` import android.os.Build; import android.os.StrictMode; import java.lang.reflect.Method; import java.lang.Exception; ``` onCreate(): ``` if(Build.VERSION.SDK_INT>=24){ try{ Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure"); m.invoke(null);...
@bakrianoo could you resolve?
Is there a hotfix to resolve this?
Treating 0.1 like a string "0.1" made a difference. :)
@nirajhinge any news on that missing Auth instance?
I had the same issue when the css of my `drag-scroll-item`s have **margin**. It seems the margin is not included into the overall calculation. So this could apply to you...