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
  • Loading branch information
luacmartins authored Dec 11, 2024
2 parents 9b64e36 + 012d072 commit b554ade
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 b554ade

Please sign in to comment.