Skip to content
starter-chcp.gradle 407 B
Newer Older
wangqinghua's avatar
wangqinghua committed
// Plugin configuration

cdvPluginPostBuildExtras.add({

    //Needed for Jackson json lib
    android.packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }

    dependencies {
        compile 'com.fasterxml.jackson.core:jackson-core:2.4.4'
        compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'
        compile 'org.greenrobot:eventbus:3.0.0'
    }
});