Skip to content

Commit

Permalink
Update 4.4.0
Browse files Browse the repository at this point in the history
- Fixed fabric
- Bumped up version code and number
  • Loading branch information
Saurabh Joshi committed Jan 9, 2016
1 parent 4a99969 commit 2882065
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ android {
applicationId "com.karthikb351.vitinfo2"
minSdkVersion 15
targetSdkVersion 23
versionCode 41
versionName "4.3.0"
versionCode 42
versionName "4.4.0"
}
buildTypes {
}
Expand Down Expand Up @@ -78,6 +78,9 @@ dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
transitive = true
}
// Third Party
compile 'co.uk.rushorm:rushandroid:1.1.9'
compile 'com.avast:android-styled-dialogs:2.2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@

import android.app.Application;

//import com.crashlytics.android.Crashlytics;
import com.crashlytics.android.Crashlytics;
import com.karthikb351.vitinfo2.api.DataHolder;

import co.uk.rushorm.android.AndroidInitializeConfig;
import co.uk.rushorm.core.RushCore;
//import io.fabric.sdk.android.Fabric;
import io.fabric.sdk.android.Fabric;
import uk.co.chrisjenx.calligraphy.CalligraphyConfig;

public class MainApplication extends Application {
Expand All @@ -43,8 +43,7 @@ public class MainApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
// Fabric.with(this, new Crashlytics());

Fabric.with(this, new Crashlytics());
// Rush is initialized asynchronously to receive a callback after it initialized
// set an InitializeListener on the config object
AndroidInitializeConfig config = new AndroidInitializeConfig(getApplicationContext());
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'io.fabric.tools:gradle:1.21.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 2882065

Please sign in to comment.