Adding this did not solve my problem
implementation("com.facebook.fresco:nativeimagetranscoder:3.0.0")
添加这个并没有解决我的问题implementation(“com.facebook.fresco:nativeimagetranscoder:3.0.0”)
but this solved my problem with Android Studio with Java in gradle dependencies
但这解决了我使用Android Studio在Gradle依赖中使用Java的问题
implementation("com.facebook.fresco:nativeimagetranscoder") {
version {
strictly("2.6.0")
}
}
Did not now I should be including this lib
现在我不是应该包括这个自由党吗?
com.facebook.fresco:nativeimagetranscoder
更多回答
Can you give general explanation on what you are trying to do~
你能大致解释一下你在做什么吗~
The aar file of 2.6.0 contains libnative-imagetranscoder.so
for all 4 major ABI and has a size of 685KB, version 3.0 does not contain any .so files and has a size of 5KB (and the dependencies have not changed). May be v3.0 is a defect release?
2.6.0的AAR文件包含所有4个主要ABI的libative-Imagetranscoder.so,大小为685KB,而3.0版不包含任何.so文件,大小为5KB(并且依赖项没有更改)。可能v3.0是一个缺陷版本吗?
优秀答案推荐
We can use like
我们可以用LIKE
implementation("com.facebook.fresco:fresco:2.6.0")
更多回答
我是一名优秀的程序员,十分优秀!