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

New commits:
commit f5e87b2f183285b2aa985f7effc3039dfcfad967
Author:     Vasily Melenchuk <vasily.melenc...@cib.de>
AuthorDate: Thu Sep 24 07:58:10 2020 +0300
Commit:     Thorsten Behrens <thorsten.behr...@cib.de>
CommitDate: Wed Sep 30 13:31:43 2020 +0200

    android: "make run" works also for debug configuration
    
    In debug mode Android package name is "org.example.libreoffice"
    and "make run" said that there is no such intent to launch.
    
    Change-Id: I6d8eac85dedf3e387a9dd4a228605f79ca0d5aee
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103287
    Tested-by: Jenkins
    Reviewed-by: Thorsten Behrens <thorsten.behr...@cib.de>

diff --git a/android/source/Makefile b/android/source/Makefile
index 1d9ca02d3556..5d6603f94738 100644
--- a/android/source/Makefile
+++ b/android/source/Makefile
@@ -33,7 +33,7 @@ ifeq ($(ENABLE_JAVA),TRUE)
 endif
 
 run:
-       if test "$$ENABLE_ANDROID_LOK" != "TRUE" ; then 
$(ANDROID_SDK_HOME)/platform-tools/adb shell am start -n 
$(ANDROID_PACKAGE_NAME)/.ui.LibreOfficeUIActivity ; fi
+       if test "$$ENABLE_ANDROID_LOK" != "TRUE" ; then 
$(ANDROID_SDK_HOME)/platform-tools/adb shell am start -n 
$(ANDROID_PACKAGE_NAME)/org.libreoffice.ui.LibreOfficeUIActivity ; fi
 
 debugrun:
        @echo "please debug with lldb from within Android Studio, or setup 
ndk-gdb manually (see android/README for details)"
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to