summaryrefslogtreecommitdiff
path: root/vdrmanager/app/build.gradle
blob: e645308ce1d31cad08b6e3a1af26f0cd35d704e6 (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
apply plugin: 'com.android.application'

android {
    signingConfigs {
        config {
            keyAlias 'vdrmanager'
            keyPassword 'HGr6du07'
            storeFile file('/home/lado/development/android/keystores/vdrmanager/release.jks')
            storePassword 'HGr6du07'
        }
    }
    compileSdkVersion 23
    buildToolsVersion '23.0.2'
    defaultConfig {
        applicationId "de.bjusystems.vdrmanager"
        minSdkVersion 8
        targetSdkVersion 23
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
            zipAlignEnabled true
        }
    }
}

dependencies {
    compile files('libs/ormlite-android-4.47.jar')
    compile files('libs/ormlite-core-4.47.jar')
    compile files('libs/slf4j-android-1.6.1-RC1.jar')
    compile files('libs/svdrp4j-1.1.0-SNAPSHOT.jar')
    compile 'com.android.support:support-v4:24.0.0-alpha1'
    compile 'com.android.support:appcompat-v7:24.0.0-alpha1'
}