Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Commit

Permalink
Updated some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Nov 16, 2015
1 parent fe3f14f commit dac867e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: android
sudo: false
android:
components:
- build-tools-23.0.1
- build-tools-23.0.2
- android-23
- extra-android-m2repository
script:
Expand Down
14 changes: 7 additions & 7 deletions opacclient/opacapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion '23.0.1'
buildToolsVersion '23.0.2'

defaultConfig {
applicationId "de.geeksfactory.opacclient"
Expand Down Expand Up @@ -58,16 +58,16 @@ dependencies {
compile(project(':libopac')) {
transitive = false
}
compile('ch.acra:acra:4.5.0') {
compile('ch.acra:acra:4.6.2') {
exclude group: 'org.json', module: 'json'
}
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.github.machinarius:preferencefragment:0.1.1'
compile 'com.android.support:design:23.1.0'
compile 'com.android.support:support-v4:23.1.0'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:palette-v7:23.1.0'
compile 'com.android.support:cardview-v7:23.1.0'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:palette-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.nineoldandroids:library:2.4.0'
compile 'org.apmem.tools:layouts:1.8@aar'
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
import de.geeksfactory.opacclient.storage.StarContentProvider;
import de.geeksfactory.opacclient.utils.ErrorReporter;

@ReportsCrashes(formKey = "", mailTo = "[email protected]",
@ReportsCrashes(mailTo = "[email protected]",
mode = org.acra.ReportingInteractionMode.NOTIFICATION,
sendReportsInDevMode = false,
resToastText = R.string.crash_toast_text)
Expand Down Expand Up @@ -423,8 +423,7 @@ public void onCreate() {
config.setResNotifText(R.string.crash_notif_text);
config.setResNotifIcon(android.R.drawable.stat_notify_error);
config.setResDialogText(R.string.crash_dialog_text);
ACRA.setConfig(config);
ACRA.init(this);
ACRA.init(this, config);

if (getLibrary() != null) {
ACRA.getErrorReporter().putCustomData("library",
Expand Down

0 comments on commit dac867e

Please sign in to comment.