Skip to content

Commit cca60c5

Browse files
authored
Merge pull request #805 from davidsmith1307/fix_maindexlist
Fix mainDexList so that the filename is separated from the command
2 parents aec11cd + 0a79f4e commit cca60c5

File tree

1 file changed

+2
-1
lines changed
  • src/main/java/com/simpligility/maven/plugins/android/phase08preparepackage

1 file changed

+2
-1
lines changed

src/main/java/com/simpligility/maven/plugins/android/phase08preparepackage/D8Mojo.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,8 @@ private void runD8( CommandExecutor executor )
394394
}
395395
if ( parsedMainDexList != null )
396396
{
397-
commands.add( "--main-dex-list" + parsedMainDexList );
397+
commands.add( "--main-dex-list" );
398+
commands.add( parsedMainDexList );
398399
}
399400
if ( parsedArguments != null )
400401
{

0 commit comments

Comments
 (0)