android/source/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 266a0e72e8382f0b72fa7b1127ce8712103aa562
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Thu Nov 30 11:44:01 2023 +0100
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Thu Nov 30 14:18:22 2023 +0100

    android: Remove 'build' dir in 'clean' make target
    
    Add the build dir (`android/source/build`) to the
    directories to be removed when cleaning.
    
    Previously, this was't cleaned, which could be seen
    e.g. by the fact that a fresh build would result in
    this warning being shown
    
        > Task :compileStrippedUIEditingDebugJavaWithJavac
        Note: Some input files use or override a deprecated API.
        Note: Recompile with -Xlint:deprecation for details.
    
    while a
    
        make android.clean
        make android
    
    after a full build wouldn't.
    
    Change-Id: I00a4f8b1fda9fbefb3b8f806b1997eceded117fa
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160145
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/android/source/Makefile b/android/source/Makefile
index 1dc1b42d187b..d934994001d9 100644
--- a/android/source/Makefile
+++ b/android/source/Makefile
@@ -23,7 +23,7 @@ uninstall:
        $(ANDROID_SDK_DIR)/platform-tools/adb uninstall $(ANDROID_PACKAGE_NAME)
 
 clean:
-       rm -rf assets assets_fullUI assets_strippedUI jniLibs jniLibs_debug 
$(OBJLOCAL)
+       rm -rf assets assets_fullUI assets_strippedUI build jniLibs 
jniLibs_debug $(OBJLOCAL)
        rm -f native-code.cxx
        rm -f liboSettings.gradle
 

Reply via email to