org.acra.sender.ReportSender Java Examples

The following examples show how to use org.acra.sender.ReportSender. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CustomHttpSenderFactory.java    From mosmetro-android with GNU General Public License v3.0 5 votes vote down vote up
@NonNull
@Override
public ReportSender create(@NonNull Context context, @NonNull CoreConfiguration config) {
    return new CustomHttpSender(
            config,
            Method.POST,
            StringFormat.JSON, 
            "https://collector.tracepot.com/" + BuildConfig.TRACEPOT_ID
    );
}
 
Example #2
Source File: AcraReportSenderFactory.java    From Instagram-Profile-Downloader with MIT License 4 votes vote down vote up
@NonNull
public ReportSender create(@NonNull Context context, @NonNull ACRAConfiguration config) {
    return new AcraReportSender();
}
 
Example #3
Source File: MySenderFactory.java    From NClientV2 with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public ReportSender create(@NonNull Context context, @NonNull CoreConfiguration config){
    return new MySender();
}
 
Example #4
Source File: AcraReportSenderFactory.java    From video-transcoder with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
public ReportSender create(@NonNull Context context, @NonNull ACRAConfiguration config)
{
    return new AcraReportSender();
}
 
Example #5
Source File: AppCenterSenderFactory.java    From J2ME-Loader with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public ReportSender create(@NonNull Context context, @NonNull CoreConfiguration config) {
	return new AppCenterSender();
}
 
Example #6
Source File: CrashReportSenderFactory.java    From Easy_xkcd with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public ReportSender create(@NonNull Context context, @NonNull ACRAConfiguration acraConfiguration) {
    return new CrashReportSender(acraConfiguration);
}
 
Example #7
Source File: CrashReportSenderFactory.java    From fdroidclient with GNU General Public License v3.0 4 votes vote down vote up
@NonNull
@Override
public ReportSender create(@NonNull Context context, @NonNull ACRAConfiguration acraConfiguration) {
    return new CrashReportSender(acraConfiguration);
}