Michael Winkler
Michael Winkler
@dlazaro66 Please review this PR and feel free to merge it. Thanks.
It's not bug. The main problem is that the bottom menu does not have any top margin. I think that's the reason why you dont see the elevation.
The problem is at this line: https://github.com/bumptech/glide/blob/fd5e7df9fc8d43522a32b3be966f5895e78a8d15/library/src/main/java/com/bumptech/glide/load/engine/EngineKey.java#L63 @Override ``` public int hashCode() { if (hashCode == 0) { hashCode = model.hashCode(); hashCode = 31 * hashCode + signature.hashCode(); hashCode =...
Sorry for the late response. I didn't solved it yet. Current on vacation. But thanks for the hint. Will look at my source code if it's the same case for...
Okay. So what's to do now? Or is there any working fix to get out of these crashs as described inside the issue?
Just create a new class like this in your project: Kotlin: ``` package com.company.yourapp import com.bumptech.glide.annotation.GlideModule import com.bumptech.glide.module.AppGlideModule @GlideModule class Module : AppGlideModule() ``` And then start to build your...
There should be a table with old and replaced methods/interfaces. That's not really a migration guide. Else it is hard for big projects to search for all new methods/interfaces
Should this: ``` -keep class ** implements com.onesignal.OneSignal$OSRemoteNotificationReceivedHandler { void remoteNotificationReceived(android.content.Context, com.onesignal.OSNotificationReceivedEvent); } ``` not be changed to this: ``` -keep class ** implements com.onesignal.notifications.INotificationServiceExtension{ void onNotificationReceived(com.onesignal.notifications.INotificationReceivedEvent); } ``` for...
Should the order not be: ``` OneSignal.initWithContext(applicationContext) OneSignal.setAppId(ONE_SIGNAl_APP_ID) ``` ?
See issue https://github.com/OneSignal/OneSignal-Flutter-SDK/issues/714