Kodi Community Forum

Full Version: about "make apk-clean"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
when we "make apk", the build script will copy the resource file into a share place

for example, fonts will copied to:

xbmc-deps/arm-linux-androideabi-android-xx/share/xbmc/media/Fonts

but if I added some fonts to source dir, and then I removed it after "make apk"

when next time I run "make apk", the script will not remove the additional fonts from "xbmc-deps/arm-linux-androideabi-android-xx/share/xbmc/media/Fonts"
"make apk" does a clean before running. It ONLY cleans what tools/android/packaging/Makefile creates. The clean of 'share/xbmc/' should happen in the main Makefile. see 'apk: apk-clean install', maybe add a 'install-clean' there to do the clean that is missed.