Failed to execute aapt with cordova

后端 未结 5 1749
小鲜肉
小鲜肉 2020-12-13 18:06

I am working on a cordova project that has been working fine for a while, and suddenly I started to get a very strange error whenever the build reaches \":app:processArm64De

5条回答
  •  执念已碎
    2020-12-13 19:00

    I tried the solution shown here, and now, I built successfully with Android.

    Open file platforms/android/app/build.gradle

    add

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

    after

    dependencies {
        ...
    }
    

提交回复
热议问题