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
I went through your app code and found the usages of android:drawableTint in the file fragment_about_us.xml. When running your app at API level <= 23, such an attribute cannot take any effects and induce compatibility issues
To Reproduce
Devices on API level 22
Steps to reproduce the behavior:
Login the app
Click on 'menu' button on the left-top side
Scroll down to 'About Us'
See error
Expected behavior
Icons should be tinted in grey
Screenshots
API level 29
API level 22
To fix the issue, you can use app:drawableTint (located in androidx v1.1.0+) instead of android:drawableTint for backward compatibility.
Device Information (please complete the following information):
Device: Android Emulator
OS: Android 5.1
The text was updated successfully, but these errors were encountered:
Describe the bug
Hi,
I went through your app code and found the usages of android:drawableTint in the file fragment_about_us.xml. When running your app at API level <= 23, such an attribute cannot take any effects and induce compatibility issues
To Reproduce
Devices on API level 22
Steps to reproduce the behavior:
Expected behavior
Icons should be tinted in grey
Screenshots
API level 29
API level 22
To fix the issue, you can use app:drawableTint (located in androidx v1.1.0+) instead of android:drawableTint for backward compatibility.
Device Information (please complete the following information):
The text was updated successfully, but these errors were encountered: