AndroidDeveloperLB
AndroidDeveloperLB
@Luosoha Please create a sample project and then share it. Also, here's a sample webp file that should work fine: https://mathiasbynens.be/demo/animated-webp https://mathiasbynens.be/demo/animated-webp-supported.webp
I have this issue too. Not only that, but setting the fontFamily for the app/activity doesn't affect the chip either. @dsn5ft Please try this to notice the bug: 1. Use...
Found a semi-workaround, semi-bug: https://stackoverflow.com/questions/50817881/how-to-change-the-typeface-of-chip-view 1. Create a new style for each font you want to use for chips. Example: ``` @font/roboto @font/aguafina_script ``` 2. Use it in every chip...
I think it's an issue on the IDE. Seems it has the same issue with other old projects... I will try on stable version instead...
I now tried on stable version of the IDE, and got this instead: ``` C:\Users\User\Desktop\AndroidLibrary\library\CMakeLists.txt : C/C++ debug|armeabi-v7a : CMake Error at C:\Users\User\Desktop\AndroidLibrary\library\CMakeLists.txt:13 (add_library): Cannot find source file: ../../stringcare-jni-android-library/lib/sc-native-lib.cpp Tried...
Can you please also explain what changes will we need to perform? Or maybe it's possible already, at least partially? The IDE claims this for the Glide part: > This...
@ArtRoman It says that you should use : implementation "com.github.bumptech.glide:glide:${GLIDE_VERSION}" And you have 4.15.1 instead of 4.16.0. How come?
@ArtRoman OK thank you!
@ArtRoman I'm not the admin of this repository, and not the creator of this thread. But please update the repository guidelines.
@j256 Nullability annotations help both the IDE and us to understand which functions can return null and which function should never return null. This helps with prevention of NPE, helps...