AndroidDeveloperLB

Results 600 issues of AndroidDeveloperLB

I use Glide this way: ``` Glide.with(applicationContext).asBitmap() .load(imageResId) .override(someWidth, someHeight) .diskCacheStrategy(DiskCacheStrategy.NONE) .addListener(object : RequestListener { override fun onLoadFailed(e: GlideException?, model: Any?, target: com.bumptech.glide.request.target.Target, isFirstResource: Boolean): Boolean { return false }...

I use these: ``` // https://github.com/bumptech/glide https://github.com/zjupure/GlideWebpDecoder // https://bumptech.github.io/glide/doc/download-setup.html#kotlin---ksp https://bumptech.github.io/glide/int/avif.html val glideVersion = "4.16.0" implementation("com.github.zjupure:webpdecoder:2.6.${glideVersion}") implementation("com.github.bumptech.glide:glide:${glideVersion}") ksp ("com.github.bumptech.glide:ksp:${glideVersion}") implementation("com.github.bumptech.glide:avif-integration:${glideVersion}") ``` I've noticed that for some reason, I can't support animation...

Currently what I have is this: ``` val glideVersion = "4.16.0" implementation("com.github.zjupure:webpdecoder:2.6.${glideVersion}") implementation("com.github.bumptech.glide:glide:${glideVersion}") ksp ("com.github.bumptech.glide:ksp:${glideVersion}") ``` I've noticed though that while here it's not updated to new versions, Glide does...

This is a very specific scenario, but I don't get why it occurs: gradle: ``` implementation("com.github.bumptech.glide:glide:4.16.0") ksp("com.github.bumptech.glide:ksp:4.16.0") implementation("com.github.penfeizhou.android.animation:glide-plugin:3.0.4") implementation("com.github.penfeizhou.android.animation:awebp:3.0.4") implementation("com.github.penfeizhou.android.animation:gif:3.0.4") implementation("com.github.penfeizhou.android.animation:avif:3.0.4") ``` Run on API 27, use Glide to load...

As the title says. Suppose I have some resource, and I want to focus at some point of it (x,y coordinates from the original resolution of the image), is it...

### Please answer the following questions for yourself before submitting a question. - [x] I am running the latest version - [x] I checked the [knowledge base](https://adguard.com/kb/) and found no...

Question
Priority: P4

It seems it hasn't gotten new updates for some time. Does it support relatively new file types? For example AVIF, WEBP, JXL, HEIC, APNG , HEIF...

v1.9.7. Steps: 1. Run emulator API 27 2. Put some PNG image file into "Pictures" folder, as for some reason the app accepts files only from there 3. Run the...

``` implementation("com.google.android.gms:play-services-ads:24.3.0") implementation("com.google.ads.mediation:facebook:6.20.0.0") ``` After I've added Facebook/Meta as an ad-network source for Admob mediation, I got this exception for one of [my apps](https://console.firebase.google.com/u/0/project/lwp-plus/crashlytics/app/android:com.lb.lwp_plus/issues/095d9713cffb7aa63a1aea5b516d7968?time=last-seven-days&types=crash&sessionEventKey=68384376007F00014622A3C5D8E49EBE_2088272215937043247) : ``` Fatal Exception: java.util.concurrent.RejectedExecutionException: Task...

In the past we had to add this: ``` com.google.ads.mediation.pangle.PangleMediationAdapter.setGDPRConsent( if (isUsingPersonalizedAds) com.bytedance.sdk.openadsdk.api.PAGConstant.PAGGDPRConsentType.PAG_GDPR_CONSENT_TYPE_CONSENT else com.bytedance.sdk.openadsdk.api.PAGConstant.PAGGDPRConsentType.PAG_GDPR_CONSENT_TYPE_NO_CONSENT) com.google.ads.mediation.pangle.PangleMediationAdapter.setDoNotSell( if (isDataShareAllowed) com.bytedance.sdk.openadsdk.api.PAGConstant.PAGDoNotSellType.PAG_DO_NOT_SELL_TYPE_SELL else com.bytedance.sdk.openadsdk.api.PAGConstant.PAGDoNotSellType.PAG_DO_NOT_SELL_TYPE_NOT_SELL ) ``` Now it's gone on 7.1.0.8.0. Nothing about...