Android Gradle Duplicate files copied in APK META-INF/license.txt

前端 未结 5 611
粉色の甜心
粉色の甜心 2020-12-24 01:57

I\'m going to add RESTful Web Service support with Spring to my Android application as described here https://spring.io/guides/gs/consuming-rest-android/.

This is to

5条回答
  •  一整个雨季
    2020-12-24 02:13

    Write below lines in your app level gradle file

    android {
        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'
        }
    }
    

提交回复
热议问题