Skip to content

Commit

Permalink
Merge pull request #53964 from Expensify/jules-fixAndroidBuild
Browse files Browse the repository at this point in the history
[NO QA][CP STAGING] Fix Android build

(cherry picked from commit b554ade)

(CP triggered by Julesssss)
  • Loading branch information
luacmartins authored and OSBotify committed Dec 11, 2024
1 parent 54e52c7 commit 3853c59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Mobile-Expensify
7 changes: 5 additions & 2 deletions react-native.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
const iosSourceDir = process.env.PROJECT_ROOT_PATH ? process.env.PROJECT_ROOT_PATH + 'ios' : 'ios';
const androidSourceDir = process.env.PROJECT_ROOT_PATH ? process.env.PROJECT_ROOT_PATH + 'android' : 'android';

module.exports = {
project: {
ios: {sourceDir: process.env.PROJECT_ROOT_PATH + 'ios'},
android: {sourceDir: process.env.PROJECT_ROOT_PATH + 'android'},
ios: {sourceDir: iosSourceDir},
android: {sourceDir: androidSourceDir},
},
assets: ['./assets/fonts/native'],
};

0 comments on commit 3853c59

Please sign in to comment.