mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
89dc3a0e85
This commit marks an important milestone with the addition of the smack-android subproject. Smack is now able to run native on Android without requiring any modifications, which makes the aSmack build environment obsolete. It was necessary to redesign the code for SASL authentication to achieve this. Smack now comes with smack-sasl-provided for SASL implementations that do not rely on additional APIs like javax for platforms where those APIs are not available like Android.
10 lines
491 B
YAML
10 lines
491 B
YAML
language: java
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
|
|
- wget http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz
|
|
- tar xzf android-*
|
|
- export ANDROID_HOME=$PWD/android-sdk-linux
|
|
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
|
|
- echo "y" | android update sdk --filter platform-tools,android-8 --no-ui --force
|