database: set columns name explicitely

ORMLite behaviour differs in release mode. Columns and table names are
by default optimized out, which can break our queries.
This patch sets explicitely names for fields in HistoryCall and
HistoryText classes.
The names of the fields are not guaranteed to be kept if not set
explicitely.
Since there are naming changes, a data migration must be performed.
An incremental database update engine is now available in
DatabaseHelper.java for this purpose.

Change-Id: I30ad25347289dc9862306d2c843511f8235167eb
Tuleap: #629
4 files changed
tree: c8a17323e1d26c5995952b6424fd831fe9fa106e
  1. .tx/
  2. ring-android/
  3. .gitignore
  4. .gitreview
  5. compile.sh
  6. configure.sh
  7. COPYING
  8. gen-env.sh
  9. jenkins-sflphone-android.sh
  10. Makefile
  11. README.md
  12. update-translations.sh
README.md

Ring Android

This repository is meant for the porting of Ring to Android.

Environment

Clone this as a submodule of: https://gerrit-ring.savoirfairelinux.com/#/admin/projects/ring-project to obtain the required Ring daemon source.

You can also manually clone the daemon and override the DAEMON_DIR during compilation

Make sure you have the android-ndk and android-sdk, and you'll want something like this in your .bashrc (or equivalent):

export ANDROID_NDK=$HOME/src/android-ndk
export ANDROID_NDK_ROOT=$ANDROID_NDK
export ANDROID_SDK=$HOME/src/android-sdk-linux
export ANDROID_HOME=$ANDROID_SDK
export PATH=$ANDROID_SDK/platform-tools:${PATH}

install swig-2.0.6 or later and python-2.7 or later on your system

Build instructions

Supported archs are: armeabi-v7a and x86

Example:

ANDROID_ABI="armeabi-v7a x86"

Then:

./compile.sh

If you cloned the daemon in a custom directory (other than ../daemon), you can specify it using an absolute path:

DAEMON_DIR=custom_path ./compile.sh

When all else fails:

git clean -dfx
cd ../daemon (or custom_path)
git clean -dfx

And start again.

Update translations

Update translations using the Transifex client (tx) :

./update-translations.sh

Common issues

  • Makeinfo issue makeinfo: command not found WARNING: 'makeinfo' is missing on your system. Solution: Install texinfo package containing makeinfo dep.

  • Unable to locate tools.jar Solution: Your java installation is not pointing to a JDK. Install one, or make JAVA_HOME point to it.

  • When building the apk error in build-tools error while loading shared libraries: libstdc++.so.6 Solution: Install lib32stdc++6 lib32z1-dev