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/AndroidStudioProjects/MagicCube/threedcell.keystore')
|
9
|
keyAlias = 'distorted'
|
10
|
}
|
11
|
}
|
12
|
compileSdkVersion 34
|
13
|
|
14
|
defaultConfig {
|
15
|
applicationId "org.distorted.magic"
|
16
|
minSdkVersion 21
|
17
|
targetSdkVersion 34
|
18
|
versionCode 88
|
19
|
versionName "2.0.0"
|
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
|
|
34
|
buildFeatures {
|
35
|
buildConfig = true
|
36
|
}
|
37
|
|
38
|
namespace 'org.distorted.main'
|
39
|
|
40
|
}
|
41
|
|
42
|
dependencies {
|
43
|
api project(':distorted-library-object')
|
44
|
api project(':distorted-component-flags')
|
45
|
|
46
|
implementation platform('com.google.firebase:firebase-bom:32.1.1')
|
47
|
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
|
implementation ('androidx.appcompat:appcompat:1.6.1')
|
58
|
implementation ('androidx.preference:preference:1.2.1')
|
59
|
implementation ('androidx.work:work-runtime:2.9.0')
|
60
|
implementation ('com.google.android.material:material:1.11.0')
|
61
|
//implementation "com.android.billingclient:billing:5.1.0"
|
62
|
implementation project(path: ':distorted-os-android')
|
63
|
}
|