mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-16 01:02:06 +01:00
5d4aa76d19
Use Android's Base64 implementation when on Android, otherwise, when on Java7, use the existing one.
12 lines
434 B
Groovy
12 lines
434 B
Groovy
description = """\
|
|
Smack extensions.
|
|
Classes and methods that implement support for the various XMPP XEPs
|
|
(Multi-User Chat, PubSub, …) and other XMPP extensions."""
|
|
|
|
// Note that the test dependencies (junit, …) are inferred from the
|
|
// sourceSet.test of the core subproject
|
|
dependencies {
|
|
compile project(':smack-core')
|
|
testCompile project(':smack-core').sourceSets.test.runtimeClasspath
|
|
testCompile project(':smack-java7')
|
|
}
|