Skip to content

Commit 2023624

Browse files
authoredJun 28, 2017
Merge pull request #12 from rogerhu/fbu
Use new Google Connectionless APIs
2 parents 7428fa8 + 531e160 commit 2023624

File tree

5 files changed

+191
-220
lines changed

5 files changed

+191
-220
lines changed
 

‎.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: android
2+
jdk:
3+
- oraclejdk8
4+
sudo: false
5+
android:
6+
components:
7+
- tools
8+
- platform-tools
9+
- build-tools-25.0.3
10+
- android-25
11+
licenses:
12+
- android-sdk-license-.+
13+
script:
14+
- "./gradlew build check --daemon"
15+
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results-debug.xml"

‎app/build.gradle

+5-7
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ android {
1818
}
1919
}
2020

21-
apply plugin: 'android-apt'
22-
2321
dependencies {
24-
compile 'com.android.support:appcompat-v7:25.1.1'
25-
compile 'com.google.android.gms:play-services-maps:9.8.0'
26-
compile 'com.google.android.gms:play-services-location:9.8.0'
27-
compile 'com.github.hotchemi:permissionsdispatcher:2.2.0'
28-
apt 'com.github.hotchemi:permissionsdispatcher-processor:2.2.0'
22+
compile 'com.android.support:appcompat-v7:25.3.1'
23+
compile 'com.google.android.gms:play-services-maps:11.0.1'
24+
compile 'com.google.android.gms:play-services-location:11.0.1'
25+
compile 'com.github.hotchemi:permissionsdispatcher:2.4.0'
26+
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:2.4.0'
2927
}

0 commit comments

Comments
 (0)