Project

General

Profile

Download (915 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / build.gradle @ 8aa9b077

1
apply plugin: 'com.android.application'
2
apply plugin: 'com.google.gms.google-services'
3
apply plugin: 'com.google.firebase.crashlytics'
4

    
5
android {
6
    compileSdkVersion 29
7

    
8
    defaultConfig {
9
        applicationId "org.distorted.magic"
10
        minSdkVersion 21
11
        targetSdkVersion 29
12
        versionCode 1
13
        versionName "1.0"
14
    }
15

    
16
    buildTypes {
17
        release {
18
            minifyEnabled false
19
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
20
        }
21
    }
22

    
23
}
24

    
25
dependencies {
26
    implementation fileTree(dir: 'libs', include: ['*.jar'])
27
    implementation 'com.google.firebase:firebase-analytics:17.3.0'
28
    implementation 'com.google.firebase:firebase-crashlytics:17.0.0-beta04'
29

    
30
    api project(':distorted-library')
31
    implementation 'androidx.appcompat:appcompat:1.1.0'
32
    implementation 'com.google.android.material:material:1.1.0'
33
}
(2-2/3)