Implement encrypted feedback

This commit is contained in:
str4d
2016-04-12 12:41:04 +00:00
parent 3bfef877ec
commit c44b6a4095
15 changed files with 447 additions and 250 deletions

View File

@@ -39,7 +39,7 @@ public class BriarReportSender implements ReportSender {
throw new ReportSenderException("Couldn't create JSON", e);
}
try {
reporter.encryptCrashReportToFile(
reporter.encryptReportToFile(
AndroidUtils.getReportDir(context),
errorContent.getProperty(ReportField.REPORT_ID),
crashReport);

View File

@@ -0,0 +1,5 @@
package org.briarproject.android.util;
public class UserFeedback extends Exception {
}