Skip to content

Commit

Permalink
Always honor dexArguments parameters, fix for #517
Browse files Browse the repository at this point in the history
  • Loading branch information
mosabua committed Nov 26, 2014
1 parent 2b43e84 commit 8d33799
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -530,10 +530,10 @@ private void runDex( CommandExecutor executor, File outputFile )
{
commands.add( "--minimal-main-dex" );
}
if ( parsedDexArguments != null )
{
commands.add( parsedDexArguments );
}
}
if ( parsedDexArguments != null )
{
commands.add( parsedDexArguments );
}
commands.add( "--output=" + outputFile.getAbsolutePath() );
for ( File inputFile : filteredFiles )
Expand Down

0 comments on commit 8d33799

Please sign in to comment.