我正在使用android studio 3.2.0 canary-17并点击"重构到androidx"然后构建停止工作。
在这个分支中,它仍在构建:https://github.com/salivaoverflow/AndroidXPlusAarBug/tree/master 它基本上是一个空白的应用程序,并在app / libs中添加了libwebrtc.aar: https://github.com/salivaoverflow/AndroidXPlusAarBug/tree/master/app/libs https://github.com/salivaoverflow/AndroidXPlusAarBug/blob/master/build.gradle#L22 https://github.com/salivaoverflow/AndroidXPlusAarBug/blob/master/app/build.gradle#L37
然而,在我点击"重构到androidx"它停止建立:
为什么不建造?如果我改变
implementation(name:'libwebrtc', ext:'aar')
到
implementation 'org.webrtc:google-webrtc:1.0.23546'
然后构建工作。