Skip to content

Commit

Permalink
Update dependency (lower crypto package version)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanutapi committed Jul 11, 2020
1 parent 7411fcb commit 25e4070
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.2
- Lower crypto package version to match the flutter_test.

## 1.1.1
- Allows both int and String for MeteorError.error

Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
package io.flutter.plugins;

import androidx.annotation.Keep;
import androidx.annotation.NonNull;

import io.flutter.embedding.engine.FlutterEngine;
import io.flutter.plugin.common.PluginRegistry;

/**
* Generated file. Do not edit.
* This file is generated by the Flutter tool based on the
* plugins that support the Android platform.
*/
@Keep
public final class GeneratedPluginRegistrant {
public static void registerWith(@NonNull FlutterEngine flutterEngine) {
public static void registerWith(PluginRegistry registry) {
if (alreadyRegisteredWith(registry)) {
return;
}
}

private static boolean alreadyRegisteredWith(PluginRegistry registry) {
final String key = GeneratedPluginRegistrant.class.getCanonicalName();
if (registry.hasPlugin(key)) {
return true;
}
registry.registrarFor(key);
return false;
}
}
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: dart_meteor
description: This library make connection between meteor backend and flutter app easily. Design to work seamlessly with StreamBuilder and FutureBuilder.
version: 1.1.1
version: 1.1.2
homepage: https://github.com/tanutapi/dart_meteor

environment:
sdk: '>=2.2.0 <3.0.0'

dependencies:
crypto: ^2.1.5
crypto: ^2.1.4
rxdart: ^0.24.1

dev_dependencies:
Expand Down

0 comments on commit 25e4070

Please sign in to comment.