-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into #292-build-ipa
- Loading branch information
Showing
37 changed files
with
121 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,6 @@ jobs: | |
- uses: subosito/[email protected] | ||
with: | ||
channel: 'stable' | ||
- run: flutter packages get | ||
- run: flutter analyze | ||
- run: ./tool/install_fvm.sh | ||
- run: fvm flutter packages get | ||
- run: fvm flutter analyze |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,6 @@ jobs: | |
- uses: subosito/[email protected] | ||
with: | ||
channel: 'stable' | ||
- run: flutter packages get | ||
- run: printf 'Test Project\ndescription\ntest_project\nTestProject\ncom.test.project\nn\ny\n' | flutter pub run ./tool/dart_tool/rename_project.dart | ||
- run: ./tool/install_fvm.sh | ||
- run: fvm flutter packages get | ||
- run: printf 'Test Project\ndescription\ntest_project\nTestProject\ncom.test.project\nn\ny\n' | fvm flutter pub run ./tool/setup/dart/rename_project.dart |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,9 @@ jobs: | |
- uses: subosito/[email protected] | ||
with: | ||
channel: 'stable' | ||
- run: flutter packages get | ||
- run: ./tool/install_fvm.sh | ||
- run: printf 'yes\n' | fvm flutter pub run ./tool/dart_tool/strip_boilerplate_project.dart | ||
- run: fvm flutter packages get | ||
- run: printf 'yes\n' | fvm flutter pub run ./tool/setup/dart/strip_boilerplate_project.dart | ||
- run: fvm flutter analyze | ||
- run: fvm flutter test --update-goldens test/screen/home/home_screen_test.dart | ||
- run: fvm flutter test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
- uses: subosito/[email protected] | ||
with: | ||
channel: 'stable' | ||
- run: flutter packages get | ||
- run: ./tool/install_fvm.sh | ||
- run: printf 'no\n' | flutter pub run ./tool/dart_tool/strip_boilerplate_project.dart | ||
- run: flutter analyze | ||
- run: fvm flutter packages get | ||
- run: printf 'no\n' | fvm flutter pub run ./tool/setup/dart/strip_boilerplate_project.dart | ||
- run: fvm flutter analyze |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
{ | ||
"dart.flutterSdkPath": ".fvm/flutter_sdk", | ||
"dart.sdkPath": ".fvm/flutter_sdk/bin/cache/dart-sdk" | ||
"dart.sdkPath": ".fvm/flutter_sdk/bin/cache/dart-sdk", | ||
// Remove .fvm files from search | ||
"search.exclude": { | ||
"**/.fvm": true | ||
}, | ||
// Remove from file watching | ||
"files.watcherExclude": { | ||
"**/.fvm": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
import 'package:flutter_template/util/locale/localization_keys.dart'; | ||
import 'package:icapps_architecture/icapps_architecture.dart'; | ||
|
||
class GeneralNetworkError extends NetworkError { | ||
GeneralNetworkError(super.dioError); | ||
class GeneralError with LocalizedError { | ||
GeneralError() : super(); | ||
|
||
@override | ||
String getLocalizedKey() => LocalizationKeys.errorGeneral; | ||
|
||
@override | ||
String? get getErrorCode => null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
import 'package:flutter_template/util/locale/localization_keys.dart'; | ||
import 'package:icapps_architecture/icapps_architecture.dart'; | ||
|
||
class GeneralError with LocalizedError { | ||
GeneralError() : super(); | ||
class GeneralNetworkError extends NetworkError { | ||
GeneralNetworkError(super.dioException); | ||
|
||
@override | ||
String getLocalizedKey() => LocalizationKeys.errorGeneral; | ||
|
||
@override | ||
String? get getErrorCode => null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.