Android中<uses-library>的理解

这几篇博客讲的比较清楚了:

http://www.dre.vanderbilt.edu/~schmidt/android/android-4.0/out/target/common/docs/doc-comment-check/guide/topics/manifest/uses-library-element.html

https://developer.android.com/guide/topics/manifest/uses-library-element?hl=zh-cn

https://blog.csdn.net/qq_26420489/article/details/52188975

https://blog.csdn.net/qq_26420489/article/details/52188975

简单点:

 这个关键是Android:required的属性值,

如果是true,表示一定要装上这个类库,否则不能运行

如果是false,表示不一定要装上这个类库,也即不装上也能运行

通常来说,这个属性值是false的

原文地址:https://www.cnblogs.com/osttwz/p/12665521.html