Download this file

build.gradle    41 lines (34 with data), 922 Bytes

apply plugin: 'com.android.application'

android {
    compileSdkVersion 15
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.worldline.alfredo"
        minSdkVersion 15
        versionCode 20150522
        versionName "1.0.4"
    }

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

    packagingOptions {
        exclude 'META-INF/LGPL2.1'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }
}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.google.code.gson:gson:1.7.1'
    compile files('libs/jackson-core-lgpl-1.8.5.jar')
    compile files('libs/jackson-mapper-lgpl-1.8.5.jar')
    compile files('libs/t21c2dm_library-lib-v1.0.jar')
}

android {
    lintOptions {
        abortOnError false
    }
}