third_parties/mmssmiley/build.gradle
author Da Risk <da_risk@beem-project.com>
Fri, 01 May 2015 00:23:52 +0200
changeset 1054 0e4be11f7b13
parent 1046 e7c2612c13b8
child 1073 274f38e8c8a9
permissions -rw-r--r--
ContactList: Call adapter.remove() method on main thread. This fix a long time IndexOutOfBoundsException.

apply plugin: 'com.android.library'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.0"

    defaultConfig {
        minSdkVersion 6
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}