Implement ACRA reporting
This commit is contained in:
parent
110bc80424
commit
ae125a5311
5 changed files with 35 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 23
|
compileSdkVersion 23
|
||||||
buildToolsVersion '26.0.2'
|
buildToolsVersion '27.0.3'
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 14
|
minSdkVersion 14
|
||||||
|
|
|
@ -12,7 +12,7 @@ android {
|
||||||
exclude 'META-INF/DEPENDENCIES'
|
exclude 'META-INF/DEPENDENCIES'
|
||||||
}
|
}
|
||||||
compileSdkVersion 27
|
compileSdkVersion 27
|
||||||
buildToolsVersion "26.0.2"
|
buildToolsVersion '27.0.3'
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
targetCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
||||||
|
@ -24,6 +24,9 @@ android {
|
||||||
versionCode 9
|
versionCode 9
|
||||||
versionName "0.4.3"
|
versionName "0.4.3"
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
|
buildConfigField "String", "ACRA_URL", "\"$acraUrl\"" // Defined in ~/.gradle/gradle.properties
|
||||||
|
buildConfigField "String", "ACRA_USER", "\"$acraUser\"" // Defined in ~/.gradle/gradle.properties
|
||||||
|
buildConfigField "String", "ACRA_PASS", "\"$acraPass\"" // Defined in ~/.gradle/gradle.properties
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
|
@ -50,6 +53,7 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
|
acraVersion = '5.1.3'
|
||||||
support_version = "27.1.0"
|
support_version = "27.1.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,5 +87,7 @@ dependencies {
|
||||||
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
|
||||||
implementation 'io.reactivex.rxjava2:rxjava:2.1.0'
|
implementation 'io.reactivex.rxjava2:rxjava:2.1.0'
|
||||||
|
|
||||||
|
implementation "ch.acra:acra-http:$acraVersion"
|
||||||
|
|
||||||
samsungImplementation project(":IAP5Helper")
|
samsungImplementation project(":IAP5Helper")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,23 @@
|
||||||
package com.wbrawner.simplemarkdown;
|
package com.wbrawner.simplemarkdown;
|
||||||
|
|
||||||
import android.app.Application;
|
import android.app.Application;
|
||||||
|
import android.content.Context;
|
||||||
|
|
||||||
|
import org.acra.ACRA;
|
||||||
|
import org.acra.annotation.AcraCore;
|
||||||
|
import org.acra.annotation.AcraHttpSender;
|
||||||
|
import org.acra.data.StringFormat;
|
||||||
|
import org.acra.sender.HttpSender;
|
||||||
|
|
||||||
|
import static com.wbrawner.simplemarkdown.BuildConfig.ACRA_PASS;
|
||||||
|
import static com.wbrawner.simplemarkdown.BuildConfig.ACRA_URL;
|
||||||
|
import static com.wbrawner.simplemarkdown.BuildConfig.ACRA_USER;
|
||||||
|
|
||||||
|
@AcraCore(buildConfigClass = BuildConfig.class, reportFormat = StringFormat.JSON)
|
||||||
|
@AcraHttpSender(uri = ACRA_URL,
|
||||||
|
basicAuthLogin = ACRA_USER,
|
||||||
|
basicAuthPassword = ACRA_PASS,
|
||||||
|
httpMethod = HttpSender.Method.POST)
|
||||||
public class MarkdownApplication extends Application {
|
public class MarkdownApplication extends Application {
|
||||||
|
|
||||||
private AppComponent component;
|
private AppComponent component;
|
||||||
|
@ -17,4 +33,12 @@ public class MarkdownApplication extends Application {
|
||||||
public AppComponent getComponent() {
|
public AppComponent getComponent() {
|
||||||
return component;
|
return component;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void attachBaseContext(Context base) {
|
||||||
|
super.attachBaseContext(base);
|
||||||
|
|
||||||
|
// The following line triggers the initialization of ACRA
|
||||||
|
ACRA.init(this);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ buildscript {
|
||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.0.1'
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
}
|
}
|
||||||
|
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
||||||
#Tue Nov 28 19:16:56 CST 2017
|
#Mon Aug 20 19:40:47 CDT 2018
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
|
||||||
|
|
Loading…
Reference in a new issue