Android Studio ignore --core-library flag

前端 未结 6 960
盖世英雄少女心
盖世英雄少女心 2020-12-06 17:40

I have a project, which i want to configure on my computer.

On anothe computer it works, but with old version of Android Studio 0.4.0 whenever I use 0.5.2

Th

6条回答
  •  抹茶落季
    2020-12-06 17:47

    You will have to exclude libraries which are causing this issue. For Example: -

    compile('org.simpleframework:simple-xml:2.7.+'){
        exclude module: 'stax'
        exclude module: 'stax-api'
        exclude module: 'xpp3'
    }
    

提交回复
热议问题