Skip to content

Commit

Permalink
Merge pull request #362 from iDev01/3.0.1-rc88-fixSignNPE
Browse files Browse the repository at this point in the history
3.0.1 rc88 fix sign npe
  • Loading branch information
lilongAAAA committed Jul 5, 2019
2 parents 94a206e + 215f992 commit 9c84e88
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,11 @@ public static boolean sign(File inputFile,
if (certificateInfo == null) {
throw new SigningException("Failed to read key from keystore");
}
System.err.println("LocalSign:"+signingConfig.toString());
} else {
throw new SigningException("SigningConfig not found or incomplete");
}
System.err.println("LocalSign:"+signingConfig.toString());


Predicate<String> noCompressPredicate = getNoCompressPredicate(inputFile.getAbsolutePath());
ApkCreatorFactory.CreationData creationData =
Expand Down

0 comments on commit 9c84e88

Please sign in to comment.