Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
judemont committed Apr 9, 2024
1 parent ad0eae5 commit da10908
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
12 changes: 9 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,17 @@ android {
versionName flutterVersionName
}

signingConfigs {
release {
storeFile file("release-key.jks")
storePassword "iu2t7LwN"
keyAlias "my-key"
keyPassword "iu2t7LwN"
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig signingConfigs.release
}
}
}
Expand Down
1 change: 1 addition & 0 deletions lib/widgets/recipe_editor_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ class _RecipeEditorPageState extends State<RecipeEditorPage> {
Uri.tryParse(value ?? "") == null) {
return "Please enter a valid URL";
}
return null;
},
initialValue: widget.initialRecipe?.source,
onSaved: (value) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ packages:
source: hosted
version: "2.1.0"
path:
dependency: transitive
dependency: "direct main"
description:
name: path
sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af"
Expand Down
1 change: 1 addition & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ dependencies:
file_selector: ^1.0.3
flutter:
sdk: flutter
path: ^1.9.0
path_provider: ^2.1.2
recipe_extractor: ^2.3.2
share_plus: ^8.0.3
Expand Down

0 comments on commit da10908

Please sign in to comment.