Project

General

Profile

Download (1.7 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / build.gradle @ 05c044a5

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
    signingConfigs {
7
        release {
8
            storeFile file('/Users/leszek/Programs/MagicCube/threedcell.keystore')
9
            keyAlias = 'distorted'
10
        }
11
    }
12
    compileSdkVersion 32
13

    
14
    defaultConfig {
15
        applicationId "org.distorted.magic"
16
        minSdkVersion 21
17
        targetSdkVersion 32
18
        versionCode 62
19
        versionName "1.11.4"
20
    }
21

    
22
    buildTypes {
23
        release {
24
            minifyEnabled false
25
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
26
            signingConfig signingConfigs.release
27
            manifestPlaceholders = [crashlyticsCollectionEnabled:"true"]
28
        }
29
        debug {
30
            manifestPlaceholders = [crashlyticsCollectionEnabled:"false"]
31
        }
32
    }
33
    namespace 'org.distorted.main'
34

    
35
}
36

    
37
dependencies {
38
    api project(':distorted-objectlib')
39
    api project(':distorted-flags')
40

    
41
    implementation platform('com.google.firebase:firebase-bom:30.2.0')
42
    implementation 'com.google.firebase:firebase-messaging'
43
    implementation 'com.google.firebase:firebase-analytics'
44
    implementation 'com.google.firebase:firebase-crashlytics'
45
    implementation 'com.google.firebase:firebase-inappmessaging-display'
46
    implementation 'com.google.android.play:core:1.10.3'
47
    implementation 'androidx.appcompat:appcompat:1.5.1'
48
    implementation "androidx.work:work-runtime:2.7.1"
49
    implementation 'com.google.android.material:material:1.7.0'
50
    implementation project(path: ':distorted-puzzle-jsons')
51
    implementation project(path: ':distorted-puzzle-dmesh')
52
}
(2-2/3)