Skip to content Skip to sidebar Skip to footer

App Bundle Build Fails Because Of The Sym_keyboard_feedback_delete.png File

I am trying to build my app using the Android app bundle. The apk gets generated fine but the bundle doesn't due to a 'reserved file or directory name 'res''. Oddly it singles out

Solution 1:

I've figured out the problem. One of the libraries I am using had a dependancy on the Google Android Library » 4.1.1.4, which contains resource file sym_keyboard_feedback_delete.png and others that occupy the res directory.

Excluding this module from the library dependancy has solved this issue.

 exclude group: 'com.google.android'

Solution 2:

It looks like one your dependencies is not compiled as an AAR but instead just as JAR.

Post a Comment for "App Bundle Build Fails Because Of The Sym_keyboard_feedback_delete.png File"