Skip to content

Commit

Permalink
* Removed fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
thanksmister committed Sep 11, 2018
1 parent f48fc6d commit f127ff8
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 19 deletions.
6 changes: 1 addition & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'io.fabric'

def versionMajor = 0
def versionMinor = 1
def versionPatch = 0
def versionBuild = 1 // bump for dog food builds, public betas, etc.
def versionBuild = 2 // bump for dog food builds, public betas, etc.

android {
kapt {
Expand Down Expand Up @@ -146,8 +145,5 @@ dependencies {
compile "com.facebook.stetho:stetho-urlconnection:${stetho}"

testCompile 'junit:junit:4.12'
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true;
}
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
3 changes: 0 additions & 3 deletions app/fabric.properties

This file was deleted.

3 changes: 0 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,6 @@
android:theme="@style/AppTheme.NoActionBar"/>
<activity android:name=".ui.LogActivity"
android:theme="@style/AppTheme.NoActionBar"/>
<meta-data
android:name="io.fabric.ApiKey"
android:value="d328872540a331f2245f3d7b842d06bbb7ac1c60" />
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@ class BaseApplication : DaggerApplication() {
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(Stetho.defaultInspectorModulesProvider(this))
.build())
} else {
Fabric.with(this, Crashlytics())
Timber.plant(CrashlyticsTree())
}
}



}
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@ buildscript {
ext.kotlin_version = '1.2.31'
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'io.fabric.tools:gradle:1.+'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down

0 comments on commit f127ff8

Please sign in to comment.