beb412d57c
This will help with pull requests and developers that use AffdexMe as a starting point.
18 lines
464 B
YAML
18 lines
464 B
YAML
sudo: false
|
|
language: android
|
|
android:
|
|
components:
|
|
- tools
|
|
- build-tools-23.0.2
|
|
- android-23
|
|
- extra
|
|
- platform-tools
|
|
|
|
script:
|
|
- wget http://affdex-sdk-dist.s3-website-us-east-1.amazonaws.com/android/download_sdk.html
|
|
# copy the SDK's assets into app/src/main/assets/
|
|
- unzip download_sdk.html "src/main/assets/*" -d app
|
|
# copy the SDK's libs into app/libs/
|
|
- unzip download_sdk.html "libs/*" -d app
|
|
- ./gradlew clean build test
|
|
|