Skip to content

Commit

Permalink
feat(android): bump firebase-android-sdk to v26.2.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 authored and Salakar committed Jan 7, 2021
1 parent 7f41b4b commit 73e6820
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.2.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 73e6820

Please sign in to comment.