Skip to content

Commit

Permalink
fix: add new line after facebook proguard rules in android builds
Browse files Browse the repository at this point in the history
If facebook is used and also google play, then the proguard rules may be corrupted because of the missing new line after the facebook rules.
  • Loading branch information
shannah committed Nov 18, 2023
1 parent 1866a0a commit 97c65ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ public boolean build(File sourceZip, final BuildRequest request) throws BuildExc
+ "-keepattributes Signature\n"
+ "-dontwarn bolts.**\n"
+ "-dontnote android.support.**\n"
+ "-dontnote androidx.**";
+ "-dontnote androidx.**\n";


facebookActivityMetaData = " <meta-data android:name=\"com.facebook.sdk.ApplicationId\" android:value=\"@string/facebook_app_id\"/>\n";
Expand Down

0 comments on commit 97c65ea

Please sign in to comment.