File tree 5 files changed +13
-18
lines changed
5 files changed +13
-18
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ jdk: oraclejdk7
3
3
4
4
env :
5
5
matrix :
6
- - ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
6
+ - ANDROID_TARGET=android-20 ANDROID_ABI=armeabi-v7a
7
7
- ANDROID_TARGET=android-9 ANDROID_ABI=armeabi
8
8
9
9
android :
@@ -14,20 +14,13 @@ android:
14
14
- extra-google-m2repository
15
15
16
16
before_install :
17
- # Coveralls
18
- - git clone git://github.com/blazsolar/coveralls-gradle-plugin.git coveralls-gradle-plugin
19
17
# Emulator
20
18
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
21
19
- emulator -avd test -no-skin -no-audio -no-window &
22
20
23
- install :
24
- - cd coveralls-gradle-plugin
25
- - gradle install
26
- - cd ..
27
-
28
21
before_script :
29
22
- adb wait-for-device
30
23
- adb shell input keyevent 82 &
31
24
32
25
after_success :
33
- - gradle coveralls
26
+ - ./gradlew coveralls
Original file line number Diff line number Diff line change @@ -2,15 +2,17 @@ buildscript {
2
2
repositories {
3
3
mavenCentral()
4
4
mavenLocal()
5
+ maven { url " http://dl.bintray.com/blazsolar/gradle-plugins" }
5
6
}
6
7
7
8
dependencies {
8
9
classpath ' org.kt3k.gradle.plugin:coveralls-gradle-plugin:0.6.2-SNAPSHOT'
10
+ classpath " com.github.blazsolar.gradle:coveralls-gradle-plugin:2.0.1"
9
11
}
10
12
}
11
13
12
14
apply plugin : ' com.android.library'
13
- apply plugin : ' coveralls'
15
+ apply plugin : ' com.github.blazsolar. coveralls'
14
16
15
17
repositories {
16
18
mavenCentral()
@@ -21,12 +23,12 @@ dependencies {
21
23
}
22
24
23
25
android {
24
- compileSdkVersion 19
26
+ compileSdkVersion 20
25
27
buildToolsVersion " 20.0.0"
26
28
27
29
defaultConfig {
28
30
minSdkVersion 9
29
- targetSdkVersion 19
31
+ targetSdkVersion 20
30
32
versionCode Integer . parseInt(project. VERSION_CODE )
31
33
versionName project. VERSION_NAME
32
34
}
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ repositories {
5
5
}
6
6
7
7
android {
8
- compileSdkVersion 19
8
+ compileSdkVersion 20
9
9
buildToolsVersion " 20.0.0"
10
10
11
11
defaultConfig {
12
12
minSdkVersion 9
13
- targetSdkVersion 19
13
+ targetSdkVersion 20
14
14
versionCode 1
15
15
versionName " 1.0"
16
16
}
Original file line number Diff line number Diff line change 1
- include ' :FlowLayout' , ' :FlowLayoutExample'
1
+ include ' :FlowLayout' , ' :FlowLayoutExample' , ' :test '
Original file line number Diff line number Diff line change 17
17
apply plugin : ' com.android.application'
18
18
19
19
android {
20
- compileSdkVersion ' android-L '
20
+ compileSdkVersion 20
21
21
buildToolsVersion " 20.0.0"
22
22
23
23
defaultConfig {
24
24
applicationId " com.wefika.flowlayout.test"
25
25
minSdkVersion 9
26
- targetSdkVersion 19
26
+ targetSdkVersion 20
27
27
versionCode 1
28
28
versionName " 1.0"
29
29
}
@@ -42,5 +42,5 @@ android {
42
42
43
43
dependencies {
44
44
compile fileTree(dir : ' libs' , include : [' *.jar' ])
45
- compile ' com.android.support:appcompat-v7:19 .+'
45
+ compile ' com.android.support:appcompat-v7:20 .+'
46
46
}
You can’t perform that action at this time.
0 commit comments