Skip to content

Commit

Permalink
Merge pull request #812 from givtnl/develop
Browse files Browse the repository at this point in the history
Prod release 4.2.21
  • Loading branch information
TammiLion committed Jun 17, 2024
2 parents f4c1903 + 10f9c7e commit ece37e6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
<uses-permission android:name="android.permission.NFC" />

<queries>
<!-- tel:<phone-number> -->
Expand Down
2 changes: 1 addition & 1 deletion lib/features/auth/repositories/auth_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class AuthRepositoyImpl with AuthRepository {

// bool hasSession
final StreamController<bool> _hasSessionStreamController =
StreamController<bool>();
StreamController<bool>.broadcast();

@override
Stream<bool> hasSessionStream() => _hasSessionStreamController.stream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class EditChildRepositoryImpl with EditChildRepository {

final APIService apiService;

final StreamController<String> _childGUIDController = StreamController();
final StreamController<String> _childGUIDController =
StreamController.broadcast();

@override
Future<bool> editChild(String childGUID, EditChild child) async {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: givt_app
description: Givt App
version: 4.2.20
version: 4.2.21
publish_to: none

environment:
Expand Down

0 comments on commit ece37e6

Please sign in to comment.