Skip to content

Commit d75564e

Browse files
committed
Merge branch 'main' of github.com:gijoe0295/App into gijoe/64376
2 parents 4e2041a + 4d7b766 commit d75564e

180 files changed

Lines changed: 5162 additions & 3944 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Patch Tracking
3+
about: Template for tracking patches applied to third-party libraries
4+
---
5+
6+
If you haven't already, check out our [contributing guidelines](https://github.com/Expensify/App/blob/main/contributingGuides/CONTRIBUTING.md) and [patch guidelines](https://github.com/Expensify/App/blob/main/contributingGuides/PATCHES.md) for information on how to manage patches.
7+
___
8+
9+
## Patch Information
10+
11+
**Library Name:** <!-- e.g., react-native-pdf -->
12+
**Library Version:** <!-- e.g., 6.7.3 -->
13+
**Patch Number:** <!-- e.g., 001 -->
14+
**Patch Description:** <!-- e.g., update-podspec-to-support-new-arch -->
15+
**Full Patch Filename:** <!-- e.g., react-native-pdf+6.7.3+001+update-podspec-to-support-new-arch.patch -->
16+
17+
## Patch Details
18+
19+
### Reason for Patch
20+
<!-- Explain why this patch is necessary. What issue does it solve? -->
21+
22+
### Changes Made
23+
<!-- Briefly describe the changes made in the patch -->
24+
25+
### Upstream Status
26+
**Upstream PR/Issue:** <!-- Link to the PR or issue in the upstream repository, if one exists -->
27+
28+
## Related Information
29+
30+
**PR Introducing Patch:** <!-- Link to the PR that introduced this patch -->
31+
32+
## Additional Notes
33+
<!-- Any other relevant information about this patch -->
34+
35+
## Checklist
36+
- [ ] Patch file is correctly named and placed in the appropriate directory
37+
- [ ] Patch is documented in the corresponding `details.md` file
38+
- [ ] This issue is linked in the `details.md` file
39+
- [ ] Upstream PR/issue has been created (if applicable)

.github/workflows/deploy.yml

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -180,20 +180,15 @@ jobs:
180180
GOOGLE_KEY_FILE: ./android-fastlane-json-key.json
181181
PACKAGE_NAME: org.me.mobiexpensifyg
182182

183+
# Complete the previous version rollout if the current rollout percentage is not -1 (no rollout in progress) or 1 (fully rolled out)
184+
- name: Submit previous production build to 100%
185+
if: ${{ github.ref == 'refs/heads/production' && !contains(fromJSON('["1", "-1"]'), steps.getAndroidRolloutPercentage.outputs.CURRENT_ROLLOUT_PERCENTAGE) }}
186+
run: bundle exec fastlane android complete_hybrid_rollout
187+
continue-on-error: true
188+
183189
- name: Submit production build for Google Play review and a slow rollout
184190
if: ${{ github.ref == 'refs/heads/production' }}
185-
run: |
186-
# Complete the previous version rollout if the current rollout percentage is not -1 (no rollout in progress) or 1 (fully rolled out)
187-
echo "Current rollout percentage: ${{ steps.getAndroidRolloutPercentage.outputs.CURRENT_ROLLOUT_PERCENTAGE }}"
188-
if [[ ${{ steps.getAndroidRolloutPercentage.outputs.CURRENT_ROLLOUT_PERCENTAGE }} != '-1' && ${{ steps.getAndroidRolloutPercentage.outputs.CURRENT_ROLLOUT_PERCENTAGE }} != '1' ]]; then
189-
echo "Completing the previous version rollout"
190-
bundle exec fastlane android complete_hybrid_rollout
191-
else
192-
echo "Skipping the completion of the previous version rollout"
193-
fi
194-
195-
# Submit the new version for review and slow rollout when it's approved
196-
bundle exec fastlane android upload_google_play_production_hybrid_rollout
191+
run: bundle exec fastlane android upload_google_play_production_hybrid_rollout
197192
env:
198193
VERSION: ${{ steps.getAndroidVersion.outputs.VERSION_CODE }}
199194

@@ -433,14 +428,14 @@ jobs:
433428
if: ${{ fromJSON(env.IS_APP_REPO) && fromJSON(env.SHOULD_BUILD_APP) }}
434429
run: bundle exec fastlane ios upload_dsyms_hybrid
435430

436-
- name: Submit production build for App Store review and a slow rollout
431+
- name: Submit previous production build to 100%
437432
if: ${{ github.ref == 'refs/heads/production' }}
438-
run: |
439-
# Complete the previous version rollout
440-
bundle exec fastlane ios complete_hybrid_rollout
433+
run: bundle exec fastlane ios complete_hybrid_rollout
434+
continue-on-error: true
441435

442-
# Submit the new version for review and phased rollout when it's approved
443-
bundle exec fastlane ios submit_hybrid_for_rollout
436+
- name: Submit production build for App Store review and a slow rollout
437+
if: ${{ github.ref == 'refs/heads/production' }}
438+
run: bundle exec fastlane ios submit_hybrid_for_rollout
444439
env:
445440
VERSION: ${{ steps.getIOSVersion.outputs.IOS_VERSION }}
446441
APPLE_ID: ${{ vars.APPLE_ID }}

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009017101
118-
versionName "9.1.71-1"
117+
versionCode 1009017105
118+
versionName "9.1.71-5"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 30 additions & 0 deletions
Loading
Lines changed: 28 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading
Lines changed: 25 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)