Skip to content

Commit

Permalink
Increased version to 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
smedic committed May 9, 2018
1 parent c58a976 commit 90e8771
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
24 changes: 21 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,29 @@
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'

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


android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.smedic.tubtub"
minSdkVersion 16
minSdkVersion 21
targetSdkVersion 27
versionCode 12
versionName "2.1"
versionCode 13
versionName "2.2"
}

buildTypes {
Expand Down Expand Up @@ -63,4 +78,7 @@ dependencies {
implementation 'pub.devrel:easypermissions:1.2.0'
implementation 'com.facebook.network.connectionclass:connectionclass:1.0.1' //this lib include jsr501
implementation 'com.android.support:cardview-v7:27.1.1'
compile('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') {
transitive = true;
}
}
3 changes: 3 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@
<service
android:name=".BackgroundAudioService"
android:process=":youtube" />
<meta-data
android:name="io.fabric.ApiKey"
android:value="<YOUR_FABRIC_API_KEY>" />
</application>
</manifest>
3 changes: 3 additions & 0 deletions app/src/main/java/com/smedic/tubtub/YTApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

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

/**
* Created by smedic on 5.3.17..
Expand All @@ -13,6 +15,7 @@ public class YTApplication extends Application {

public void onCreate() {
super.onCreate();
Fabric.with(this, new Crashlytics());
mContext = getApplicationContext();
}

Expand Down

0 comments on commit 90e8771

Please sign in to comment.