-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/kuba_nowakowski/add_switch_animation…
…s_to_acounting
- Loading branch information
Showing
507 changed files
with
12,765 additions
and
6,474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: 'Tooltips Template' | ||
about: Create this issue when adding a new tooltip to New Expensify | ||
labels: Daily, Design, WaitingForCopy | ||
title: 'Tooltips Template' | ||
--- | ||
Refer to https://stackoverflowteams.com/c/expensify/questions/20762 for the full process to add a tooltip. | ||
|
||
### Problem | ||
Enter the problem that currently exists without the tooltip. | ||
|
||
### Solution | ||
Enter the solution that implementing the tooltip will achieve. | ||
|
||
### What is the purpose of the tooltip? | ||
Enter the purpose. | ||
|
||
### How should the tooltip look | ||
Add the Figma Mock Up that Design builds. | ||
|
||
### Condition | ||
We should show this tooltip to: | ||
|
||
### Decide the prioritisation | ||
|
||
Priority score: | ||
|
||
NOTE: Only one tooltip is shown at a time. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Build and profile Android apps | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
buildHybridAppAndroid: | ||
name: Build HybridApp Android | ||
runs-on: macos-15-xlarge | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
token: ${{ secrets.OS_BOTIFY_TOKEN }} | ||
|
||
- name: Update submodule to match main | ||
run: | | ||
git submodule update --init --remote | ||
cd Mobile-Expensify | ||
git fetch | ||
git checkout main | ||
- name: Configure MapBox SDK | ||
run: ./scripts/setup-mapbox-sdk.sh ${{ secrets.MAPBOX_SDK_DOWNLOAD_TOKEN }} | ||
|
||
- name: Setup Node | ||
id: setup-node | ||
uses: ./.github/actions/composite/setupNode | ||
with: | ||
IS_HYBRID_BUILD: 'true' | ||
|
||
- name: Build Android Release | ||
working-directory: Mobile-Expensify/Android | ||
run: | | ||
if ! ./gradlew --profile assembleRelease | ||
then | ||
echo "❌ Android HybridApp failed to build: Please reach out to Contributor+ and/or Expensify engineers for help in #expensify-open-source to resolve." | ||
exit 1 | ||
else | ||
echo "✅ Build succeeded. Printing Gradle profile report:" | ||
# Print the latest generated profile report | ||
PROFILE_REPORT=$(find build/reports/profile -maxdepth 1 -type f) | ||
cat "$PROFILE_REPORT" | ||
fi | ||
buildStandaloneAndroid: | ||
name: Build Standalone Android | ||
runs-on: macos-15-xlarge | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.OS_BOTIFY_TOKEN }} | ||
|
||
- name: Configure MapBox SDK | ||
run: ./scripts/setup-mapbox-sdk.sh ${{ secrets.MAPBOX_SDK_DOWNLOAD_TOKEN }} | ||
|
||
- name: Setup Node | ||
id: setup-node | ||
uses: ./.github/actions/composite/setupNode | ||
with: | ||
IS_HYBRID_BUILD: 'false' | ||
|
||
- name: Build Android Release | ||
working-directory: android | ||
run: | | ||
if ! ./gradlew --profile assembleProductionRelease | ||
then | ||
echo "❌ Android Standalone failed to build: Please reach out to Contributor+ and/or Expensify engineers for help in #expensify-open-source to resolve." | ||
exit 1 | ||
else | ||
echo "✅ Build succeeded. Printing Gradle profile report:" | ||
# Print the latest generated profile report | ||
PROFILE_REPORT=$(find build/reports/profile -maxdepth 1 -type f) | ||
cat "$PROFILE_REPORT" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.