Last active
August 25, 2017 05:09
-
-
Save dharmakshetri/c7dc97e5df0ebb5f65ac28d3aabcd87b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.android.application' | |
| apply plugin: 'kotlin-android' | |
| apply plugin: 'kotlin-android-extensions' | |
| apply plugin: 'io.fabric' | |
| android { | |
| compileSdkVersion 25 | |
| buildToolsVersion "25.0.3" | |
| defaultConfig { | |
| applicationId "co.prandroid.fabricexample" | |
| minSdkVersion 15 | |
| targetSdkVersion 25 | |
| versionCode 7 | |
| versionName "1.6" | |
| testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
| } | |
| buildTypes { | |
| release { | |
| minifyEnabled true | |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
| } | |
| } | |
| packagingOptions { | |
| exclude 'LICENSE.txt' | |
| } | |
| repositories { | |
| maven { url 'https://maven.fabric.io/public' } | |
| } | |
| } | |
| dependencies { | |
| implementation fileTree(include: ['*.jar'], dir: 'libs') | |
| implementation 'com.google.firebase:firebase-appindexing:11.0.2' | |
| androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.0', { | |
| exclude group: 'com.android.support', module: 'support-annotations' | |
| }) | |
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" | |
| implementation 'com.android.support:appcompat-v7:25.4.0' | |
| testImplementation 'junit:junit:4.12' | |
| implementation 'com.android.support.constraint:constraint-layout:1.0.2' | |
| implementation 'com.android.support:design:25.4.0' | |
| implementation 'com.android.support:cardview-v7:25.4.0' | |
| compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') { | |
| transitive = true; | |
| } | |
| } | |
| apply plugin: 'com.google.gms.google-services' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment