blob: 5b08d7511b90424f9240c28b951216a1f1b6c438 (
plain)
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
|
apply plugin: 'com.android.application'
android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
signingConfigs {
config {
}
}
compileSdkVersion 26
defaultConfig {
applicationId "de.bjusystems.vdrmanager"
minSdkVersion 15
targetSdkVersion 26
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
zipAlignEnabled true
}
}
}
dependencies {
compile 'com.android.support:support-v4:26.1.0'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.j256.ormlite:ormlite-android:4.48'
compile 'com.j256.ormlite:ormlite-core:4.48'
compile 'org.slf4j:slf4j-android:1.7.19'
compile 'org.hampelratte:svdrp4j:1.1.1'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
}
|