Skip to content

Commit

Permalink
Merge pull request #984 from Prime-Holding/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
StanevPrime authored Jan 16, 2025
2 parents b576c0a + ed585ce commit 946e305
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions packages/rx_bloc_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [5.4.1]
* Fix static analysis issue with multiline if statement brackets after linter update

## [5.4.0]
* Added `--enable-feature-onboarding` flag to configure an Onboarding/Registration flow for the project, including resuming Onboarding from a different device
* Fix issue where camera permission was not available on iOS devices for the QR scanner feature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ class AndroidManifestProcessor extends StringProcessor {
if (xmlAttr.elementName == 'intent-filter' ||
xmlAttr.getAncestorWithName('intent-filter',
hasAttributes: ['android:autoVerify']) !=
null) return false;
null) {
return false;
}

return true;
});
Expand Down
2 changes: 1 addition & 1 deletion packages/rx_bloc_cli/lib/src/rx_bloc_cli_constants.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// Indicates the version of the package
const rxBlocCliPackageVersion = '5.4.0';
const rxBlocCliPackageVersion = '5.4.1';

/// Generated project's Android Compile SDK version
const kAndroidCompileSDKVersion = 34;
Expand Down
4 changes: 2 additions & 2 deletions packages/rx_bloc_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: rx_bloc_cli
description: "rx_bloc_cli that enables quick project setup including: flavors, localization [intl], state management [rx_bloc], routing [go_router], design system, analytics [firebase], tests"
version: 5.4.0
version: 5.4.1
repository: https://github.com/Prime-Holding/rx_bloc/tree/master/packages/rx_bloc_cli
issue_tracker: https://github.com/Prime-Holding/rx_bloc/issues
homepage: https://www.primeholding.com
topics: [cli, template, codegen]
topics: [cli, template, codegen, testing, boilerplate]

environment:
sdk: ">=3.2.0 <4.0.0"
Expand Down

0 comments on commit 946e305

Please sign in to comment.