Skip to content

Commit

Permalink
feat(android): bump firebase-android-sdk to v26.1.0
Browse files Browse the repository at this point in the history
one symbol in underlying native code changed, but this is not breaking,
the previous commit to move firebase-ios-sdk contained the only breaking
change that was visible in the Dart code / Flutter API
  • Loading branch information
mikehardy committed Dec 4, 2020
1 parent 0a96594 commit 07c9c55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FirebaseSDKVersion=25.13.0
FirebaseSDKVersion=26.1.0
android.enableR8=true
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void onComplete(Task<Boolean> task) {
case "RemoteConfig#setDefaults":
{
Map<String, Object> defaults = call.argument("defaults");
FirebaseRemoteConfig.getInstance().setDefaults(defaults);
FirebaseRemoteConfig.getInstance().setDefaultsAsync(defaults);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putStringSet(DEFAULT_PREF_KEY, defaults.keySet()).apply();
result.success(null);
Expand Down

0 comments on commit 07c9c55

Please sign in to comment.