Commit bc3f6aae by stu

add the other tools needed to test the android app

parent 49911496
......@@ -8,6 +8,12 @@ android_download: "android-sdk_r24.4.1-linux.tgz"
android_checksum: "725bb360f0f7d04eaccff5a2d57abdd49061326d"
# path to installed android sdk
android_home: "/opt/android-sdk-linux"
# individual android build targets to be downloaded via the androind sdk manager
# individual android build targets to be downloaded via the android sdk manager
android_build_targets:
- android-23
# other android dependencies that cannot be tested via the android sdk manager
android_tools:
- platform-tools
- build-tools-23.0.3
- extra-google-m2repository
- extra-android-m2repository
......@@ -37,3 +37,8 @@
shell: "echo 'y' | {{ android_home }}/tools/android update sdk --no-ui --filter {{ ','.join(android_build_targets) }}"
become: yes
become_user: "{{ android_user }}"
# Use the android sdk manager to install the build tools necessary for the edx mobile app
- name: Install Android API levels
shell: "echo 'y' | {{ android_home }}/tools/android update sdk --no-ui --filter {{ ','.join(android_tools) }}"
become: yes
become_user: "{{ android_user }}"
......@@ -28,6 +28,12 @@ dependencies:
android_checksum: "725bb360f0f7d04eaccff5a2d57abdd49061326d"
# path to installed android sdk
android_home: "/opt/android-sdk-linux"
# individual android build targets to be downloaded via the androind sdk manager
# individual android build targets to be downloaded via the android sdk manager
android_build_targets:
- android-23
# other android dependencies that cannot be tested via the android sdk manager
android_tools:
- platform-tools
- build-tools-23.0.3
- extra-google-m2repository
- extra-android-m2repository
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment