Results 9 comments of Rstar

How to make traceroute functionality by increasing TTL, i was able to achieve with native ping CLI command but don't know how to do with this lib. i know OS...

@dburckh Thank you for reply, do you have any example or could you make demo lib for this? Also not sure why this app lib throwing exception in Android LOLLIPOP...

I tried that way here is code snippet ``` HighlightingType type=new HighlightingType.Styled(null,getQRVectorColor(Color.parseColor("#66ffffff"))); options.setAnchorsHighlighting(new QrHighlighting(type, type, HighlightingType.None.INSTANCE, 0.6f)); ``` here is Output, getting some margin in version eye ![Screenshot_165803](https://github.com/alexzhirkevich/custom-qr-generator/assets/4948894/e3046919-ffcd-4646-a6f6-98b259fdef45)

Version stable 'com.github.alexzhirkevich:custom-qr-generator:1.6.2' **With code snippet alpha inside color** ``` HighlightingType type=new HighlightingType.Styled(null,getQRVectorColor(Color.parseColor("#66ffffff"))); options.setAnchorsHighlighting(new QrHighlighting(type, type, HighlightingType.None.INSTANCE, 0.6f)); ``` ![Screenshot_165803](https://github.com/alexzhirkevich/custom-qr-generator/assets/4948894/df8e1172-f88c-4897-93a8-cff22cf29dd1) **with old code snippet alpha as separate parameter** options.setAnchorsHighlighting(new QrHighlighting(HighlightingType.Default.INSTANCE,...

The error from production app. Here is my code but i could not reproduce it!. ``` public QrVectorLogo addLogo(final Context context, final String logoPath){ Drawable drawable = buildDrawableFromPath(context,logoPath); float size...

**Again got the same issue in following models** Android 13 Model: Galaxy F62 Android 12 Model: Galaxy M21, Moto G31 Android 11 Model: Galaxy A30s, Redmi Note 10T 5G **Library...

` val logoSize = size * options.logo.size null options.logo.backgroundColor is QrVectorColor.Unspecified -> options.background.color else -> options.logo.backgroundColor }?.createPaint(logoBgSize.toFloat(), logoBgSize.toFloat()) createMainElements(pixelSize, framePath, ballPath, darkPixelPath, lightPixelPath, darkTimingPath, lightTimingPath) val logo = createLogo(logoSize)

Yes but that code from SDK, so @alexzhirkevich can fix it. This is my code ``` public QrVectorLogo addLogo(final Context context, final String logoPath){ Drawable drawable = buildDrawableFromPath(context,logoPath); float size...