Project

General

Profile

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

magiccube / build.gradle @ 66e777b0

1 0c52af30 Leszek Koltunski
apply plugin: 'com.android.application'
2 66e777b0 Leszek Koltunski
apply plugin: 'com.google.gms.google-services'
3 0c52af30 Leszek Koltunski
4
android {
5 66e777b0 Leszek Koltunski
    compileSdkVersion 29
6 0c52af30 Leszek Koltunski
7
    defaultConfig {
8
        applicationId "org.distorted.magic"
9 86cbdab1 Leszek Koltunski
        minSdkVersion 21
10 66e777b0 Leszek Koltunski
        targetSdkVersion 29
11 0c52af30 Leszek Koltunski
        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 66e777b0 Leszek Koltunski
    implementation 'com.google.firebase:firebase-analytics:17.3.0'
27 0c52af30 Leszek Koltunski
28
    api project(':distorted-library')
29 66e777b0 Leszek Koltunski
    implementation 'androidx.appcompat:appcompat:1.1.0'
30
    implementation 'com.google.android.material:material:1.1.0'
31 0c52af30 Leszek Koltunski
}