diff --git a/.vscode/launch.recommended.json b/.vscode/launch.recommended.json
index e7704c981a7..51f11de7fa2 100644
--- a/.vscode/launch.recommended.json
+++ b/.vscode/launch.recommended.json
@@ -1,44 +1,113 @@
{
- // Recommended `launch.json` configuration
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Catalyst Voices [DEV][Debug]",
- "cwd": "catalyst_voices",
- "request": "launch",
- "type": "dart",
- "program": "lib/main_development.dart",
- "args": [
- "--flavor",
- "development",
- ]
- },
- {
- "name": "Catalyst Voices [DEV][Profile]",
- "cwd": "catalyst_voices",
- "request": "launch",
- "type": "dart",
- "flutterMode": "profile",
- "program": "lib/main_development.dart",
- "args": [
- "--flavor",
- "development",
- ]
- },
- {
- "name": "Catalyst Voices [DEV][Release]",
- "cwd": "catalyst_voices",
- "request": "launch",
- "type": "dart",
- "flutterMode": "release",
- "program": "lib/main_development.dart",
- "args": [
- "--flavor",
- "development",
- ]
- }
- ]
-}
\ No newline at end of file
+ // Recommended `launch.json` configuration
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Catalyst Voices [DEV][Debug]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/configs/main_dev.dart",
+ "args": ["--flavor", "dev"]
+ },
+ {
+ "name": "Catalyst Voices [DEV][Profile]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile",
+ "program": "lib/configs/main_dev.dart",
+ "args": ["--flavor", "dev"]
+ },
+ {
+ "name": "Catalyst Voices [DEV][Release]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release",
+ "program": "lib/configs/main_dev.dart",
+ "args": ["--flavor", "dev"]
+ },
+ {
+ "name": "Catalyst Voices [QA][Debug]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/configs/main_qa.dart",
+ "args": ["--flavor", "qa"]
+ },
+ {
+ "name": "Catalyst Voices [QA][Profile]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile",
+ "program": "lib/configs/main_qa.dart",
+ "args": ["--flavor", "qa"]
+ },
+ {
+ "name": "Catalyst Voices [QA][Release]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release",
+ "program": "lib/configs/main_qa.dart",
+ "args": ["--flavor", "qa"]
+ },
+ {
+ "name": "Catalyst Voices [PROD][Debug]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/configs/main_prod.dart",
+ "args": ["--flavor", "prod"]
+ },
+ {
+ "name": "Catalyst Voices [PROD][Profile]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile",
+ "program": "lib/configs/main_prod.dart",
+ "args": ["--flavor", "prod"]
+ },
+ {
+ "name": "Catalyst Voices [PROD][Release]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release",
+ "program": "lib/configs/main_prod.dart",
+ "args": ["--flavor", "prod"]
+ },
+ {
+ "name": "Catalyst Voices [PRE:PROD][Debug]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "program": "lib/configs/main_preprod.dart",
+ "args": ["--flavor", "preprod"]
+ },
+ {
+ "name": "Catalyst Voices [PRE:PROD][Profile]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "profile",
+ "program": "lib/configs/main_preprod.dart",
+ "args": ["--flavor", "preprod"]
+ },
+ {
+ "name": "Catalyst Voices [PRE:PROD][Release]",
+ "cwd": "catalyst_voices",
+ "request": "launch",
+ "type": "dart",
+ "flutterMode": "release",
+ "program": "lib/configs/main_preprod.dart",
+ "args": ["--flavor", "preprod"]
+ }
+ ]
+}
diff --git a/catalyst_voices/README.md b/catalyst_voices/README.md
index e2822747b01..a6ad31ff352 100644
--- a/catalyst_voices/README.md
+++ b/catalyst_voices/README.md
@@ -14,8 +14,8 @@ This repository contains the Catalyst Voices app and packages.
## Requirements
-* flutter: 3.16.1+
-* Dart: 3.2.0+
+* flutter: 3.16.5+
+* Dart: 3.2.3+
* Ruby: 2.5+
* Xcode: 15.0+
* Android Studio: Android Studio Electric Eel | 2022.1.1 +
@@ -59,21 +59,25 @@ melos bootstrap
This project contains 3 flavors:
-* development
-* staging
-* production
+* dev
+* qa
+* preprod
+* prod
To run the desired flavor either use the launch configuration in VSCode/Android Studio or use the following commands:
```sh
# Development
-flutter run --flavor development --target lib/main_development.dart
+flutter run --flavor dev --target lib/configs/main_dev.dart
-# Staging
-flutter run --flavor staging --target lib/main_staging.dart
+# QA
+flutter run --flavor qa --target lib/configs/main_qa.dart
+
+# Pre-Production
+flutter run --flavor prod --target lib/configs/main_preprod.dart
# Production
-flutter run --flavor production --target lib/main_production.dart
+flutter run --flavor prod --target lib/configs/main_prod.dart
```
*\*Catalyst Voices works on Web.
diff --git a/catalyst_voices/android/app/build.gradle b/catalyst_voices/android/app/build.gradle
index 979c82423a6..6d581a2d3b7 100644
--- a/catalyst_voices/android/app/build.gradle
+++ b/catalyst_voices/android/app/build.gradle
@@ -76,17 +76,22 @@ android {
flavorDimensions "default"
productFlavors {
- production {
+ prod {
dimension "default"
applicationIdSuffix ""
manifestPlaceholders = [appName: "Catalyst Voices"]
}
- staging {
+ preprod {
dimension "default"
- applicationIdSuffix ".stg"
- manifestPlaceholders = [appName: "[STG] Catalyst Voices"]
+ applicationIdSuffix ".preprod"
+ manifestPlaceholders = [appName: "[PRE] Catalyst Voices"]
}
- development {
+ qa {
+ dimension "default"
+ applicationIdSuffix ".qa"
+ manifestPlaceholders = [appName: "[QA] Catalyst Voices"]
+ }
+ dev {
dimension "default"
applicationIdSuffix ".dev"
manifestPlaceholders = [appName: "[DEV] Catalyst Voices"]
@@ -113,5 +118,5 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.3'
}
diff --git a/catalyst_voices/android/app/src/staging/ic_launcher-playstore.png b/catalyst_voices/android/app/src/dev/ic_launcher-playstore.png
similarity index 100%
rename from catalyst_voices/android/app/src/staging/ic_launcher-playstore.png
rename to catalyst_voices/android/app/src/dev/ic_launcher-playstore.png
diff --git a/catalyst_voices/android/app/src/dev/res/drawable/ic_launcher_foreground.xml b/catalyst_voices/android/app/src/dev/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 00000000000..d027290c1ae
--- /dev/null
+++ b/catalyst_voices/android/app/src/dev/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,1049 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml b/catalyst_voices/android/app/src/dev/res/mipmap-anydpi-v26/ic_launcher.xml
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml
rename to catalyst_voices/android/app/src/dev/res/mipmap-anydpi-v26/ic_launcher.xml
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml b/catalyst_voices/android/app/src/dev/res/mipmap-anydpi-v26/ic_launcher_round.xml
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml
rename to catalyst_voices/android/app/src/dev/res/mipmap-anydpi-v26/ic_launcher_round.xml
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-hdpi/ic_launcher.png b/catalyst_voices/android/app/src/dev/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-hdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/dev/res/mipmap-hdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-mdpi/ic_launcher.png b/catalyst_voices/android/app/src/dev/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-mdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/dev/res/mipmap-mdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png b/catalyst_voices/android/app/src/dev/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-xhdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/dev/res/mipmap-xhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png b/catalyst_voices/android/app/src/dev/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-xxhdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/dev/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png b/catalyst_voices/android/app/src/dev/res/mipmap-xxxhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-xxxhdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/dev/res/mipmap-xxxhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/development/res/values/ic_launcher_background.xml b/catalyst_voices/android/app/src/dev/res/values/ic_launcher_background.xml
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/values/ic_launcher_background.xml
rename to catalyst_voices/android/app/src/dev/res/values/ic_launcher_background.xml
diff --git a/catalyst_voices/android/app/src/development/res/drawable/ic_launcher_foreground.xml b/catalyst_voices/android/app/src/development/res/drawable/ic_launcher_foreground.xml
deleted file mode 100644
index 0f31f64a1b2..00000000000
--- a/catalyst_voices/android/app/src/development/res/drawable/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/catalyst_voices/android/app/src/main/AndroidManifest.xml b/catalyst_voices/android/app/src/main/AndroidManifest.xml
index c3a9215cfdd..532dbc3770d 100644
--- a/catalyst_voices/android/app/src/main/AndroidManifest.xml
+++ b/catalyst_voices/android/app/src/main/AndroidManifest.xml
@@ -2,6 +2,7 @@
package="io.projectcatalyst.catalyst_voices">
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/main/res/drawable/ic_launcher_foreground.xml b/catalyst_voices/android/app/src/main/res/drawable/ic_launcher_foreground.xml
index 4e37e10724a..d027290c1ae 100644
--- a/catalyst_voices/android/app/src/main/res/drawable/ic_launcher_foreground.xml
+++ b/catalyst_voices/android/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -1,20 +1,1049 @@
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/main/res/ic_launcher-web.png b/catalyst_voices/android/app/src/main/res/ic_launcher-web.png
new file mode 100644
index 00000000000..f42c249b080
Binary files /dev/null and b/catalyst_voices/android/app/src/main/res/ic_launcher-web.png differ
diff --git a/catalyst_voices/android/app/src/main/res/playstore-icon.png b/catalyst_voices/android/app/src/main/res/playstore-icon.png
new file mode 100644
index 00000000000..f9d77ada898
Binary files /dev/null and b/catalyst_voices/android/app/src/main/res/playstore-icon.png differ
diff --git a/catalyst_voices/android/app/src/development/ic_launcher-playstore.png b/catalyst_voices/android/app/src/preprod/ic_launcher-playstore.png
similarity index 100%
rename from catalyst_voices/android/app/src/development/ic_launcher-playstore.png
rename to catalyst_voices/android/app/src/preprod/ic_launcher-playstore.png
diff --git a/catalyst_voices/android/app/src/preprod/res/drawable/ic_launcher_foreground.xml b/catalyst_voices/android/app/src/preprod/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 00000000000..d027290c1ae
--- /dev/null
+++ b/catalyst_voices/android/app/src/preprod/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,1049 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher.xml b/catalyst_voices/android/app/src/preprod/res/mipmap-anydpi-v26/ic_launcher.xml
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher.xml
rename to catalyst_voices/android/app/src/preprod/res/mipmap-anydpi-v26/ic_launcher.xml
diff --git a/catalyst_voices/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher_round.xml b/catalyst_voices/android/app/src/preprod/res/mipmap-anydpi-v26/ic_launcher_round.xml
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/mipmap-anydpi-v26/ic_launcher_round.xml
rename to catalyst_voices/android/app/src/preprod/res/mipmap-anydpi-v26/ic_launcher_round.xml
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-hdpi/ic_launcher.png b/catalyst_voices/android/app/src/preprod/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-hdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/preprod/res/mipmap-hdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-mdpi/ic_launcher.png b/catalyst_voices/android/app/src/preprod/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-mdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/preprod/res/mipmap-mdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png b/catalyst_voices/android/app/src/preprod/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-xhdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/preprod/res/mipmap-xhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png b/catalyst_voices/android/app/src/preprod/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-xxhdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/preprod/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png b/catalyst_voices/android/app/src/preprod/res/mipmap-xxxhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/android/app/src/development/res/mipmap-xxxhdpi/ic_launcher.png
rename to catalyst_voices/android/app/src/preprod/res/mipmap-xxxhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/staging/res/values/ic_launcher_background.xml b/catalyst_voices/android/app/src/preprod/res/values/ic_launcher_background.xml
similarity index 100%
rename from catalyst_voices/android/app/src/staging/res/values/ic_launcher_background.xml
rename to catalyst_voices/android/app/src/preprod/res/values/ic_launcher_background.xml
diff --git a/catalyst_voices/android/app/src/qa/ic_launcher-playstore.png b/catalyst_voices/android/app/src/qa/ic_launcher-playstore.png
new file mode 100644
index 00000000000..45945810ea9
Binary files /dev/null and b/catalyst_voices/android/app/src/qa/ic_launcher-playstore.png differ
diff --git a/catalyst_voices/android/app/src/qa/res/drawable/ic_launcher_foreground.xml b/catalyst_voices/android/app/src/qa/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 00000000000..d027290c1ae
--- /dev/null
+++ b/catalyst_voices/android/app/src/qa/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,1049 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/qa/res/mipmap-anydpi-v26/ic_launcher.xml b/catalyst_voices/android/app/src/qa/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 00000000000..7353dbd1fd8
--- /dev/null
+++ b/catalyst_voices/android/app/src/qa/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/qa/res/mipmap-anydpi-v26/ic_launcher_round.xml b/catalyst_voices/android/app/src/qa/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 00000000000..7353dbd1fd8
--- /dev/null
+++ b/catalyst_voices/android/app/src/qa/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/72.png b/catalyst_voices/android/app/src/qa/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/72.png
rename to catalyst_voices/android/app/src/qa/res/mipmap-hdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/qa/res/mipmap-mdpi/ic_launcher.png b/catalyst_voices/android/app/src/qa/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 00000000000..87a74aeee8f
Binary files /dev/null and b/catalyst_voices/android/app/src/qa/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/catalyst_voices/android/app/src/qa/res/mipmap-xhdpi/ic_launcher.png b/catalyst_voices/android/app/src/qa/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 00000000000..304f9ebfef6
Binary files /dev/null and b/catalyst_voices/android/app/src/qa/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/144.png b/catalyst_voices/android/app/src/qa/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/144.png
rename to catalyst_voices/android/app/src/qa/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/catalyst_voices/android/app/src/qa/res/mipmap-xxxhdpi/ic_launcher.png b/catalyst_voices/android/app/src/qa/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 00000000000..ab32671ccd0
Binary files /dev/null and b/catalyst_voices/android/app/src/qa/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/catalyst_voices/android/app/src/qa/res/values/ic_launcher_background.xml b/catalyst_voices/android/app/src/qa/res/values/ic_launcher_background.xml
new file mode 100644
index 00000000000..c5d5899fdf0
--- /dev/null
+++ b/catalyst_voices/android/app/src/qa/res/values/ic_launcher_background.xml
@@ -0,0 +1,4 @@
+
+
+ #FFFFFF
+
\ No newline at end of file
diff --git a/catalyst_voices/android/app/src/staging/res/drawable/ic_launcher_foreground.xml b/catalyst_voices/android/app/src/staging/res/drawable/ic_launcher_foreground.xml
deleted file mode 100644
index 0f48a6e15f5..00000000000
--- a/catalyst_voices/android/app/src/staging/res/drawable/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/catalyst_voices/integration_test/scenarios/login_scenario.dart b/catalyst_voices/integration_test/scenarios/login_scenario.dart
index 2314326320c..814d47a0b0d 100644
--- a/catalyst_voices/integration_test/scenarios/login_scenario.dart
+++ b/catalyst_voices/integration_test/scenarios/login_scenario.dart
@@ -1,4 +1,4 @@
-import 'package:catalyst_voices/main_development.dart' as app;
+import 'package:catalyst_voices/configs/main_dev.dart' as app;
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
diff --git a/catalyst_voices/ios/Podfile.lock b/catalyst_voices/ios/Podfile.lock
index e41d013debe..6404e6eb675 100644
--- a/catalyst_voices/ios/Podfile.lock
+++ b/catalyst_voices/ios/Podfile.lock
@@ -1,22 +1,35 @@
PODS:
- Flutter (1.0.0)
+ - flutter_secure_storage (6.0.0):
+ - Flutter
- integration_test (0.0.1):
- Flutter
+ - path_provider_foundation (0.0.1):
+ - Flutter
+ - FlutterMacOS
DEPENDENCIES:
- Flutter (from `Flutter`)
+ - flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
- integration_test (from `.symlinks/plugins/integration_test/ios`)
+ - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
EXTERNAL SOURCES:
Flutter:
:path: Flutter
+ flutter_secure_storage:
+ :path: ".symlinks/plugins/flutter_secure_storage/ios"
integration_test:
:path: ".symlinks/plugins/integration_test/ios"
+ path_provider_foundation:
+ :path: ".symlinks/plugins/path_provider_foundation/darwin"
SPEC CHECKSUMS:
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
+ flutter_secure_storage: 23fc622d89d073675f2eaa109381aefbcf5a49be
integration_test: 13825b8a9334a850581300559b8839134b124670
+ path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
PODFILE CHECKSUM: ff9ae414ffbc80ad6f9d2058e299051a15f6eca7
-COCOAPODS: 1.14.2
+COCOAPODS: 1.14.3
diff --git a/catalyst_voices/ios/Runner.xcodeproj/project.pbxproj b/catalyst_voices/ios/Runner.xcodeproj/project.pbxproj
index c71d93f1a60..68d5f16389d 100644
--- a/catalyst_voices/ios/Runner.xcodeproj/project.pbxproj
+++ b/catalyst_voices/ios/Runner.xcodeproj/project.pbxproj
@@ -42,24 +42,39 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
+ 04DBF35C680937E90FD17861 /* Pods-RunnerTests.release-prod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-prod.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-prod.xcconfig"; sourceTree = ""; };
+ 110D21E644358DF4FF7A1651 /* Pods-Runner.debug-qa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-qa.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-qa.xcconfig"; sourceTree = ""; };
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
+ 1D542E73B16F2EFD03178B92 /* Pods-Runner.profile-qa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-qa.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-qa.xcconfig"; sourceTree = ""; };
25F1B71D8B24DA7FDAB9D3DD /* Pods-Runner.debug-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-staging.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-staging.xcconfig"; sourceTree = ""; };
+ 2D16A5D50EE3E1B111EE91D6 /* Pods-Runner.profile-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-dev.xcconfig"; sourceTree = ""; };
+ 2D61113F8BE9B62F4DD11903 /* Pods-Runner.profile-prod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-prod.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-prod.xcconfig"; sourceTree = ""; };
2E0014B094388ADF8FBD708F /* Pods-RunnerTests.release-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-staging.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-staging.xcconfig"; sourceTree = ""; };
31A397FCE8216C1593BE34CF /* Pods-RunnerTests.release-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-production.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-production.xcconfig"; sourceTree = ""; };
337F9E3173CD29E887343C74 /* Pods-Runner.profile-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-staging.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-staging.xcconfig"; sourceTree = ""; };
34CB998BDA3DCF8CA0AE3B67 /* Pods-Runner.release-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-development.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-development.xcconfig"; sourceTree = ""; };
+ 3797E7C5E46FFA9E99ADF798 /* Pods-RunnerTests.profile-preprod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-preprod.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-preprod.xcconfig"; sourceTree = ""; };
3A226CD369F80553777A41F2 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
47CE06DF243826DB794F81DA /* Pods-RunnerTests.profile-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-staging.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-staging.xcconfig"; sourceTree = ""; };
4FACF8FAA8DB4A9997126640 /* Pods-RunnerTests.profile-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-production.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-production.xcconfig"; sourceTree = ""; };
+ 542D386CEB4D50666C4BB91A /* Pods-RunnerTests.debug-prod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-prod.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-prod.xcconfig"; sourceTree = ""; };
58AD41A647D3ECFB0AFDB4C4 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
63BCF9D6A6545EE5FAD7EA0F /* Pods-Runner.debug-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-production.xcconfig"; sourceTree = ""; };
+ 69C11808F46572DE4DBA3848 /* Pods-RunnerTests.profile-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-dev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-dev.xcconfig"; sourceTree = ""; };
+ 6A05BE755BF46EB5C733C879 /* Pods-Runner.debug-preprod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-preprod.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-preprod.xcconfig"; sourceTree = ""; };
7050E1265BDD656EC4D2A451 /* Pods-Runner.release-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-production.xcconfig"; sourceTree = ""; };
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
+ 75BC2E5520DD3E7D84064AAE /* Pods-Runner.release-qa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-qa.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-qa.xcconfig"; sourceTree = ""; };
773F545FCFD04AF1DB122DBF /* Pods-Runner.profile-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-development.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-development.xcconfig"; sourceTree = ""; };
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
+ 7E7B78E916114E5C1F57FE33 /* Pods-RunnerTests.profile-prod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-prod.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-prod.xcconfig"; sourceTree = ""; };
+ 80C4104488BCCAA4D8B223D7 /* Pods-RunnerTests.release-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-dev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-dev.xcconfig"; sourceTree = ""; };
+ 887F4148005171B9B77DE0AE /* Pods-Runner.release-prod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-prod.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-prod.xcconfig"; sourceTree = ""; };
+ 8D191FE27020DF590389CD37 /* Pods-Runner.release-preprod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-preprod.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-preprod.xcconfig"; sourceTree = ""; };
+ 944A13CD719576F1CDA6D74A /* Pods-RunnerTests.debug-preprod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-preprod.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-preprod.xcconfig"; sourceTree = ""; };
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -67,16 +82,25 @@
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
+ 9847E211E5A4CE6EE37E0A95 /* Pods-Runner.debug-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-dev.xcconfig"; sourceTree = ""; };
9AAF575D874B9B76D88C0390 /* Pods-RunnerTests.profile-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-development.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-development.xcconfig"; sourceTree = ""; };
9C0275AC840A610349C5E7C4 /* Pods-RunnerTests.debug-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-development.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-development.xcconfig"; sourceTree = ""; };
9C4311ED66475714D0455C45 /* Pods-Runner.release-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-staging.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-staging.xcconfig"; sourceTree = ""; };
AB0EDBCC67C0C9925389B800 /* Pods-RunnerTests.release-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-development.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-development.xcconfig"; sourceTree = ""; };
AFD5684096F91FC2F28C7D2A /* Pods-RunnerTests.debug-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-production.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-production.xcconfig"; sourceTree = ""; };
+ B10C5FA70C1041F29CE6A68E /* Pods-RunnerTests.debug-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-dev.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-dev.xcconfig"; sourceTree = ""; };
+ B5E3C6949A27EB5D8C58BA43 /* Pods-RunnerTests.release-qa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-qa.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-qa.xcconfig"; sourceTree = ""; };
+ B92FEC54F76EBB576E779B07 /* Pods-RunnerTests.release-preprod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release-preprod.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release-preprod.xcconfig"; sourceTree = ""; };
+ BF4CC1003B733B884CF10F4C /* Pods-Runner.debug-prod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-prod.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-prod.xcconfig"; sourceTree = ""; };
+ C5A9E9568A02B6B88B101B24 /* Pods-Runner.release-dev.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release-dev.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release-dev.xcconfig"; sourceTree = ""; };
C6461643F68A308EF81D55A5 /* Pods-RunnerTests.debug-staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-staging.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-staging.xcconfig"; sourceTree = ""; };
CC54985AB21DFFB05FC233CF /* Pods-Runner.debug-development.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug-development.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug-development.xcconfig"; sourceTree = ""; };
CE6B64BA2AF0F46900FBC49C /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
CE6B64BC2AF0F46900FBC49C /* RunnerTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RunnerTests.m; sourceTree = ""; };
+ DA17BE7AD3C5866321DA51D1 /* Pods-RunnerTests.debug-qa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug-qa.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug-qa.xcconfig"; sourceTree = ""; };
DD126E88F4D7C9F039A51EF3 /* Pods-Runner.profile-production.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-production.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-production.xcconfig"; sourceTree = ""; };
+ E78EC75FAD107D55E0264945 /* Pods-RunnerTests.profile-qa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile-qa.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile-qa.xcconfig"; sourceTree = ""; };
+ FE2DB87A2CCC5A6B200DC816 /* Pods-Runner.profile-preprod.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile-preprod.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile-preprod.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -120,6 +144,30 @@
4FACF8FAA8DB4A9997126640 /* Pods-RunnerTests.profile-production.xcconfig */,
9AAF575D874B9B76D88C0390 /* Pods-RunnerTests.profile-development.xcconfig */,
47CE06DF243826DB794F81DA /* Pods-RunnerTests.profile-staging.xcconfig */,
+ BF4CC1003B733B884CF10F4C /* Pods-Runner.debug-prod.xcconfig */,
+ 6A05BE755BF46EB5C733C879 /* Pods-Runner.debug-preprod.xcconfig */,
+ 9847E211E5A4CE6EE37E0A95 /* Pods-Runner.debug-dev.xcconfig */,
+ 110D21E644358DF4FF7A1651 /* Pods-Runner.debug-qa.xcconfig */,
+ 887F4148005171B9B77DE0AE /* Pods-Runner.release-prod.xcconfig */,
+ 8D191FE27020DF590389CD37 /* Pods-Runner.release-preprod.xcconfig */,
+ C5A9E9568A02B6B88B101B24 /* Pods-Runner.release-dev.xcconfig */,
+ 75BC2E5520DD3E7D84064AAE /* Pods-Runner.release-qa.xcconfig */,
+ 2D61113F8BE9B62F4DD11903 /* Pods-Runner.profile-prod.xcconfig */,
+ FE2DB87A2CCC5A6B200DC816 /* Pods-Runner.profile-preprod.xcconfig */,
+ 2D16A5D50EE3E1B111EE91D6 /* Pods-Runner.profile-dev.xcconfig */,
+ 1D542E73B16F2EFD03178B92 /* Pods-Runner.profile-qa.xcconfig */,
+ 542D386CEB4D50666C4BB91A /* Pods-RunnerTests.debug-prod.xcconfig */,
+ 944A13CD719576F1CDA6D74A /* Pods-RunnerTests.debug-preprod.xcconfig */,
+ B10C5FA70C1041F29CE6A68E /* Pods-RunnerTests.debug-dev.xcconfig */,
+ DA17BE7AD3C5866321DA51D1 /* Pods-RunnerTests.debug-qa.xcconfig */,
+ 04DBF35C680937E90FD17861 /* Pods-RunnerTests.release-prod.xcconfig */,
+ B92FEC54F76EBB576E779B07 /* Pods-RunnerTests.release-preprod.xcconfig */,
+ 80C4104488BCCAA4D8B223D7 /* Pods-RunnerTests.release-dev.xcconfig */,
+ B5E3C6949A27EB5D8C58BA43 /* Pods-RunnerTests.release-qa.xcconfig */,
+ 7E7B78E916114E5C1F57FE33 /* Pods-RunnerTests.profile-prod.xcconfig */,
+ 3797E7C5E46FFA9E99ADF798 /* Pods-RunnerTests.profile-preprod.xcconfig */,
+ 69C11808F46572DE4DBA3848 /* Pods-RunnerTests.profile-dev.xcconfig */,
+ E78EC75FAD107D55E0264945 /* Pods-RunnerTests.profile-qa.xcconfig */,
);
path = Pods;
sourceTree = "";
@@ -435,7 +483,7 @@
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
- 249021D3217E4FDB00AE95B9 /* Profile-production */ = {
+ 249021D3217E4FDB00AE95B9 /* Profile-prod */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -484,9 +532,9 @@
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
- name = "Profile-production";
+ name = "Profile-prod";
};
- 249021D4217E4FDB00AE95B9 /* Profile-production */ = {
+ 249021D4217E4FDB00AE95B9 /* Profile-prod */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
@@ -501,7 +549,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voice";
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -511,9 +559,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Profile-production";
+ name = "Profile-prod";
};
- 97C147031CF9000F007C117D /* Debug-production */ = {
+ 97C147031CF9000F007C117D /* Debug-prod */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -567,9 +615,9 @@
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
- name = "Debug-production";
+ name = "Debug-prod";
};
- 97C147041CF9000F007C117D /* Release-production */ = {
+ 97C147041CF9000F007C117D /* Release-prod */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -620,9 +668,9 @@
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
- name = "Release-production";
+ name = "Release-prod";
};
- 97C147061CF9000F007C117D /* Debug-production */ = {
+ 97C147061CF9000F007C117D /* Debug-prod */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
@@ -648,9 +696,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Debug-production";
+ name = "Debug-prod";
};
- 97C147071CF9000F007C117D /* Release-production */ = {
+ 97C147071CF9000F007C117D /* Release-prod */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
@@ -659,7 +707,7 @@
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 362TXNZD27;
ENABLE_BITCODE = NO;
- FLAVOR_APP_NAME = Voices;
+ FLAVOR_APP_NAME = "[PRE] Voices";
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
@@ -675,11 +723,478 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Release-production";
+ name = "Release-prod";
+ };
+ CE6754F82B39D0E900447170 /* Debug-preprod */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ SDKROOT = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = "Debug-preprod";
+ };
+ CE6754F92B39D0E900447170 /* Debug-preprod */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-preprod";
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = 362TXNZD27;
+ ENABLE_BITCODE = NO;
+ FLAVOR_APP_NAME = "[PRE] Voices";
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.preprod";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = 1;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = "Debug-preprod";
+ };
+ CE6754FA2B39D0E900447170 /* Debug-preprod */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 944A13CD719576F1CDA6D74A /* Pods-RunnerTests.debug-preprod.xcconfig */;
+ buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "Apple Development";
+ CODE_SIGN_STYLE = Automatic;
+ COPY_PHASE_STRIP = NO;
+ CURRENT_PROJECT_VERSION = 1;
+ DEBUG_INFORMATION_FORMAT = dwarf;
+ DEVELOPMENT_TEAM = 362TXNZD27;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_TESTABILITY = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu17;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "DEBUG=1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ GENERATE_INFOPLIST_FILE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 16.6;
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
+ MARKETING_VERSION = 1.0;
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
+ MTL_FAST_MATH = YES;
+ ONLY_ACTIVE_ARCH = YES;
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.RunnerTests";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ TARGETED_DEVICE_FAMILY = 1;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ };
+ name = "Debug-preprod";
+ };
+ CE6754FB2B39D0FA00447170 /* Release-preprod */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = "Release-preprod";
+ };
+ CE6754FC2B39D0FA00447170 /* Release-preprod */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-preprod";
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = 362TXNZD27;
+ ENABLE_BITCODE = NO;
+ FLAVOR_APP_NAME = Voices;
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.preprod";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = 1;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = "Release-preprod";
+ };
+ CE6754FD2B39D0FA00447170 /* Release-preprod */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = B92FEC54F76EBB576E779B07 /* Pods-RunnerTests.release-preprod.xcconfig */;
+ buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "Apple Development";
+ CODE_SIGN_STYLE = Automatic;
+ COPY_PHASE_STRIP = NO;
+ CURRENT_PROJECT_VERSION = 1;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ DEVELOPMENT_TEAM = 362TXNZD27;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu17;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ GENERATE_INFOPLIST_FILE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 16.6;
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
+ MARKETING_VERSION = 1.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.RunnerTests";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ TARGETED_DEVICE_FAMILY = 1;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = "Release-preprod";
+ };
+ CE6754FE2B39D10800447170 /* Profile-preprod */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu99;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 15.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = iphoneos;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = "Profile-preprod";
+ };
+ CE6754FF2B39D10800447170 /* Profile-preprod */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
+ buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-preprod";
+ CLANG_ENABLE_MODULES = YES;
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
+ DEVELOPMENT_TEAM = 362TXNZD27;
+ ENABLE_BITCODE = NO;
+ FLAVOR_APP_NAME = "[PRE] Voices";
+ INFOPLIST_FILE = Runner/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = (
+ "$(inherited)",
+ "@executable_path/Frameworks",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.preprod";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
+ SWIFT_VERSION = 5.0;
+ TARGETED_DEVICE_FAMILY = 1;
+ VERSIONING_SYSTEM = "apple-generic";
+ };
+ name = "Profile-preprod";
+ };
+ CE6755002B39D10800447170 /* Profile-preprod */ = {
+ isa = XCBuildConfiguration;
+ baseConfigurationReference = 3797E7C5E46FFA9E99ADF798 /* Pods-RunnerTests.profile-preprod.xcconfig */;
+ buildSettings = {
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
+ BUNDLE_LOADER = "$(TEST_HOST)";
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ CODE_SIGN_IDENTITY = "Apple Development";
+ CODE_SIGN_STYLE = Automatic;
+ COPY_PHASE_STRIP = NO;
+ CURRENT_PROJECT_VERSION = 1;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ DEVELOPMENT_TEAM = 362TXNZD27;
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu17;
+ GCC_NO_COMMON_BLOCKS = YES;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
+ GCC_WARN_UNUSED_FUNCTION = YES;
+ GCC_WARN_UNUSED_VARIABLE = YES;
+ GENERATE_INFOPLIST_FILE = YES;
+ IPHONEOS_DEPLOYMENT_TARGET = 16.6;
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
+ MARKETING_VERSION = 1.0;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.RunnerTests";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ PROVISIONING_PROFILE_SPECIFIER = "";
+ SDKROOT = iphoneos;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTS_MACCATALYST = NO;
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
+ SWIFT_EMIT_LOC_STRINGS = NO;
+ TARGETED_DEVICE_FAMILY = 1;
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = "Profile-preprod";
};
- CE6B64C02AF0F46900FBC49C /* Debug-production */ = {
+ CE6B64C02AF0F46900FBC49C /* Debug-prod */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = AFD5684096F91FC2F28C7D2A /* Pods-RunnerTests.debug-production.xcconfig */;
+ baseConfigurationReference = 542D386CEB4D50666C4BB91A /* Pods-RunnerTests.debug-prod.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -754,11 +1269,11 @@
TARGETED_DEVICE_FAMILY = 1;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
- name = "Debug-production";
+ name = "Debug-prod";
};
- CE6B64C12AF0F46900FBC49C /* Debug-development */ = {
+ CE6B64C12AF0F46900FBC49C /* Debug-dev */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9C0275AC840A610349C5E7C4 /* Pods-RunnerTests.debug-development.xcconfig */;
+ baseConfigurationReference = B10C5FA70C1041F29CE6A68E /* Pods-RunnerTests.debug-dev.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -833,11 +1348,11 @@
TARGETED_DEVICE_FAMILY = 1;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
- name = "Debug-development";
+ name = "Debug-dev";
};
- CE6B64C22AF0F46900FBC49C /* Debug-staging */ = {
+ CE6B64C22AF0F46900FBC49C /* Debug-qa */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = C6461643F68A308EF81D55A5 /* Pods-RunnerTests.debug-staging.xcconfig */;
+ baseConfigurationReference = DA17BE7AD3C5866321DA51D1 /* Pods-RunnerTests.debug-qa.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -912,11 +1427,11 @@
TARGETED_DEVICE_FAMILY = 1;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
};
- name = "Debug-staging";
+ name = "Debug-qa";
};
- CE6B64C32AF0F46900FBC49C /* Release-production */ = {
+ CE6B64C32AF0F46900FBC49C /* Release-prod */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 31A397FCE8216C1593BE34CF /* Pods-RunnerTests.release-production.xcconfig */;
+ baseConfigurationReference = 04DBF35C680937E90FD17861 /* Pods-RunnerTests.release-prod.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -985,11 +1500,11 @@
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
VALIDATE_PRODUCT = YES;
};
- name = "Release-production";
+ name = "Release-prod";
};
- CE6B64C42AF0F46900FBC49C /* Release-development */ = {
+ CE6B64C42AF0F46900FBC49C /* Release-dev */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = AB0EDBCC67C0C9925389B800 /* Pods-RunnerTests.release-development.xcconfig */;
+ baseConfigurationReference = 80C4104488BCCAA4D8B223D7 /* Pods-RunnerTests.release-dev.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1058,11 +1573,11 @@
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
VALIDATE_PRODUCT = YES;
};
- name = "Release-development";
+ name = "Release-dev";
};
- CE6B64C52AF0F46900FBC49C /* Release-staging */ = {
+ CE6B64C52AF0F46900FBC49C /* Release-qa */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 2E0014B094388ADF8FBD708F /* Pods-RunnerTests.release-staging.xcconfig */;
+ baseConfigurationReference = B5E3C6949A27EB5D8C58BA43 /* Pods-RunnerTests.release-qa.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1131,11 +1646,11 @@
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
VALIDATE_PRODUCT = YES;
};
- name = "Release-staging";
+ name = "Release-qa";
};
- CE6B64C62AF0F46900FBC49C /* Profile-production */ = {
+ CE6B64C62AF0F46900FBC49C /* Profile-prod */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 4FACF8FAA8DB4A9997126640 /* Pods-RunnerTests.profile-production.xcconfig */;
+ baseConfigurationReference = 7E7B78E916114E5C1F57FE33 /* Pods-RunnerTests.profile-prod.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1204,11 +1719,11 @@
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
VALIDATE_PRODUCT = YES;
};
- name = "Profile-production";
+ name = "Profile-prod";
};
- CE6B64C72AF0F46900FBC49C /* Profile-development */ = {
+ CE6B64C72AF0F46900FBC49C /* Profile-dev */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 9AAF575D874B9B76D88C0390 /* Pods-RunnerTests.profile-development.xcconfig */;
+ baseConfigurationReference = 69C11808F46572DE4DBA3848 /* Pods-RunnerTests.profile-dev.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1277,11 +1792,11 @@
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
VALIDATE_PRODUCT = YES;
};
- name = "Profile-development";
+ name = "Profile-dev";
};
- CE6B64C82AF0F46900FBC49C /* Profile-staging */ = {
+ CE6B64C82AF0F46900FBC49C /* Profile-qa */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 47CE06DF243826DB794F81DA /* Pods-RunnerTests.profile-staging.xcconfig */;
+ baseConfigurationReference = E78EC75FAD107D55E0264945 /* Pods-RunnerTests.profile-qa.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1350,9 +1865,9 @@
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
VALIDATE_PRODUCT = YES;
};
- name = "Profile-staging";
+ name = "Profile-qa";
};
- DC2A913225CA15840048C013 /* Debug-development */ = {
+ DC2A913225CA15840048C013 /* Debug-dev */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1406,9 +1921,9 @@
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
- name = "Debug-development";
+ name = "Debug-dev";
};
- DC2A913325CA15840048C013 /* Debug-development */ = {
+ DC2A913325CA15840048C013 /* Debug-dev */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
@@ -1434,9 +1949,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Debug-development";
+ name = "Debug-dev";
};
- DC2A913425CA159D0048C013 /* Release-development */ = {
+ DC2A913425CA159D0048C013 /* Release-dev */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1487,9 +2002,9 @@
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
- name = "Release-development";
+ name = "Release-dev";
};
- DC2A913525CA159D0048C013 /* Release-development */ = {
+ DC2A913525CA159D0048C013 /* Release-dev */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
@@ -1514,9 +2029,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Release-development";
+ name = "Release-dev";
};
- DC2A913625CA15A70048C013 /* Profile-development */ = {
+ DC2A913625CA15A70048C013 /* Profile-dev */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1565,9 +2080,9 @@
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
- name = "Profile-development";
+ name = "Profile-dev";
};
- DC2A913725CA15A70048C013 /* Profile-development */ = {
+ DC2A913725CA15A70048C013 /* Profile-dev */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
@@ -1592,9 +2107,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Profile-development";
+ name = "Profile-dev";
};
- DC2A913825CA16400048C013 /* Debug-staging */ = {
+ DC2A913825CA16400048C013 /* Debug-qa */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1648,24 +2163,24 @@
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
- name = "Debug-staging";
+ name = "Debug-qa";
};
- DC2A913925CA16400048C013 /* Debug-staging */ = {
+ DC2A913925CA16400048C013 /* Debug-qa */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-stg";
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-qa";
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 362TXNZD27;
ENABLE_BITCODE = NO;
- FLAVOR_APP_NAME = "[STG] Voices";
+ FLAVOR_APP_NAME = "[QA] Voices";
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
- PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.stg";
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.qa";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -1676,9 +2191,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Debug-staging";
+ name = "Debug-qa";
};
- DC2A913A25CA16460048C013 /* Release-staging */ = {
+ DC2A913A25CA16460048C013 /* Release-qa */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1729,24 +2244,24 @@
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
- name = "Release-staging";
+ name = "Release-qa";
};
- DC2A913B25CA16460048C013 /* Release-staging */ = {
+ DC2A913B25CA16460048C013 /* Release-qa */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-stg";
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-qa";
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 362TXNZD27;
ENABLE_BITCODE = NO;
- FLAVOR_APP_NAME = "[STG] Voices";
+ FLAVOR_APP_NAME = "[QA] Voices";
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
- PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.stg";
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.qa";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -1756,9 +2271,9 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Release-staging";
+ name = "Release-qa";
};
- DC2A913C25CA164B0048C013 /* Profile-staging */ = {
+ DC2A913C25CA164B0048C013 /* Profile-qa */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -1807,24 +2322,24 @@
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
- name = "Profile-staging";
+ name = "Profile-qa";
};
- DC2A913D25CA164B0048C013 /* Profile-staging */ = {
+ DC2A913D25CA164B0048C013 /* Profile-qa */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-stg";
+ ASSETCATALOG_COMPILER_APPICON_NAME = "AppIcon-qa";
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 362TXNZD27;
ENABLE_BITCODE = NO;
- FLAVOR_APP_NAME = "[STG] Voices";
+ FLAVOR_APP_NAME = "[QA] Voices";
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
- PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.stg";
+ PRODUCT_BUNDLE_IDENTIFIER = "io.projectcatalyst.catalyst-voices.qa";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTS_MACCATALYST = NO;
@@ -1834,7 +2349,7 @@
TARGETED_DEVICE_FAMILY = 1;
VERSIONING_SYSTEM = "apple-generic";
};
- name = "Profile-staging";
+ name = "Profile-qa";
};
/* End XCBuildConfiguration section */
@@ -1842,50 +2357,59 @@
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 97C147031CF9000F007C117D /* Debug-production */,
- DC2A913225CA15840048C013 /* Debug-development */,
- DC2A913825CA16400048C013 /* Debug-staging */,
- 97C147041CF9000F007C117D /* Release-production */,
- DC2A913425CA159D0048C013 /* Release-development */,
- DC2A913A25CA16460048C013 /* Release-staging */,
- 249021D3217E4FDB00AE95B9 /* Profile-production */,
- DC2A913625CA15A70048C013 /* Profile-development */,
- DC2A913C25CA164B0048C013 /* Profile-staging */,
+ 97C147031CF9000F007C117D /* Debug-prod */,
+ CE6754F82B39D0E900447170 /* Debug-preprod */,
+ DC2A913225CA15840048C013 /* Debug-dev */,
+ DC2A913825CA16400048C013 /* Debug-qa */,
+ 97C147041CF9000F007C117D /* Release-prod */,
+ CE6754FB2B39D0FA00447170 /* Release-preprod */,
+ DC2A913425CA159D0048C013 /* Release-dev */,
+ DC2A913A25CA16460048C013 /* Release-qa */,
+ 249021D3217E4FDB00AE95B9 /* Profile-prod */,
+ CE6754FE2B39D10800447170 /* Profile-preprod */,
+ DC2A913625CA15A70048C013 /* Profile-dev */,
+ DC2A913C25CA164B0048C013 /* Profile-qa */,
);
defaultConfigurationIsVisible = 0;
- defaultConfigurationName = "Release-production";
+ defaultConfigurationName = "Release-prod";
};
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 97C147061CF9000F007C117D /* Debug-production */,
- DC2A913325CA15840048C013 /* Debug-development */,
- DC2A913925CA16400048C013 /* Debug-staging */,
- 97C147071CF9000F007C117D /* Release-production */,
- DC2A913525CA159D0048C013 /* Release-development */,
- DC2A913B25CA16460048C013 /* Release-staging */,
- 249021D4217E4FDB00AE95B9 /* Profile-production */,
- DC2A913725CA15A70048C013 /* Profile-development */,
- DC2A913D25CA164B0048C013 /* Profile-staging */,
+ 97C147061CF9000F007C117D /* Debug-prod */,
+ CE6754F92B39D0E900447170 /* Debug-preprod */,
+ DC2A913325CA15840048C013 /* Debug-dev */,
+ DC2A913925CA16400048C013 /* Debug-qa */,
+ 97C147071CF9000F007C117D /* Release-prod */,
+ CE6754FC2B39D0FA00447170 /* Release-preprod */,
+ DC2A913525CA159D0048C013 /* Release-dev */,
+ DC2A913B25CA16460048C013 /* Release-qa */,
+ 249021D4217E4FDB00AE95B9 /* Profile-prod */,
+ CE6754FF2B39D10800447170 /* Profile-preprod */,
+ DC2A913725CA15A70048C013 /* Profile-dev */,
+ DC2A913D25CA164B0048C013 /* Profile-qa */,
);
defaultConfigurationIsVisible = 0;
- defaultConfigurationName = "Release-production";
+ defaultConfigurationName = "Release-prod";
};
CE6B64C92AF0F46900FBC49C /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- CE6B64C02AF0F46900FBC49C /* Debug-production */,
- CE6B64C12AF0F46900FBC49C /* Debug-development */,
- CE6B64C22AF0F46900FBC49C /* Debug-staging */,
- CE6B64C32AF0F46900FBC49C /* Release-production */,
- CE6B64C42AF0F46900FBC49C /* Release-development */,
- CE6B64C52AF0F46900FBC49C /* Release-staging */,
- CE6B64C62AF0F46900FBC49C /* Profile-production */,
- CE6B64C72AF0F46900FBC49C /* Profile-development */,
- CE6B64C82AF0F46900FBC49C /* Profile-staging */,
+ CE6B64C02AF0F46900FBC49C /* Debug-prod */,
+ CE6754FA2B39D0E900447170 /* Debug-preprod */,
+ CE6B64C12AF0F46900FBC49C /* Debug-dev */,
+ CE6B64C22AF0F46900FBC49C /* Debug-qa */,
+ CE6B64C32AF0F46900FBC49C /* Release-prod */,
+ CE6754FD2B39D0FA00447170 /* Release-preprod */,
+ CE6B64C42AF0F46900FBC49C /* Release-dev */,
+ CE6B64C52AF0F46900FBC49C /* Release-qa */,
+ CE6B64C62AF0F46900FBC49C /* Profile-prod */,
+ CE6755002B39D10800447170 /* Profile-preprod */,
+ CE6B64C72AF0F46900FBC49C /* Profile-dev */,
+ CE6B64C82AF0F46900FBC49C /* Profile-qa */,
);
defaultConfigurationIsVisible = 0;
- defaultConfigurationName = "Release-production";
+ defaultConfigurationName = "Release-prod";
};
/* End XCConfigurationList section */
};
diff --git a/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme b/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme
similarity index 93%
rename from catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme
rename to catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme
index 06b6d6cb255..6e150ac826e 100644
--- a/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/staging.xcscheme
+++ b/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/dev.xcscheme
@@ -23,7 +23,7 @@
@@ -42,7 +42,7 @@
+ buildConfiguration = "Debug-dev">
diff --git a/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/preprod.xcscheme b/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/preprod.xcscheme
new file mode 100644
index 00000000000..0a1c09b3e53
--- /dev/null
+++ b/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/preprod.xcscheme
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme b/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/prod.xcscheme
similarity index 98%
rename from catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme
rename to catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/prod.xcscheme
index ac06f41bf9d..d09a1cf09db 100644
--- a/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/production.xcscheme
+++ b/catalyst_voices/ios/Runner.xcodeproj/xcshareddata/xcschemes/prod.xcscheme
@@ -42,7 +42,7 @@
@@ -42,7 +42,7 @@
+ buildConfiguration = "Debug-qa">
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png
index e63e9a36dfc..bba0d49d1f5 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/100.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png
index 36e9d2bfbf2..1b3ab95be0e 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/1024.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png
index 6c54c8fe60d..4aff7e053f2 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/114.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png
index c1511104d1f..dc5ecdac1b0 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/120.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png
index 929173e4977..c6b5b29d8ba 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/144.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png
index 8f69a6dc5a3..8576baffd95 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/152.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png
index 6f1f5265cb3..02ba74fce43 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/167.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png
index a9f4a058992..f26f8f7ee27 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/180.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png
index 5dfa8acaf11..f0fc10df24f 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/20.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png
index cc6d8cec9d8..b7dc01b66a4 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/29.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png
index a29dffdd76c..826cfd4847f 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/40.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png
index 9114e73de25..6ddb7c0eabc 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/50.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png
index 4fc013dbfae..3f598e8ba77 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/57.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png
index 67f251254fa..9a21f412c59 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/58.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png
index 27409f9d45f..89b644528c3 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/60.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png
index 5d40c20ba90..9ade75a435c 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/72.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png
index 36802bce4a7..312161f077f 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/76.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png
index 78a38d20db5..a1c30a3ccd7 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/80.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png
index 03e602639f7..384225c8644 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-dev.appiconset/87.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/100.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/100.png
new file mode 100644
index 00000000000..55f5850ce10
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/100.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/1024.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/1024.png
new file mode 100644
index 00000000000..bbd46175308
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/1024.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/114.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/114.png
new file mode 100644
index 00000000000..f25dc699f53
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/114.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/120.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/120.png
new file mode 100644
index 00000000000..011fe11c8bb
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/120.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/144.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/144.png
new file mode 100644
index 00000000000..3f901c94f3e
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/144.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/152.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/152.png
new file mode 100644
index 00000000000..d334d7a60f5
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/152.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/167.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/167.png
new file mode 100644
index 00000000000..7e5f78e57b2
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/167.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/180.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/180.png
new file mode 100644
index 00000000000..033f9ffb177
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/180.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/20.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/20.png
new file mode 100644
index 00000000000..a4a83d06f1a
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/20.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/29.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/29.png
new file mode 100644
index 00000000000..d63717df0ee
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/29.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/40.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/40.png
new file mode 100644
index 00000000000..4d99bcbe881
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/40.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/50.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/50.png
new file mode 100644
index 00000000000..5c82b90144d
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/50.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/57.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/57.png
new file mode 100644
index 00000000000..47277b9e082
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/57.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/58.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/58.png
new file mode 100644
index 00000000000..ec4c9b1a001
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/58.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/60.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/60.png
new file mode 100644
index 00000000000..d7833b188b3
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/60.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/72.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/72.png
new file mode 100644
index 00000000000..3c19b9248e4
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/72.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/76.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/76.png
new file mode 100644
index 00000000000..a0641d8562d
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/76.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/80.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/80.png
new file mode 100644
index 00000000000..7360c505313
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/80.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/87.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/87.png
new file mode 100644
index 00000000000..8e089d679ef
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/87.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/Contents.json
similarity index 100%
rename from catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/Contents.json
rename to catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-preprod.appiconset/Contents.json
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/100.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/100.png
new file mode 100644
index 00000000000..aa57345600f
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/100.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/1024.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/1024.png
new file mode 100644
index 00000000000..753958175a8
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/1024.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/114.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/114.png
new file mode 100644
index 00000000000..4770eb20901
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/114.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/120.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/120.png
new file mode 100644
index 00000000000..69bc85a5748
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/120.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/144.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/144.png
new file mode 100644
index 00000000000..17f8e157c66
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/144.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/152.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/152.png
new file mode 100644
index 00000000000..5479cbff6c2
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/152.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/167.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/167.png
new file mode 100644
index 00000000000..edd3270a972
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/167.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/180.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/180.png
new file mode 100644
index 00000000000..88fa0e295f3
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/180.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/20.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/20.png
new file mode 100644
index 00000000000..a7b791c2647
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/20.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/29.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/29.png
new file mode 100644
index 00000000000..f3cd0023fd8
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/29.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/40.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/40.png
new file mode 100644
index 00000000000..df2f23afeb4
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/40.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/50.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/50.png
new file mode 100644
index 00000000000..f07e5eff053
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/50.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/57.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/57.png
new file mode 100644
index 00000000000..aa4bc374773
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/57.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/58.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/58.png
new file mode 100644
index 00000000000..ccfae424918
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/58.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/60.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/60.png
new file mode 100644
index 00000000000..85d4584b12a
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/60.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/72.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/72.png
new file mode 100644
index 00000000000..259a69d750c
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/72.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/76.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/76.png
new file mode 100644
index 00000000000..18263fae70a
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/76.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/80.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/80.png
new file mode 100644
index 00000000000..33d5c9a8e5f
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/80.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/87.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/87.png
new file mode 100644
index 00000000000..0ed51c28cee
Binary files /dev/null and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/87.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/Contents.json b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/Contents.json
new file mode 100644
index 00000000000..65b74d7ef11
--- /dev/null
+++ b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-qa.appiconset/Contents.json
@@ -0,0 +1 @@
+{"images":[{"size":"60x60","expected-size":"180","filename":"180.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"40x40","expected-size":"80","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"40x40","expected-size":"120","filename":"120.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"60x60","expected-size":"120","filename":"120.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"57x57","expected-size":"57","filename":"57.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"1x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"29x29","expected-size":"29","filename":"29.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"1x"},{"size":"29x29","expected-size":"87","filename":"87.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"57x57","expected-size":"114","filename":"114.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"20x20","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"2x"},{"size":"20x20","expected-size":"60","filename":"60.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"iphone","scale":"3x"},{"size":"1024x1024","filename":"1024.png","expected-size":"1024","idiom":"ios-marketing","folder":"Assets.xcassets/AppIcon.appiconset/","scale":"1x"},{"size":"40x40","expected-size":"80","filename":"80.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"72x72","expected-size":"72","filename":"72.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"76x76","expected-size":"152","filename":"152.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"50x50","expected-size":"100","filename":"100.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"29x29","expected-size":"58","filename":"58.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"76x76","expected-size":"76","filename":"76.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"29x29","expected-size":"29","filename":"29.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"50x50","expected-size":"50","filename":"50.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"72x72","expected-size":"144","filename":"144.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"40x40","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"83.5x83.5","expected-size":"167","filename":"167.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"},{"size":"20x20","expected-size":"20","filename":"20.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"1x"},{"size":"20x20","expected-size":"40","filename":"40.png","folder":"Assets.xcassets/AppIcon.appiconset/","idiom":"ipad","scale":"2x"}]}
\ No newline at end of file
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png
deleted file mode 100644
index 0bace8b9050..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/100.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png
deleted file mode 100644
index 7e30b43ef7a..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/1024.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png
deleted file mode 100644
index 3fd8230e927..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/114.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png
deleted file mode 100644
index 949b706195f..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/120.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png
deleted file mode 100644
index b3fc2d1a2bc..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/152.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png
deleted file mode 100644
index ffefafc82e8..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/167.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png
deleted file mode 100644
index bbbe37bac23..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/180.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png
deleted file mode 100644
index 2c9dc0fa3b6..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/20.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png
deleted file mode 100644
index cf0aa15481c..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/29.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png
deleted file mode 100644
index de983be49d7..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/40.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png
deleted file mode 100644
index 8daee975bed..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/50.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png
deleted file mode 100644
index 0432e8651e1..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/57.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png
deleted file mode 100644
index af2b73eb83e..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/58.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png
deleted file mode 100644
index b8fe2e5ad02..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/60.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png
deleted file mode 100644
index a6bdf09053e..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/76.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png
deleted file mode 100644
index 1739863acf8..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/80.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png
deleted file mode 100644
index e6155e6bd3c..00000000000
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon-stg.appiconset/87.png and /dev/null differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png
index 1932b2a047a..20b5fd6f1de 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/100.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png
index 8a227be7ebc..ca629e6e210 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/1024.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png
index f577533d518..43873ac9d6a 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/114.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png
index 7faea20a465..19f748d4ff4 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/120.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png
index 301cffcb47e..33966ac0507 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/144.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png
index 73d1017fd2a..8b1358d5af2 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/152.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png
index 7f3180908b5..9c8511ecc12 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/167.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png
index 96a7298370f..92672458de9 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/180.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png
index 49429a3c0eb..ea9bcc3cef3 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/20.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png
index fcf3f713f6d..c8df246a416 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/29.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png
index ff1a730f91e..327b9f9616a 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/40.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png
index 7d0ed5874a9..e8c5703e164 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/50.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png
index 708f0a75b2a..2c28bc383ba 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/57.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png
index 69e33b8ad7a..835d6080f9f 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/58.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png
index 1c2c0e66ed5..49a466aa895 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/60.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png
index 98b9d1d342b..73505528764 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/72.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png
index 025e6a7a1de..85adb69f03c 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/76.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png
index ca0764339a9..cd4baedf49b 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/80.png differ
diff --git a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png
index 7238e8a1d01..4e17393195f 100644
Binary files a/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png and b/catalyst_voices/ios/Runner/Assets.xcassets/AppIcon.appiconset/87.png differ
diff --git a/catalyst_voices/lib/app_bloc_observer.dart b/catalyst_voices/lib/configs/app_bloc_observer.dart
similarity index 100%
rename from catalyst_voices/lib/app_bloc_observer.dart
rename to catalyst_voices/lib/configs/app_bloc_observer.dart
diff --git a/catalyst_voices/lib/bootstrap.dart b/catalyst_voices/lib/configs/bootstrap.dart
similarity index 87%
rename from catalyst_voices/lib/bootstrap.dart
rename to catalyst_voices/lib/configs/bootstrap.dart
index 527d3b963f1..dc8ed07db07 100644
--- a/catalyst_voices/lib/bootstrap.dart
+++ b/catalyst_voices/lib/configs/bootstrap.dart
@@ -1,7 +1,7 @@
import 'dart:async';
import 'dart:developer';
-import 'package:catalyst_voices/app_bloc_observer.dart';
+import 'package:catalyst_voices/configs/app_bloc_observer.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
diff --git a/catalyst_voices/lib/main_development.dart b/catalyst_voices/lib/configs/main_dev.dart
similarity index 65%
rename from catalyst_voices/lib/main_development.dart
rename to catalyst_voices/lib/configs/main_dev.dart
index 0e6549a7841..b169becdb68 100644
--- a/catalyst_voices/lib/main_development.dart
+++ b/catalyst_voices/lib/configs/main_dev.dart
@@ -1,5 +1,5 @@
import 'package:catalyst_voices/app/app.dart';
-import 'package:catalyst_voices/bootstrap.dart';
+import 'package:catalyst_voices/configs/bootstrap.dart';
void main() async {
await bootstrap(() => const App());
diff --git a/catalyst_voices/lib/main_production.dart b/catalyst_voices/lib/configs/main_preprod.dart
similarity index 65%
rename from catalyst_voices/lib/main_production.dart
rename to catalyst_voices/lib/configs/main_preprod.dart
index 0e6549a7841..b169becdb68 100644
--- a/catalyst_voices/lib/main_production.dart
+++ b/catalyst_voices/lib/configs/main_preprod.dart
@@ -1,5 +1,5 @@
import 'package:catalyst_voices/app/app.dart';
-import 'package:catalyst_voices/bootstrap.dart';
+import 'package:catalyst_voices/configs/bootstrap.dart';
void main() async {
await bootstrap(() => const App());
diff --git a/catalyst_voices/lib/main_staging.dart b/catalyst_voices/lib/configs/main_prod.dart
similarity index 65%
rename from catalyst_voices/lib/main_staging.dart
rename to catalyst_voices/lib/configs/main_prod.dart
index 0e6549a7841..b169becdb68 100644
--- a/catalyst_voices/lib/main_staging.dart
+++ b/catalyst_voices/lib/configs/main_prod.dart
@@ -1,5 +1,5 @@
import 'package:catalyst_voices/app/app.dart';
-import 'package:catalyst_voices/bootstrap.dart';
+import 'package:catalyst_voices/configs/bootstrap.dart';
void main() async {
await bootstrap(() => const App());
diff --git a/catalyst_voices/lib/configs/main_qa.dart b/catalyst_voices/lib/configs/main_qa.dart
new file mode 100644
index 00000000000..b169becdb68
--- /dev/null
+++ b/catalyst_voices/lib/configs/main_qa.dart
@@ -0,0 +1,6 @@
+import 'package:catalyst_voices/app/app.dart';
+import 'package:catalyst_voices/configs/bootstrap.dart';
+
+void main() async {
+ await bootstrap(() => const App());
+}
diff --git a/catalyst_voices/packages/catalyst_voices_assets/example/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_assets/example/pubspec.yaml
index 8cd8d76b468..2c3ff72b846 100644
--- a/catalyst_voices/packages/catalyst_voices_assets/example/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_assets/example/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
catalyst_voices_assets:
diff --git a/catalyst_voices/packages/catalyst_voices_assets/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_assets/pubspec.yaml
index 83cc915f7b2..a260616a43e 100644
--- a/catalyst_voices/packages/catalyst_voices_assets/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_assets/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/packages/catalyst_voices_blocs/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_blocs/pubspec.yaml
index 2b7f08f5779..3ba43eab54f 100644
--- a/catalyst_voices/packages/catalyst_voices_blocs/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_blocs/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
bloc: ^8.1.2
diff --git a/catalyst_voices/packages/catalyst_voices_localization/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_localization/pubspec.yaml
index c74ea7f9afe..c61fcc53e6f 100644
--- a/catalyst_voices/packages/catalyst_voices_localization/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_localization/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/packages/catalyst_voices_models/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_models/pubspec.yaml
index 614811d964b..9b551ed16a9 100644
--- a/catalyst_voices/packages/catalyst_voices_models/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_models/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/packages/catalyst_voices_repositories/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_repositories/pubspec.yaml
index aa55d907231..e137a05f28f 100644
--- a/catalyst_voices/packages/catalyst_voices_repositories/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_repositories/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/packages/catalyst_voices_services/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_services/pubspec.yaml
index ff8a5cd92e1..fb948f5bbd7 100644
--- a/catalyst_voices/packages/catalyst_voices_services/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_services/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/packages/catalyst_voices_shared/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_shared/pubspec.yaml
index d5079567b97..e7a366414a6 100644
--- a/catalyst_voices/packages/catalyst_voices_shared/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_shared/pubspec.yaml
@@ -5,7 +5,7 @@ publish_to: none
environment:
sdk: '>=3.2.1 <4.0.0'
- flutter: 3.16.1
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/packages/catalyst_voices_view_models/pubspec.yaml b/catalyst_voices/packages/catalyst_voices_view_models/pubspec.yaml
index 322057b3413..e5cf705ee24 100644
--- a/catalyst_voices/packages/catalyst_voices_view_models/pubspec.yaml
+++ b/catalyst_voices/packages/catalyst_voices_view_models/pubspec.yaml
@@ -4,8 +4,8 @@ version: 0.1.0+1
publish_to: none
environment:
- sdk: ">=3.2.0 <4.0.0"
- flutter: 3.16.1
+ sdk: ">=3.2.3 <4.0.0"
+ flutter: 3.16.5
dependencies:
flutter:
diff --git a/catalyst_voices/pubspec.yaml b/catalyst_voices/pubspec.yaml
index 0eb5f7bf5c2..6c3c10fc312 100644
--- a/catalyst_voices/pubspec.yaml
+++ b/catalyst_voices/pubspec.yaml
@@ -5,7 +5,7 @@ publish_to: none
environment:
sdk: '>=3.2.1 <4.0.0'
- flutter: 3.16.1
+ flutter: 3.16.5
dependencies:
catalyst_voices_assets:
diff --git a/pubspec.yaml b/pubspec.yaml
index 54fbe5ea0d5..46ef10ad908 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -4,4 +4,4 @@ environment:
sdk: '>=3.2.1 <4.0.0'
dev_dependencies:
- melos: ^3.2.0
+ melos: ^3.2.3