11# Samplers
22Samplers is a framework to build mobile citizen science applications.
33
4- # UNDER DEVELOPMENT v0.6
4+ # UNDER DEVELOPMENT v0.7
55
66## Steps to use the framework
77
@@ -14,7 +14,19 @@ Samplers is a framework to build mobile citizen science applications.
1414 - Download the latest ** samplersFramework.aar** from [ here] ( https://github.com/cientopolis/samplers/releases/ )
1515 - Import the library into the project: ** File -> New -> New Module -> Import .JAR/.AAR Package**
1616
17- 3 . Add the necessary dependencies
17+ 3 . Add the google repository
18+ - On your ** project build.gradle**
19+ ``` gradle
20+ allprojects {
21+ repositories {
22+ jcenter()
23+ google()
24+ }
25+ }
26+
27+ ```
28+
29+ 4. Add the necessary dependencies
1830 - On your **application build.gradle**
1931 ```gradle
2032 dependencies {
@@ -26,10 +38,12 @@ Samplers is a framework to build mobile citizen science applications.
2638 compile 'com.android.support:design:24.2.1'
2739 compile 'com.android.support.constraint:constraint-layout:1.0.2'
2840
29- // if you will use maps and location services, add this dependencies
30- // you should use the latest version
31- compile 'com.google.android.gms:play-services-location:10.2.1'
32- compile 'com.google.android.gms:play-services-maps:10.2.1'
41+ // if you will use maps and location services, add this dependencies (you should use the latest version)
42+ compile ('com.google.android.gms:play-services-location:12.0.1')
43+ compile ('com.google.android.gms:play-services-maps:12.0.1')
44+
45+ // if you will use Authentication with Google, add this dependencies (you should use the latest version)
46+ compile ('com.google.android.gms:play-services-auth:12.0.1')
3347
3448 // the framework dependency
3549 compile project(":samplersFramework")
0 commit comments