File tree 4 files changed +12
-6
lines changed 4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,18 @@ before_install:
9
9
- sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch
10
10
11
11
# Install Android SDK
12
- - wget http://dl.google.com/android/android-sdk_r21.0.1 -linux.tgz
13
- - tar -zxf android-sdk_r21.0.1 -linux.tgz
12
+ - wget http://dl.google.com/android/android-sdk_r22.6.2 -linux.tgz
13
+ - tar -zxf android-sdk_r22.6.2 -linux.tgz
14
14
- ls
15
15
- export ANDROID_HOME=`pwd`/android-sdk-linux
16
16
- export PATH=${PATH}:${ANDROID_HOME}/tools:${ANDROID_HOME}/platform-tools
17
17
18
+ # Install build-tools
19
+ - wget https://dl-ssl.google.com/android/repository/build-tools_r19.0.3-linux.zip
20
+ - unzip build-tools_r19.0.3-linux.zip -d $ANDROID_HOME
21
+ - mkdir -p $ANDROID_HOME/build-tools/
22
+ - mv $ANDROID_HOME/android-4.4.2 $ANDROID_HOME/build-tools/19.0.1
23
+
18
24
# Install required Android components
19
25
- android list sdk --extended
20
26
# Do you accept the license 'android-sdk-license-bcbbd656' [y/n]:
@@ -31,4 +37,4 @@ before_script:
31
37
- ./wait_for_emulator
32
38
33
39
script :
34
- - mvn clean install
40
+ - mvn clean install -e
Original file line number Diff line number Diff line change 78
78
<plugin >
79
79
<groupId >com.jayway.maven.plugins.android.generation2</groupId >
80
80
<artifactId >android-maven-plugin</artifactId >
81
- <version >3.8.0 </version >
81
+ <version >3.8.2 </version >
82
82
<configuration >
83
83
<sdk >
84
84
<path >${env.ANDROID_HOME}</path >
Original file line number Diff line number Diff line change 26
26
<plugin >
27
27
<groupId >com.jayway.maven.plugins.android.generation2</groupId >
28
28
<artifactId >android-maven-plugin</artifactId >
29
- <version >3.6.0 </version >
29
+ <version >3.8.2 </version >
30
30
</plugin >
31
31
<plugin >
32
32
<artifactId >maven-compiler-plugin</artifactId >
Original file line number Diff line number Diff line change 51
51
<plugin >
52
52
<groupId >com.jayway.maven.plugins.android.generation2</groupId >
53
53
<artifactId >android-maven-plugin</artifactId >
54
- <version >3.8.0 </version >
54
+ <version >3.8.2 </version >
55
55
<configuration >
56
56
<androidManifestFile >${project.basedir} /AndroidManifest.xml</androidManifestFile >
57
57
<assetsDirectory >${project.basedir} /assets</assetsDirectory >
You can’t perform that action at this time.
0 commit comments