This repository was archived by the owner on Jan 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (45 loc) · 1.32 KB
/
build.gradle
File metadata and controls
52 lines (45 loc) · 1.32 KB
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "io.Pushjet.api"
minSdkVersion 15
targetSdkVersion 23
versionCode 6
versionName "1.4"
}
buildTypes {
release {
minifyEnabled false
}
}
lintOptions {
abortOnError false
}
useLibrary 'org.apache.http.legacy'
}
repositories {
mavenCentral()
maven { url "http://dl.bintray.com/journeyapps/maven" }
// maven { url 'http://clinker.47deg.com/nexus/content/groups/public' }
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.zxing:core:2.2'
compile 'com.google.firebase:firebase-core:9.8.0'
compile 'com.google.firebase:firebase-iid:9.8.0'
compile 'com.google.firebase:firebase-messaging:9.8.0'
compile 'com.journeyapps:zxing-android-embedded:2.3.0@aar'
compile 'com.journeyapps:zxing-android-integration:2.3.0@aar'
compile 'com.android.support:support-v4:24.0.0-alpha2'
compile 'com.android.support:appcompat-v7:24.0.0-alpha2'
}
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all"
}
}
}
apply plugin: 'com.google.gms.google-services'