使用ionic cordova build android --release --prod命令打包报有如下错误及解决方法

使用ionic cordova build android --release --prod命令打包报错解决方法

只要把以下内容添加到build-extras.gradle或(build***.gradle)即可

configurations.all {
    resolutionStrategy {
        force 'com.android.support:support-v4:27.1.0'
    }
}

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-17
  • 2021-05-30
  • 2021-04-15
  • 2021-10-17
  • 2021-11-16
  • 2021-10-24
猜你喜欢
  • 2021-05-02
  • 2021-06-14
  • 2021-11-20
  • 2022-12-23
  • 2021-07-04
  • 2021-04-08
相关资源
相似解决方案