apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.0"

    defaultConfig {
        applicationId "com.nispok.snackbar"
        minSdkVersion 15
        targetSdkVersion 21
        versionCode 1
        versionName "1.0.0"
    }

    signingConfigs {
        release {
            storeFile file(NISPOK_RELEASE_KEYSTORE_PATH)
            storePassword NISPOK_RELEASE_PASSWORD
            keyAlias NISPOK_RELEASE_KEY_ALIAS
            keyPassword NISPOK_RELEASE_KEY_PASSWORD
        }
    }

    buildTypes {
        release {
            signingConfig signingConfigs.release
        }
    }

}

dependencies {
    compile project(':lib')
}
