This commit actually does not fix the issue, it is just
a (not yet working) suggestion for fixing it:
The Berlin vegan guide needs a preparation phase, which inlucdes
copying some JS files and resources and stuff like that. This
preperation is done via
ant prod.android
in the very root of the Berlin vegan guide git repository.
As you can see in the build.xml file in the root of the repo, the
target prod.android depends on the target prod, which in turn depends
on the target js.minify:
> <target name="js.minify" depends="js.concatenate">
>
> <apply executable="java" parallel="false">
>
> <fileset dir="${build.dir}" includes="index.js"/>
> <arg line="-jar"/>
> <arg path="lib/tools/ycompressor.jar"/>
> <srcfile/>
> <arg line="-o"/>
> <mapper type="glob" from="*.js"
> to="${build.dir}/*-min.js"/>
> <targetfile/>
>
> </apply>
> <delete file="${build.dir}/index.js"/>
>
> </target>
>
> </project>
In the js.minify phase, the ycompressor.jar tool is used to compress
the java script files for mobile use.
By removing all the jar files in the prebuild phase, ycompressor.jar
gets removed, as well. Thus, the ant prod.android step does not work
properly.
I already managed to build this YUI compressor tool by hand from the sources.
But I could not figure out how to correctly add this external (non-Android)
host tool as dependency for this package.
Do you have any hint?
If I do it like this (in this commit) the build fails with:
> Running 'prebuild' commands in build/org.berlin_vegan.bvapp/platforms/android
> Cleaning subproject ../../../srclib/Cordova/framework
> Could not build app org.berlin_vegan.bvapp due to BuildException: Failed to update project at ../../../srclib/YUICompressor
> ==== detail begin ====
> Error: ../../../srclib/YUICompressor is not a valid project (AndroidManifest.xml not found).
Update OctoDroid
This finally builds against source code of GitHub API.
Yet it still pulls ViewPagerIndicator from http://dl.bintray.com:80/populov/maven/ repository, but I don't see what's the problem with that, since that repository contains the source too.
See merge request !604
Add LibreOffice Viewer
Libreoffice Viewer for android is out in a beta form http://blog.documentfoundation.org/2015/01/21/libreoffice-viewer-for-android/
This needs some tarballs to build... all of them are in the git repo that i added to "srclibs".
To build this in my laptop i needed:
libdbus-glib-1-dev
libgconf2-dev
libxt-dev
python3-dev
libxslt1-dev
libarchive-zip-perl
Maybe there are some other dependencies, but i cant search for them this week
See merge request !519
Update Xmp Mod Player to 4.3.1 (73) (WIP)
Currently no native libs on ndk r10d are build locally and i have no clue why. Using the method from the older builds also lead to no native libs so this could be also just a local problem on my NDK r9b/r10d Setup.
This also needs the updated android-support-v4.jar from !498
See merge request !512
GreenBits: new app added
It was verified that it builds with F-Droid Vagrant buildserver.
GreenBits is a new Android wallet by GreenAddress which is native to this platform, as opposed to it.greenaddress.cordova which was built on top Cordova and HTML.
See merge request !517
com.sismics.reader: Updated to newest version and added srclibs
Build, install and starting of the app tested. Functionality untested because of the lack of an sismics server.
Using Aquery @ 0.26.9 instead of 0.26.7 because of this issue in the older versions together with Java7: https://groups.google.com/forum/#!topic/android-query/3HmROsnDJ20
Not quite sure if we also should replace the "drag-sort-listview-0.6.1-SNAPSHOT-AAR.aar" in https://github.com/sismics/reader/tree/master/reader-android/app/libs . This is currently also used in [net.rurik.roman.dashclock](/fdroid/fdroiddata/blob/master/metadata/net.nurik.roman.dashclock.txt)
See merge request !468