ACR is an android library to simplify crash detection while your app is under development, crash will be automatically detect by the library then app tester/user can easily send the crash report on one click to developer that will help him to fix the issue.
##Dependency
- Add the dependencies to your app level build.gradle file:
####Gradle
compile 'com.devs:acr:1.0.1'
####Maven
<dependency>
<groupId>com.devs</groupId>
<artifactId>acr</artifactId>
<version>1.0.1</version>
<type>pom</type>
</dependency>
##Usage
- Inside your Application:
@Override
public void onCreate() {
super.onCreate();
AutoErrorReporter.get(this)
.setEmailAddresses("[email protected]")
.setEmailSubject("Auto Crash Report")
.start();
}
Copyright 2016 Deven Singh
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.