Android 之 去除 Jar 包中 META-INF/DEPENDENCIES.txt

来源:互联网 发布:爱知世博会 编辑:程序博客网 时间:2024/05/21 06:18
andrid{    packagingOptions {            exclude 'META-INF/DEPENDENCIES.txt'            exclude 'META-INF/LICENSE.txt'            exclude 'META-INF/NOTICE.txt'            exclude 'META-INF/NOTICE'            exclude 'META-INF/LICENSE'            exclude 'META-INF/DEPENDENCIES'            exclude 'META-INF/notice.txt'            exclude 'META-INF/license.txt'            exclude 'META-INF/dependencies.txt'            exclude 'META-INF/LGPL2.1'        }}
0 0