Gander icon indicating copy to clipboard operation
Gander copied to clipboard

Gander is a simple in-app HTTP inspector for Android OkHttp clients. Gander intercepts and persists all HTTP requests and responses inside your application, and provides a UI for inspecting their cont...

Results 9 Gander issues
Sort by recently updated
recently updated
newest added

Greetings, We have been using Gander very happily for the passed few months, but have come across a problem. When updating our App to target sdk 31 (Android 12), we...

Gander-Persistance is using a pre-androidx version of Room. Is there a plan to update to the latest, or if not, at least an androidx version such that projects with Gander...

androidx.core:core update from 1.2.0-alpha02 to 1.3.0-alpha02 causes Notification crash The error most probably caused by new Notification compat changes (https://developer.android.com/jetpack/androidx/releases/core#1.3.0-alpha01) Stack Trace: java.lang.NoClassDefFoundError: androidx.core.graphics.drawable.IconCompat androidx.core.app.NotificationCompat$Action.(NotificationCompat.java:3303) com.ashokvarma.gander.internal.support.NotificationHelper.getClearAction(NotificationHelper.java:126) com.ashokvarma.gander.internal.support.NotificationHelper.show(NotificationHelper.java:107) com.ashokvarma.gander.GanderInterceptor.create(GanderInterceptor.java:287) com.ashokvarma.gander.GanderInterceptor.createTransactionFromRequest(GanderInterceptor.java:215) com.ashokvarma.gander.GanderInterceptor.intercept(GanderInterceptor.java:154)...

java.lang.IllegalArgumentException: PrecomputedText's Parameters don't match the parameters of this TextView.Consider using setTextMetricsParams(precomputedText.getParams()) to override the settings of this TextView: PrecomputedText: {textSize=54.0, textScaleX=1.0, textSkewX=0.0, letterSpacing=0.0, textLocale=[zh_CN_#Hans], typeface=android.graphics.Typeface@e9694cd9, variationSettings=null, elegantTextHeight=false, textDir=android.text.TextDirectionHeuristics$TextDirectionHeuristicInternal@7722aa5, breakStrategy=1,...

As per title, when trying to _share as text_, no text is shared. On a sidenote, _share as curl command_ works. Tested on gander-persistence 3.1.0

enhancement

We get next lint error after integrated Gander in debug app: ``` /Users/android_runner_1/.gradle/caches/transforms-2/files-2.1/5890ee85d59f6c9ade9e3338fa7864d2/res/values/values.xml:39: Error: The resource R.font. appears to be unused [UnusedResources] Search Request and Headers ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` I was...

Hi, I've recently switched on Strict mode in my app with these settings: ``` if (BuildConfig.DEBUG) { StrictMode.setThreadPolicy(StrictMode.ThreadPolicy.Builder() .detectDiskReads() .detectDiskWrites() .detectNetwork() .build()) StrictMode.setVmPolicy(StrictMode.VmPolicy.Builder() .detectLeakedSqlLiteObjects() .detectLeakedClosableObjects() .penaltyLog() .build()) } ``` And...