This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (49 loc) · 2.4 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 plugin: 'ormgap'
android {
compileSdkVersion 26
defaultConfig {
applicationId "be.heh.plcmonitor"
minSdkVersion 22
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}
dependencies {
annotationProcessor group: 'com.google.dagger', name: 'dagger-compiler', version: '2.13'
compile group: 'com.afollestad.material-dialogs', name: 'core', version: '0.9.6.0'
compile group: 'com.android.support', name: 'cardview-v7', version: '26.1.0'
compile group: 'com.android.support', name: 'preference-v7', version: '26.1.0'
compile group: 'com.android.support', name: 'preference-v14', version: '26.1.0'
compile group: 'com.android.support', name: 'recyclerview-v7', version: '26.1.0'
compile group: 'com.j256.ormlite', name: 'ormlite-android', version: '5.0'
compile group: 'com.j256.ormlite', name: 'ormlite-core', version: '5.0'
compile group: 'com.j256.ormlite.cipher', name: 'ormlite-sqlcipher', version: '1.1', ext: 'aar'
compile group: 'com.google.dagger', name: 'dagger', version: '2.13'
compile group: 'com.takisoft.fix', name: 'preference-v7', version: '25.3.0.0'
compile group: 'io.reactivex.rxjava2', name: 'rxandroid', version: '2.0.1'
compile group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.1.7'
compile group: 'net.zetetic', name: 'android-database-sqlcipher', version: '3.5.9', ext: 'aar'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.6'
compile group: 'org.apache.commons', name: 'commons-text', version: '1.2'
compile 'com.android.support:preference-v7:26.1.0'
compile 'com.android.support:preference-v14:26.1.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}