Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
22 changes: 11 additions & 11 deletions .github/workflows/react-native-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,20 +258,20 @@ jobs:
./ResgridUnit-ios-prod.ipa
retention-days: 7

- name: 📦 Upload Android build artifacts to Testfairy
- name: 📦 Upload Android artifact to Firebase App Distribution
if: (matrix.platform == 'android')
uses: alexfu/testfairy-upload-action@main
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
api-key: ${{ secrets.TESTFAIRY_API_KEY }}
appId: ${{secrets.FIREBASE_ANDROID_APP_ID}}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: testers
file: ./ResgridUnit-prod.apk
groups: Resgrid
notify: on

- name: 📦 Upload iOS build artifacts to Testfairy

- name: 📦 Upload iOS artifact to Firebase App Distribution
if: (matrix.platform == 'ios')
uses: alexfu/testfairy-upload-action@main
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
api-key: ${{ secrets.TESTFAIRY_API_KEY }}
appId: ${{secrets.FIREBASE_IOS_APP_ID}}
serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: testers
file: ./ResgridUnit-ios-adhoc.ipa
groups: Resgrid
notify: on
14 changes: 7 additions & 7 deletions app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
versionCode: Env.ANDROID_VERSION_CODE,
adaptiveIcon: {
foregroundImage: './assets/adaptive-icon.png',
backgroundColor: '#2E3C4B',
backgroundColor: '#2a7dd5',
},
softwareKeyboardLayoutMode: 'pan',
package: Env.PACKAGE,
Expand All @@ -59,7 +59,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
[
'expo-splash-screen',
{
backgroundColor: '#2E3C4B',
backgroundColor: '#2a7dd5',
image: './assets/adaptive-icon.png',
imageWidth: 250,
},
Expand All @@ -77,7 +77,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
'expo-notifications',
{
icon: './assets/notification-icon.png',
color: '#2E3C4B',
color: '#2a7dd5',
permissions: {
ios: {
allowAlert: true,
Expand Down Expand Up @@ -143,9 +143,9 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
[
'expo-location',
{
locationWhenInUsePermission: 'Allow Resgird Unit to show current location on map.',
locationAlwaysAndWhenInUsePermission: 'Allow Resgrid Unit to use your location.',
locationAlwaysPermission: 'Resgrid Unit needs to track your location',
locationWhenInUsePermission: 'Allow Resgrid Unit to show current location on map.',
locationAlwaysAndWhenInUsePermission: 'Allow Resgrid Unit to use your location for department updates.',
locationAlwaysPermission: 'Resgrid Unit needs to track your location for department AVL.',
isIosBackgroundLocationEnabled: true,
isAndroidBackgroundLocationEnabled: true,
isAndroidForegroundServiceEnabled: true,
Expand Down Expand Up @@ -215,7 +215,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
{
isBackgroundEnabled: true,
modes: ['peripheral', 'central'],
bluetoothAlwaysPermission: 'Allow Resgrid Unit to connect to bluetooth devices',
bluetoothAlwaysPermission: 'Allow Resgrid Unit to connect to bluetooth devices for PTT.',
},
],
[
Expand Down
Loading