Skip to content

Commit

Permalink
Removed Crashlytics and references to maven.io
Browse files Browse the repository at this point in the history
 Autor:           Samtinel <>
  • Loading branch information
ariessam authored and Samtinel committed Oct 3, 2020
1 parent bd335cc commit 3318d35
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
7 changes: 0 additions & 7 deletions Stately/app/build.gradle
@@ -1,14 +1,11 @@
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
compileSdkVersion 28
Expand All @@ -33,7 +30,6 @@ android {
repositories {
maven { url "https://jitpack.io" }
jcenter()
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
Expand All @@ -43,9 +39,6 @@ dependencies {
exclude module: 'stax-api'
exclude module: 'xpp3'
}
implementation('com.crashlytics.sdk.android:crashlytics:2.10.1@aar') {
transitive = true
}
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
Expand Down
3 changes: 0 additions & 3 deletions Stately/app/fabric.properties

This file was deleted.

3 changes: 0 additions & 3 deletions Stately/app/src/main/AndroidManifest.xml
Expand Up @@ -138,9 +138,6 @@
<service android:name=".push.AlphysLollipopService"
android:label="@string/stately_alphys"
android:permission="android.permission.BIND_JOB_SERVICE"/>
<meta-data
android:name="io.fabric.ApiKey"
android:value="651c62b07195273645b7c74e9b21a68bf3d124cd" />
</application>

</manifest>
Expand Up @@ -16,12 +16,10 @@

package com.lloydtorres.stately.core;

import com.crashlytics.android.Crashlytics;
import com.lloydtorres.stately.push.TrixHelper;
import com.lloydtorres.stately.settings.SettingsActivity;
import com.orm.SugarApp;

import io.fabric.sdk.android.Fabric;

/**
* Created by Lloyd on 2016-01-29.
Expand All @@ -33,11 +31,6 @@ public class StatelyApp extends SugarApp {
public void onCreate() {
super.onCreate();

// analytics
if (SettingsActivity.getCrashReportSetting(this)) {
Fabric.with(this, new Crashlytics());
}

// notification channels
TrixHelper.initNotificationChannels(this);
}
Expand Down

0 comments on commit 3318d35

Please sign in to comment.