File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ env :
2
+ global :
3
+ - NDK_VERSION=r10e
4
+ sudo : false
5
+ language :
6
+ android
7
+ jdk :
8
+ - oraclejdk8
9
+ git :
10
+ submodules : false
11
+ android :
12
+ components :
13
+ - platform-tools
14
+ - tools
15
+
16
+ - build-tools-22.0.1
17
+ - android-22
18
+
19
+ - extra-android-support
20
+ - extra-android-m2repository
21
+
22
+ - sys-img-x86_64-android-22
23
+ before_install :
24
+ -
sed -i 's/[email protected] :/https:\/\/github.com\//' .gitmodules
25
+ - git submodule update --init --recursive
26
+ - wget http://dl.google.com/android/ndk/android-ndk-$NDK_VERSION-linux-x86_64.bin
27
+ - chmod +x android-ndk-$NDK_VERSION-linux-x86_64.bin
28
+ - ./android-ndk-$NDK_VERSION-linux-x86_64.bin | egrep -v ^Extracting
29
+ - export ANDROID_NDK_HOME=`pwd`/android-ndk-$NDK_VERSION
30
+ - export PATH=${PATH}:${ANDROID_NDK_HOME}
31
+
32
+ script :
33
+ - gradle packar -PPACKAGE_VERSION=5.5.5
34
+
You can’t perform that action at this time.
0 commit comments