Skip to content

Commit

Permalink
Bump firebase_storage Android dependencies to latest (flutter#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroikie committed Oct 9, 2018
1 parent 06cb516 commit 9a080e2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions packages/firebase_storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.4

* Bump Android dependencies to latest.

## 1.0.3

* Added monitoring of StorageUploadTask via `events` stream.
Expand Down
4 changes: 2 additions & 2 deletions packages/firebase_storage/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.android.tools.build:gradle:3.2.0'
}
}

Expand Down Expand Up @@ -40,6 +40,6 @@ android {
disable 'InvalidPackage'
}
dependencies {
api 'com.google.firebase:firebase-storage:16.0.1'
api 'com.google.firebase:firebase-storage:16.0.3'
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ private StorageMetadata buildMetadataFromMap(Map<String, Object> map) {
builder.setContentLanguage((String) map.get("contentLanguage"));
builder.setContentType((String) map.get("contentType"));

@SuppressWarnings("unchecked")
Map<String, String> customMetadata = (Map<String, String>) map.get("customMetadata");
if (customMetadata != null) {
for (String key : customMetadata.keySet()) {
Expand Down
4 changes: 2 additions & 2 deletions packages/firebase_storage/example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.google.gms:google-services:4.0.1'
classpath 'com.android.tools.build:gradle:3.2.0'
classpath 'com.google.gms:google-services:4.1.0'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
2 changes: 1 addition & 1 deletion packages/firebase_storage/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
sdk: flutter
firebase_storage:
path: ../
firebase_core: "^0.2.3"
firebase_core: "^0.2.5+1"
uuid: "^1.0.0"
http: ^0.12.0

Expand Down
2 changes: 1 addition & 1 deletion packages/firebase_storage/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Flutter plugin for Firebase Cloud Storage, a powerful, simple, and
cost-effective object storage service for Android and iOS.
author: Flutter Team <flutter-dev@googlegroups.com>
homepage: https://github.com/flutter/plugins/tree/master/packages/firebase_storage
version: 1.0.3
version: 1.0.4

flutter:
plugin:
Expand Down

0 comments on commit 9a080e2

Please sign in to comment.