ACRA / acralyzer

Open source backend for ACRA reports.
GNU General Public License v3.0
489 stars 90 forks source link

Docs - Setup - Acra #5

Closed halkeye closed 11 years ago

halkeye commented 11 years ago

Not really a bug, but http://acra.ch just says to:

import org.acra.*;
import org.acra.annotation.*;

But acralyzer documentation says to use

reportType = Type.JSON,
httpMethod = Method.PUT,

But no indication which package to use. I eventually realized you need two more imports to get this working.

import org.acra.sender.HttpSender.Type;
import org.acra.sender.HttpSender.Method;

If I figured it out, others can, but documenting it on either site would be useful.

KevinGaudin commented 11 years ago

I just updated the acralyzer doc to include the full qualified names.