app/build.gradle
author Da Risk <da_risk@beem-project.com>
Mon, 16 Mar 2015 17:35:25 +0100
changeset 1051 4e7f5fd5c6e0
parent 1050 f2db8a101b9e
child 1052 25fea6b849dc
permissions -rw-r--r--
Just set a warning lint for invalid package

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 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 'org.jitsi:org.otr4j:0.22'
}

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