Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TMisiukiewicz committed Oct 14, 2024
1 parent 9f08465 commit 80e33ef
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/cli-platform-android/src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ export function projectConfig(
const manifestPath = userConfig.manifestPath
? path.join(sourceDir, userConfig.manifestPath)
: findManifest(path.join(sourceDir, appName));
const buildGradlePath = findBuildGradle(sourceDir, false, appName);
const buildGradlePath = findBuildGradle(
sourceDir,
false,
appName === '' ? 'app' : appName,
);

if (!manifestPath && !buildGradlePath) {
return null;
Expand Down

0 comments on commit 80e33ef

Please sign in to comment.