app/build.gradle
author Da Risk <da_risk@beem-project.com>
Sun, 15 Mar 2015 21:14:17 +0100
changeset 1049 41c9aa696059
parent 1048 cd41ebc93e78
child 1050 e7c2612c13b8
permissions -rw-r--r--
Move stroke to its own module

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.0"

    defaultConfig {
        applicationId "com.beem.project.beem"
        minSdkVersion 6
        targetSdkVersion 22
        versionCode 15
        versionName "0.1.8"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    lintOptions {
        abortOnError false
    }

}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile project(":third_parties:memorizingtrustmanager")
    compile project(":third_parties:stroke")
    compile 'org.jitsi:org.otr4j:0.22'
}

apply from: "$project.rootDir/tools/android-checkstyle.gradle"