Project

General

Profile

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

magiccube / build.gradle @ 66e777b0

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

    
4
android {
5
    compileSdkVersion 29
6

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

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

    
22
}
23

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

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