-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
67 lines (58 loc) · 1.33 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.android.application'
android
{
compileSdkVersion 25
buildToolsVersion "25.0.2"
dexOptions
{
javaMaxHeapSize "2g"
}
defaultConfig
{
applicationId "com.mauriciotogneri.fileexplorer"
minSdkVersion 14
targetSdkVersion 25
versionCode 11
versionName "1.1.1"
}
signingConfigs
{
debug
{
storeFile file("debug.keystore")
}
release
{
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
storePassword RELEASE_STORE_PASSWORD
storeFile file(RELEASE_STORE_FILE)
}
}
compileOptions
{
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes
{
debug
{
debuggable true
}
release
{
minifyEnabled false
signingConfig signingConfigs.release
}
}
}
dependencies
{
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.google.firebase:firebase-core:10.2.0'
compile 'com.google.firebase:firebase-crash:10.2.0'
}