-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
72 lines (62 loc) · 1.83 KB
/
Copy pathbuild.gradle
File metadata and controls
72 lines (62 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
buildscript {
repositories {
jcenter()
mavenCentral()
mavenLocal()
maven { url 'https://maven.fabric.io/public' } // Twitter
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'io.fabric.tools:gradle:1.+' // Twitter
}
}
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
//apply plugin: 'io.fabric' // Twitter
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
jcenter()
mavenCentral()
mavenLocal()
maven { url 'https://maven.fabric.io/public' } // Twitter
maven {
url "https://maven.google.com"
}
google()
}
configurations {
provided
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleDynamicVersion
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
//noinspection GradleDynamicVersion
implementation 'com.android.support:support-annotations:27.1.1'
//noinspection GradleDynamicVersion
implementation 'com.google.android.gms:play-services-auth:8.3.0' // Google
implementation 'br.com.estudio89:sugar-orm:1.3.1'
implementation 'br.com.estudio89:sentry:1.1.1'
implementation 'br.com.estudio89:grabber:1.0'
implementation 'com.squareup:otto:1.3.5'
implementation 'com.squareup.okhttp:okhttp:2.4.0'
}
group = 'br.com.estudio89'
version = '1.0.44'