Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
bishiboosh committed Nov 11, 2015
2 parents 07544e3 + b453db3 commit 5ea6ed2
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,15 +1,30 @@
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 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "org.toulibre.cdl"
minSdkVersion 7
minSdkVersion 8
targetSdkVersion 21
versionCode 3
versionName "1.3.3"
versionCode 4
versionName "1.3.4"
}

buildTypes {
Expand All @@ -24,4 +39,7 @@ dependencies {
compile 'com.android.support:appcompat-v7:21.+'
compile 'com.android.support:cardview-v7:21.+'
compile 'com.commit451:PhotoView:1.2.4'
compile('com.crashlytics.sdk.android:crashlytics:2.5.2@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 @@ -105,6 +105,9 @@
android:name=".providers.SearchSuggestionProvider"
android:authorities="org.toulibre.cdl.search"
android:exported="true"/>
<meta-data
android:name="io.fabric.ApiKey"
android:value="7826122d19d8fbe241d1d771f84d07700dad4371" />
</application>

</manifest>
3 changes: 3 additions & 0 deletions app/src/main/java/org/toulibre/cdl/CdlApplication.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package org.toulibre.cdl;

import com.crashlytics.android.Crashlytics;
import io.fabric.sdk.android.Fabric;
import org.toulibre.cdl.alarms.FosdemAlarmManager;
import org.toulibre.cdl.db.DatabaseManager;

Expand All @@ -11,6 +13,7 @@ public class CdlApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Fabric.with(this, new Crashlytics());

DatabaseManager.init(this);
// Initialize settings
Expand Down

0 comments on commit 5ea6ed2

Please sign in to comment.