26e6bef36c
LibreOffice Online/loleaflet-ui (Upper Sorbian) Currently translated at 100.0% (331 of 331 strings) Change-Id: Ic7117112fb5398a6bbb90ffed3595a7065b08d94 update translations LibreOffice Online/loleaflet-ui (Lower Sorbian) Currently translated at 100.0% (331 of 331 strings) Change-Id: I1e52e565d22f381f22149e8094c5f4118b103279 update translations LibreOffice Online/loleaflet-ui (Slovenian) Currently translated at 99.6% (330 of 331 strings) Change-Id: I28d1c660a1eb784725ad022c0d28b1065f1761c9 update translations LibreOffice Online/loleaflet-ui (Polish) Currently translated at 100.0% (331 of 331 strings) Change-Id: I76b458168831e0e1a4606f25302a6206494306a4 update translations LibreOffice Online/loleaflet-ui (Hungarian) Currently translated at 100.0% (331 of 331 strings) Change-Id: Icd139674057ddd447a8ac7cdfb3655de0ec718c2 update translations LibreOffice Online/loleaflet-ui (Norwegian Bokmål) Currently translated at 100.0% (331 of 331 strings) Change-Id: I6202a192369fc1e4836c18f77897dfe3905d72be Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Change-Id: I805ebd25f445a0ef8e50dcfebc28b8ddc41677d4 Translation: LibreOffice Online/loleaflet-ui Translate-URL: https://weblate.documentfoundation.org/projects/libo_online/loleaflet-ui/ update translations LibreOffice Online/android-lib (Bulgarian) Currently translated at 100.0% (13 of 13 strings) Change-Id: I310350ba48f86ced622f766c0a4dcf9811bef468 update translations LibreOffice Online/loleaflet-help (Ukrainian) Currently translated at 62.2% (259 of 416 strings) Change-Id: I33b1af044f7935e44d3899a7e70e61a4d4930f64 update translations LibreOffice Online/loleaflet-ui (Bulgarian) Currently translated at 100.0% (325 of 325 strings) Change-Id: Iba5ada3c5e5d08435b70486afa3b8820a2fd2f67 update translations LibreOffice Online/loleaflet-ui (Italian) Currently translated at 100.0% (325 of 325 strings) Change-Id: Ia05a1a7fb6d087c7697dde8401db6bb8d2a76073 update translations LibreOffice Online/android-lib (Asturian) Currently translated at 69.2% (9 of 13 strings) Change-Id: If6ac34bfd6c355a8fbc2c72cd56bfe3a579e570d update translations LibreOffice Online/android-lib (Catalan) Currently translated at 100.0% (13 of 13 strings) Change-Id: Ic70964d16cd0987d21f11889a2e8f69a41f9714d update translations LibreOffice Online/android-lib (Spanish) Currently translated at 100.0% (13 of 13 strings) Change-Id: I9bf0cc941f361a4972e27cc294348eea08896110 update translations LibreOffice Online/loleaflet-ui (Slovenian) Currently translated at 100.0% (325 of 325 strings) Change-Id: I798454e86b61234bde56579e1b4e0df5b8490bff update translations LibreOffice Online/loleaflet-ui (Spanish) Currently translated at 100.0% (325 of 325 strings) Change-Id: I1817354ea8328a111b7f665d26a6b25a9da87bf5 update translations LibreOffice Online/loleaflet-ui (Basque) Currently translated at 100.0% (325 of 325 strings) Change-Id: If510c827340e2ef230bb623fbaeadcdc97864d5c update translations LibreOffice Online/android-lib (Slovak) Currently translated at 100.0% (13 of 13 strings) Change-Id: I5f35b1d1d41ccc8c5240f6707f40c3401476d3fa update translations LibreOffice Online/android-lib (German) Currently translated at 100.0% (13 of 13 strings) Change-Id: I3b38a38f410aa084291ad43210599b9e9f183cb3 update translations LibreOffice Online/loleaflet-ui (Slovak) Currently translated at 100.0% (325 of 325 strings) Change-Id: I727f1be681968cccf216621b78c410e35b67a05e update translations LibreOffice Online/loleaflet-ui (German) Currently translated at 100.0% (325 of 325 strings) Change-Id: Id2eb2761b0cd7f1b114c145a59b5b4b2ba61bc76 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/99448 Tested-by: Jenkins Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Andras Timar <andras.timar@collabora.com> |
||
---|---|---|
.. | ||
app | ||
gradle/wrapper | ||
lib | ||
templates | ||
.gitignore | ||
build.gradle.in | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
README | ||
settings.gradle |
The development of this Android app has to be done on Linux, it's currently not possible to build the native parts on Windows. * Compile LibreOffice master for Android. Do this in the folder where you cloned the LibreOffice core (e.g master-android). Create an autogen.input file: --build=x86_64-unknown-linux-gnu --with-android-ndk=/home/$USER/Android/Sdk/ndk-bundle --with-android-sdk=/home/$USER/Android/Sdk --with-distro=LibreOfficeAndroid --enable-sal-log Run ./autogen.sh && make * Build the POCO for Android # clone the poco repository in the same folder where LibreOffice core and online folders are placed. git clone https://github.com/pocoproject/poco poco-android cd poco-android # use the 1.10.1 branch git checkout -b poco-1.10.1 origin/poco-1.10.1 # configure ./configure --config=Android --no-samples --no-tests --omit=Crypto,NetSSL_OpenSSL,Zip,Data,Data/SQLite,Data/ODBC,Data/MySQL,MongoDB,PDF,CppParser,PageCompiler,JWT # make it PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=armeabi-v7a CC=armv7a-linux-androideabi21-clang CXX=armv7a-linux-androideabi21-clang++ SYSLIBS=-static-libstdc++ # install it to /opt/poco-android PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=armeabi-v7a CC=armv7a-linux-androideabi21-clang CXX=armv7a-linux-androideabi21-clang++ SYSLIBS=-static-libstdc++ install INSTALLDIR=/opt/poco-android * 64bit POCO for Android # checkout the 1.10.1 in a different location and apply the following patch: --- a/build/config/Android +++ b/build/config/Android @@ -21,6 +21,11 @@ TOOL = arm-linux-androideabi ARCHFLAGS = -march=armv7-a -mfloat-abi=softfp LINKFLAGS = -Wl,--fix-cortex-a8 else +ifeq ($(ANDROID_ABI),arm64-v8a) +TOOL = aarch64-linux-android +#ARCHFLAGS = -march=armv7-a -mfloat-abi=softfp +#LINKFLAGS = -Wl,--fix-cortex-a8 +else ifeq ($(ANDROID_ABI),x86) TOOL = i686-linux-android ARCHFLAGS = -march=i686 -msse3 -mstackrealign -mfpmath=sse @@ -29,6 +34,7 @@ $(error Invalid ABI specified in ANDROID_ABI) endif endif endif +endif # # Define Tools # configure as above: ./configure --config=Android --no-samples --no-tests --omit=Crypto,NetSSL_OpenSSL,Zip,Data,Data/SQLite,Data/ODBC,Data/MySQL,MongoDB,PDF,CppParser,PageCompiler,JWT # and make it: PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=arm64-v8a CC=aarch64-linux-android21-clang CXX=aarch64-linux-android21-clang++ SYSLIBS=-static-libstdc++ # install PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=arm64-v8a CC=aarch64-linux-android21-clang CXX=aarch64-linux-android21-clang++ SYSLIBS=-static-libstdc++ install INSTALLDIR=/opt/poco-android-64bit * Poco for x86 (if you want to add the support for that into the APK too): # checkout the 1.10.1 in yet another location git clone https://github.com/pocoproject/poco poco-android-x86 cd poco-android-x86 git checkout -b poco-1.10.1 origin/poco-1.10.1 # configure ./configure --config=Android --no-samples --no-tests --omit=Crypto,NetSSL_OpenSSL,Zip,Data,Data/SQLite,Data/ODBC,Data/MySQL,MongoDB,PDF,CppParser,PageCompiler,JWT # build PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=x86 CC=i686-linux-android21-clang CXX=i686-linux-android21-clang++ SYSLIBS=-static-libstdc++ # install PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=x86 CC=i686-linux-android21-clang CXX=i686-linux-android21-clang++ SYSLIBS=-static-libstdc++ install INSTALLDIR=/opt/poco-android-x86 * Poco for x86_64 (if you want to add the support for that into the APK too): # checkout the 1.10.1 in yet another location git clone https://github.com/pocoproject/poco poco-android-x86-64 cd poco-android-x86-64 git checkout -b poco-1.10.1 origin/poco-1.10.1 # and apply the following patch: diff --git a/build/config/Android b/build/config/Android index 9227a3352..1abf6df7c 100644 --- a/build/config/Android +++ b/build/config/Android @@ -25,10 +25,14 @@ ifeq ($(ANDROID_ABI),x86) TOOL = i686-linux-android ARCHFLAGS = -march=i686 -msse3 -mstackrealign -mfpmath=sse else +ifeq ($(ANDROID_ABI),x86_64) +TOOL = x86_64-linux-android +else $(error Invalid ABI specified in ANDROID_ABI) endif endif endif +endif # # Define Tools # configure ./configure --config=Android --no-samples --no-tests --omit=Crypto,NetSSL_OpenSSL,Zip,Data,Data/SQLite,Data/ODBC,Data/MySQL,MongoDB,PDF,CppParser,PageCompiler,JWT # build PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=x86_64 CC=x86_64-linux-android21-clang CXX=x86_64-linux-android21-clang++ SYSLIBS=-static-libstdc++ # install PATH="$PATH":~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin make -j8 ANDROID_ABI=x86_64 CC=x86_64-linux-android21-clang CXX=x86_64-linux-android21-clang++ SYSLIBS=-static-libstdc++ install INSTALLDIR=/opt/poco-android-x86-64 * Configure the online.git (eg. in online-android folder) Don't forget to change --with-lo-builddir in the following: ./autogen.sh && ./configure CC=~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang CXX=~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang++ --host=arm-linux-androideabi --enable-androidapp --with-lo-builddir=/local/libreoffice/master-android --with-poco-includes=/opt/poco-android/include --with-poco-libs=/opt/poco-android/lib --disable-setcap --enable-silent-rules --enable-debug * Build the JavaScript, HTML and CSS files also in the online-android folder # just run 'make' make * Build the actual app + Start Android Studio + Open this 'android' subdir as a project + Build from Android Studio (Build -> Make Project) Or + command line: ./gradlew build == Building 32bit + 64bit combined .apk == + you need to build both a 32bit (armeabi-v7a) and 64bit (arm64-v8a) core + you need to build both a 32bit and 64bit POCO + and then provide paths to both to the ./configure, separated by a colon ':', like: --with-lo-builddir=/local/libreoffice/master-android-release:/local/libreoffice/master-android-release-64bit \ --with-poco-includes=/opt/poco-android/include:/opt/poco-android-64bit/include \ --with-poco-libs=/opt/poco-android/lib:/opt/poco-android-64bit/lib \ == Debugging == To debug the native code in Android Studio, you need the debugging symbols and to setup lldb to actually read & use them. * Add debugging symbols for the modules you are interested in To autogen.input, add something like: --enable-symbols="vcl/ desktop/ sal/ svx/ framework/ sfx2/ tools/ cppu/ cppuhelper/ filter/ comphelper/ Library_sw Library_swd Library_swui" clean the appropriate modules, like make vcl.clean desktop.clean sal.clean svx.clean framework.clean sfx2.clean tools.clean cppu.clean cppuhelper.clean filter.clean comphelper.clean sw.clean and rebuild using 'make'. * Add android/source/obj/local/armeabi-v7a from core.git as a Symbol Directory In Android Studio, choose Run -> Debug... -> Edit Configurations... There go to the Android App -> app, choose the Debugger tab, and: Debug type: Auto (or Dual) Symbol Directories: here add the full path, like /local/libreoffice/master-android/android/source/obj/local/armeabi-v7a This path contains the non-stripped version of the liblo-native-code.so, and the debugger will read the symbols from that one (even if the APK contains the stripped version). *NB* ensure that this is before any internal source directories - since the internal source contains stripped native code. [Alternatively you can add the following to your ~/.lldbinit instead: settings set target.inline-breakpoint-strategy always settings append target.exec-search-paths /local/libreoffice/master-android/android/source/obj/local/armeabi-v7a ] * To use pretty printers for types like OUString, add the following to your ~/.lldbinit: command script import '/local/libreoffice/master-android/solenv/lldb/libreoffice/LO.py' From now on, you will be able to debug directly in the Android Studio debugger. Happy debugging! Note: to re-build your app with a newly compiled libnative-lo code - it is == Tip: How to speed up your core.git build == If you use icecream for parallel building, you can use it for cross-compilation too. # first generate a tarball with the toolchain (once) icecc-create-env ~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang ~/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi21-clang++ And add it and the paths to the compiler as the first things to the autogen.input: CC=icecc [here copy what the output of ./autogen.sh without icecream said for C compiler] CXX=icecc [here copy what the output of ./autogen.sh without icecream said for C++ compiler] ICECC_VERSION=/path/to/the/tarball/generated/above/955ceb546ceb7a5715bf0223ddd788fe.tar.gz --with-parallelism=[amount of cpu threads in your icecream farm] --enable-icecream [...the original autogen.input...] So the result will look something like this: CC=icecc /home/$USER/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang -mthumb -march=armv7-a -mfloat-abi=softfp -mfpu=neon -Wl,--fix-cortex-a8 -gcc-toolchain /home/$USER/Android/Sdk/ndk-bundle/to> CXX=icecc /home/$USER/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++ -mthumb -march=armv7-a -mfloat-abi=softfp -mfpu=neon -Wl,--fix-cortex-a8 -gcc-toolchain /home/$USER/Android/Sdk/ndk-bundle> ICECC_VERSION=/local/libreoffice/android/955ceb546ceb7a5715bf0223ddd788fe.tar.gz --with-parallelism=25 --enable-icecream --build=x86_64-unknown-linux-gnu --with-android-ndk=/home/$USER/Android/Sdk/ndk-bundle --with-android-sdk=/home/$USER/Android/Sdk --with-distro=LibreOfficeAndroid --enable-sal-log