Skip to content

Commit

Permalink
Append proguard files to new line
Browse files Browse the repository at this point in the history
  • Loading branch information
mklueh committed Jan 5, 2017
1 parent f027c5a commit 4c8f1ea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fat-aar.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ task embedAssets << {

/**
* Merge proguard.txt files from all library modules
* @author Marian Klühspies
*/
task embedProguard << {
println "====== Embedding proguard.txt files in " + project
Expand All @@ -165,7 +164,7 @@ task embedProguard << {
try {
def proguardLibFile = file("$aarPath/proguard.txt")
if (proguardLibFile.exists())
proguardRelease.append(proguardLibFile.text)
proguardRelease.append("\n" + proguardLibFile.text)
} catch (Exception e) {
e.printStackTrace();
throw e;
Expand Down

0 comments on commit 4c8f1ea

Please sign in to comment.