blob: 0c26b2aa7b906094a4872becc97c41637de525b6 [file] [log] [blame]
apply plugin: 'android'
dependencies {
compile project(':lib')
}
android {
compileSdkVersion 15
buildToolsVersion "18.0.1"
productFlavors {
x86 {
ndk {
abiFilter "x86"
}
}
arm {
ndk {
abiFilter "armeabi-v7a"
}
}
mips {
ndk {
abiFilter "mips"
}
}
}
}