Skip to content

Commit

Permalink
Removed crashlyitics from code
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevan Medic committed Nov 1, 2016
1 parent 12d54a9 commit bb01248
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 27 deletions.
7 changes: 1 addition & 6 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
maven { url 'https://maven.fabric.io/public' }
}

android {
signingConfigs {
Expand Down Expand Up @@ -80,7 +75,4 @@ dependencies {
compile files('libs/picasso-2.5.2.jar')
compile files('libs/okhttp-3.2.0.jar') //used for picasso caching
compile 'com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT'
compile('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') {
transitive = true;
}
}
6 changes: 1 addition & 5 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,5 @@
</intent-filter>
</receiver>

<meta-data
android:name="io.fabric.ApiKey"
android:value="58379b9502342767c97648e66e7b2ce781fac866" />

</application>
</manifest>
</manifest>
5 changes: 0 additions & 5 deletions app/src/main/java/com/smedic/tubtub/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
import android.view.Menu;
import android.view.MenuItem;

import com.crashlytics.android.Crashlytics;
import com.flask.colorpicker.ColorPickerView;
import com.flask.colorpicker.OnColorSelectedListener;
import com.flask.colorpicker.builder.ColorPickerClickListener;
Expand All @@ -55,8 +54,6 @@
import java.util.ArrayList;
import java.util.List;

import io.fabric.sdk.android.Fabric;

/**
* Activity that manages fragments and action bar
*/
Expand Down Expand Up @@ -87,8 +84,6 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Fabric.with(this, new Crashlytics());

YouTubeSqlDb.getInstance().init(this);

toolbar = (Toolbar) findViewById(R.id.toolbar);
Expand Down
3 changes: 0 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@
buildscript {
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
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 bb01248

Please sign in to comment.