forked from oasisfeng/island
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (44 loc) · 1.62 KB
/
Copy pathbuild.gradle
File metadata and controls
55 lines (44 loc) · 1.62 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
apply plugin: 'com.android.feature'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 21
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
baseFeature true
dataBinding.enabled true
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
check 'NewApi'
abortOnError true
xmlReport false
textReport true
textOutput "stdout"
}
repositories.flatDir { dirs 'libs' }
}
dependencies {
application project(':assembly')
feature project(':engine')
feature project(':fileprovider')
feature project(':installer')
feature project(":watcher")
implementation project(':shared')
implementation project(':deagle')
implementation project(':biometric')
implementation 'androidx.lifecycle:lifecycle-common-java8:2.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.0.0'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'eu.chainfire:libsuperuser:1.0.0.201510071325'
implementation 'uk.co.samuelwall:material-tap-target-prompt:2.0.1'
implementation(name: 'setup-wizard-lib-platform-release', ext: 'aar')
androidTestImplementation 'org.mockito:mockito-android:2.8.9'
androidTestImplementation 'androidx.test:runner:1.1.1'
}