-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathbuild.gradle
executable file
·51 lines (45 loc) · 1.28 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
apply plugin: 'com.android.application'
apply from: project(':common').projectDir.absolutePath + '/variables.gradle'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.6'
}
}
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.abrenoch.hyperiongrabber"
minSdkVersion 19
targetSdkVersion 26
versionCode 1012
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
api project(path: ':common')
implementation "com.android.support:appcompat-v7:$android_support_version"
implementation "com.android.support:support-v4:$android_support_version"
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
}