How do I use tools:overrideLibrary in a build.gradle file?

前端 未结 9 1821
慢半拍i
慢半拍i 2020-11-28 18:00

I\'m using the leanback libraries, which require Android 17 or later. However my app supports a minSDK of 16, so I get a build error from gradle saying

Erro         


        
9条回答
  •  一生所求
    2020-11-28 18:38

    it doesn't matter that you declare your minSdk in build.gradle. You have to copy overrideLibrary in your AndroidManifest.xml, as documented here.

    
    
        ...
    
    

    The system automatically ignores the sdkVersion declared in AndroidManifest.xml.

    I hope this solve your problem.

提交回复
热议问题