Skip to content

Instantly share code, notes, and snippets.

@matiasgualino
Last active April 29, 2016 08:45
Show Gist options
  • Save matiasgualino/a3bd406be92c8ce0fb8671776d9ade24 to your computer and use it in GitHub Desktop.
Save matiasgualino/a3bd406be92c8ce0fb8671776d9ade24 to your computer and use it in GitHub Desktop.
MercadoPago Android SDK Gradle Snippet
// RESOLVER ESTE TEMA
android {
lintOptions {
abortOnError false
}
}
// SOLO PARA TEST
repositories {
maven {
url 'https://dl.bintray.com/matiasgualino/maven'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile ('com.mercadopago:sdk:PRE_BETA@aar') { transitive = true }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment