Open-source, Symfony/Doctrine powered backend for visualizing crash reports from ACRA library for Android

dev-master 2019-03-01 03:59 UTC

This package is auto-updated.

Last update: 2024-04-06 22:56:47 UTC


README

Open-source, Silex/Doctrine powered backend for visualizing crash reports from ACRA library for Android

Getting Started

  • Install Node.js on your machine.
  • Install Bower and Gulp globally using below commands:
npm i -g bower gulp
curl -sS https://getcomposer.org/installer | php -- --install-dir=bin --filename=composer
php bin/composer create-project vaibhavpandeyvpz/acraviz mysite "@dev"
  • Move the .env.example to .env, and edit your database (DB_*) credentials. Then execute below commands in project directory:
php acraviz db:import -F./schema.sql
php acraviz users:add -U<USER> -P<PASSWORD>
php acraviz security:rekey
  • Navigate to ACRAViz via http, use the credentials you entered earlier in command-line to login.
  • Go to Applications from navigation at top, enter your application title & package name on the left for and hit Add.
  • Now, you can use your package name as Username and token as Password for setting up basic auth when using ACRA as shown below. Please note the formUri should point to ACRAViz installation + /api suffix.
package com.vaibhavpandey.acraviz.demo;

import android.app.Application;
import org.acra.ACRA;
import org.acra.annotation.ReportsCrashes;

@ReportsCrashes(
        formUri = "http://domain.tld/api",
        formUriBasicAuthLogin = BuildConfig.APPLICATION_ID,
        formUriBasicAuthPassword = "<token>")
public class MainApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        ACRA.init(this);
    }

}

Screenshots

Screenshot #0 Screenshot #1 Screenshot #2 Screenshot #3 Screenshot #4

License

See LICENSE.md file.