forked from Chainfire/librootjava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (31 loc) · 1.11 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "eu.chainfire.librootjava_example"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'eu.chainfire:libsuperuser:1.0.0.+'
// --- librootjava dependency ---
/* Use module sources directly */
//implementation project(':librootjava')
/* Use local Maven repository version, installed by installMavenLocal Gradle task */
//implementation('eu.chainfire:librootjava:1.3.0-SNAPSHOT') { changing = true }
/* Use bintray/jcenter version */
implementation 'eu.chainfire:librootjava:1.3.0'
}