Project

General

Profile

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

magiccube / build.gradle @ 422ebaef

1 0c52af30 Leszek Koltunski
apply plugin: 'com.android.application'
2 66e777b0 Leszek Koltunski
apply plugin: 'com.google.gms.google-services'
3 8aa9b077 Leszek Koltunski
apply plugin: 'com.google.firebase.crashlytics'
4 0c52af30 Leszek Koltunski
5
android {
6 f4ee4d70 Leszek Koltunski
    signingConfigs {
7
        release {
8 847f5370 leszek
            storeFile file('/Users/leszek/AndroidStudioProjects/MagicCube/threedcell.keystore')
9 f4ee4d70 Leszek Koltunski
            keyAlias = 'distorted'
10
        }
11
    }
12 8f08744c Leszek Koltunski
    compileSdkVersion 34
13 0c52af30 Leszek Koltunski
14
    defaultConfig {
15
        applicationId "org.distorted.magic"
16 86cbdab1 Leszek Koltunski
        minSdkVersion 21
17 8f08744c Leszek Koltunski
        targetSdkVersion 34
18 422ebaef leszek
        versionCode 91
19
        versionName "2.0.2"
20 0c52af30 Leszek Koltunski
    }
21
22
    buildTypes {
23
        release {
24
            minifyEnabled false
25
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
26 f4ee4d70 Leszek Koltunski
            signingConfig signingConfigs.release
27 4026e706 Leszek Koltunski
            manifestPlaceholders = [crashlyticsCollectionEnabled:"true"]
28
        }
29
        debug {
30
            manifestPlaceholders = [crashlyticsCollectionEnabled:"false"]
31 0c52af30 Leszek Koltunski
        }
32
    }
33 847f5370 leszek
34
    buildFeatures {
35
        buildConfig = true
36
    }
37
38 05c044a5 Leszek Koltunski
    namespace 'org.distorted.main'
39 0c52af30 Leszek Koltunski
40
}
41
42
dependencies {
43 1a7efafd leszek
    api project(':distorted-objectlib')
44
    api project(':distorted-flags')
45 3f7a4363 Leszek Koltunski
46 847f5370 leszek
    implementation platform('com.google.firebase:firebase-bom:32.1.1')
47 7c487ff4 Leszek Koltunski
    implementation ('com.google.firebase:firebase-analytics')
48
      {
49
      exclude module: "play-services-ads-identifier"
50
      exclude module: "play-services-measurement"
51
      exclude module: "play-services-measurement-sdk"
52
      }
53
    implementation ('com.google.firebase:firebase-crashlytics')
54
    implementation ('com.google.firebase:firebase-messaging')
55
    implementation ('com.google.firebase:firebase-inappmessaging-display')
56
    implementation ('com.google.android.play:core:1.10.3')
57 743b41d5 Leszek Koltunski
    implementation ('androidx.appcompat:appcompat:1.6.1')
58 ada8ab26 leszek
    implementation ('androidx.preference:preference:1.2.1')
59 d6bb1acb leszek
    implementation ('androidx.work:work-runtime:2.9.0')
60
    implementation ('com.google.android.material:material:1.11.0')
61 b985d92a Leszek Koltunski
    //implementation "com.android.billingclient:billing:5.1.0"
62 ed0ea1c5 Leszek Koltunski
    implementation project(path: ':distorted-os-android')
63 0c52af30 Leszek Koltunski
}