Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.

Commit 166be4a

Browse files
author
Jonny Dimond
committed
Use fixed versions in dependencies
1 parent 7e51b14 commit 166be4a

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Add a dependency for GeoFire to your `gradle.build` file:
6767

6868
```groovy
6969
dependencies {
70-
compile 'com.firebase:geofire:2.0.0+'
70+
compile 'com.firebase:geofire:2.0.0'
7171
}
7272
```
7373

@@ -79,7 +79,7 @@ GeoFire also works with Maven:
7979
<dependency>
8080
<groupId>com.firebase</groupId>
8181
<artifactId>geofire</artifactId>
82-
<version>[2.0.0,)</version>
82+
<version>2.0.0</version>
8383
</dependency>
8484
```
8585

examples/SFVehicles/SF Vehicles/build.gradle

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:2.2.0-alpha1'
6+
classpath 'com.android.tools.build:gradle:2.1.0'
77
}
88
}
99
apply plugin: 'com.android.application'
@@ -18,6 +18,7 @@ android {
1818
buildToolsVersion "23.0.3"
1919

2020
defaultConfig {
21+
applicationId 'com.firebase.sfvehicles'
2122
minSdkVersion 9
2223
targetSdkVersion 23
2324
versionCode 1
@@ -38,16 +39,16 @@ android {
3839
dependencies {
3940
compile fileTree(dir: 'libs', include: ['*.jar'])
4041
// You must install or update the Support Repository through the SDK manager to use this dependency.
41-
compile 'com.android.support:support-v4:23.+'
42+
compile 'com.android.support:support-v4:23.4.0'
4243
// You must install or update the Support Repository through the SDK manager to use this dependency.
43-
compile 'com.android.support:appcompat-v7:23.+'
44+
compile 'com.android.support:appcompat-v7:23.4.0'
45+
// You must install or update the Support Repository through the SDK manager to use this dependency.
46+
compile 'com.google.android.gms:play-services-maps:9.0.2'
4447
// You must install or update the Google Repository through the SDK manager to use this dependency.
45-
// Includes Firebase
46-
compile 'com.google.android.gms:play-services:9.0.2'
47-
// Firebase can also be included with:
48-
//compile 'com.google.firebase:firebase-core:9.0.2'
49-
//compile 'com.google.firebase:firebase-database:9.0.2'
48+
compile 'com.google.firebase:firebase-core:9.0.2'
49+
compile 'com.google.firebase:firebase-database:9.0.2'
50+
5051
// GeoFire
51-
compile 'com.firebase:geofire:2.0.+'
52+
compile 'com.firebase:geofire:2.0.0'
5253
}
5354

examples/SFVehicles/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.0-alpha1'
8+
classpath 'com.android.tools.build:gradle:2.1.0'
99
}
1010
}
1111

0 commit comments

Comments
 (0)