-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
73 lines (70 loc) · 2.43 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
68
69
70
71
72
73
apply plugin: 'com.android.application'
android {
signingConfigs {
config {
keyAlias 'key0'
keyPassword 'physicist033'
storeFile file('P:/WORK/Keys/QR_Code_generator.jks')
storePassword 'preonsPranavRaut033!P'
}
}
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.college.project.qrcodeprotection"
minSdkVersion 15
targetSdkVersion 26
versionCode 3
versionName "1.0.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.config
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
zipAlignEnabled true
signingConfig signingConfigs.config
}
debug {
signingConfig signingConfigs.config
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
productFlavors {
}
}
dependencies {
implementation 'com.google.firebase:firebase-messaging:11.6.0'
implementation 'com.google.firebase:firebase-invites:11.6.0'
implementation 'com.google.firebase:firebase-core:11.6.0'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile project(path: ':Utilities')
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'me.dm7.barcodescanner:zxing:1.9.3'
compile 'com.google.firebase:firebase-storage:11.6.0'
compile 'com.google.firebase:firebase-auth:11.6.0'
compile 'com.google.firebase:firebase-crash:11.6.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:26.1.0'
compile 'org.jetbrains:annotations-java5:15.0'
compile 'com.github.mancj:SlideUp-Android:2.2.5'
compile 'uk.co.samuelwall:material-tap-target-prompt:2.4.0'
compile 'org.sufficientlysecure:donations:2.5'
testCompile 'junit:junit:4.12'
}
allprojects {
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
}
apply plugin: 'com.google.gms.google-services'