Skip to content
Snippets Groups Projects
build.gradle 636 B
Newer Older
apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.nightscout.android"
        minSdkVersion 15
        targetSdkVersion 21
    }

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

dependencies {
    compile files('libs/logback-android-1.1.1-3.jar')
    compile files('libs/mongo-java-driver-3.0.2.jar')
    compile files('libs/physicaloidlibrary.jar')
    compile files('libs/slf4j-api-1.7.2.jar')
}