Skip to content

Commit

Permalink
Remove old Fabric.Crashlytics integration
Browse files Browse the repository at this point in the history
  • Loading branch information
vgaidarji committed Dec 4, 2023
1 parent 6862a7b commit b39a850
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
7 changes: 2 additions & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@
android:theme="@style/AppTheme"
android:name=".CiMattersApplication">

<meta-data
android:name="io.fabric.ApiKey"
android:value="${fabricApiKey}" />

<activity android:name=".LoginActivity">
<activity android:name=".LoginActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package com.vgaidarji.cimatters;

import android.app.Application;
import com.crashlytics.android.Crashlytics;
import io.fabric.sdk.android.Fabric;

public class CiMattersApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Fabric.with(this, new Crashlytics());
// TODO: integrate with Crashlytics
}
}
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'io.fabric.tools:gradle:1.27.1'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.7.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit b39a850

Please sign in to comment.