You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add an "if(SDK_INT>22)", " @TargetApi(Build.VERSION_CODES.M)" or change your app miniSDK from 17 to 23 to fix this potential issue.
By the way, "@TargetApi(Build.VERSION_CODES.M)" will be deleted by Android compiler when extracting APKs, so it seems like a not good way to solve those issues.
The text was updated successfully, but these errors were encountered:
We confirm a callback compatibility issue which might threaten the robustness of your app and give a detailed suggestion for you.
In ''MFBResources", you super the framework API "<android.content.res.Resources: int getColor(int,android.content.res.Resources.Theme)>" in "getColor" method as shown in following. But actually, this method is added in API level 23 (https://developer.android.google.cn/reference/android/content/res/Resources?hl=en#getColor(int,%20android.content.res.Resources.Theme)).
So when the app try to initial related Toast on devices level 17 - 23, your app will run with an unpredictable results.
We suggest you:
By the way, "@TargetApi(Build.VERSION_CODES.M)" will be deleted by Android compiler when extracting APKs, so it seems like a not good way to solve those issues.
The text was updated successfully, but these errors were encountered: