app/build.gradle
author Frederic Barthelery <da_risk@beem-project.com>
Fri, 13 Nov 2015 18:15:37 +0100
changeset 1069 e47233095aab
parent 1053 757bdaef7d63
child 1071 af8866eba015
permissions -rw-r--r--
Switch to compileSdkVersion 23 Android Marshmallow !

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    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 true
        textReport true
        disable "MissingTranslation"
        warning "InvalidPackage"
    }

}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile project(":third_parties:memorizingtrustmanager")
    compile project(":third_parties:stroke")
    compile project(":third_parties:mmssmiley")
    compile 'com.android.support:support-v4:22.0.0'
    compile 'org.jitsi:org.otr4j:0.22'
}

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