You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/09/01 22:58:26 UTC

[GitHub] [cordova-android] mikepsinn commented on issue #689: Build errors about drawable since upgrading to v8.0.0

mikepsinn commented on issue #689: Build errors about drawable since upgrading to v8.0.0
URL: https://github.com/apache/cordova-android/issues/689#issuecomment-526960467
 
 
   The config.xml updates didn't work for me, unfortunately, However, adding this to my build-extras.gradle resolved the issue:
   ```
   allprojects {
       configurations.matching { it.name == '_internal_aapt2_binary' }.all { config ->
           config.resolutionStrategy.eachDependency { details ->
               details.useVersion("3.5.0-alpha03-5252756")
           }
       }
   }
   ```
   Then I added a hook like this to copy it to the build folder:
   https://github.com/QuantiModo/quantimodo-android-chrome-ios-web-app/blob/develop/hooks/build-extras-hook.js

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org