blob: 9df32609bdc2faf7bcb0c9ae909687f48a81d926 [file] [log] [blame]
buildscript {
repositories {
maven { url '../../../../out/host/gradle/repo' }
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.0-SNAPSHOT'
}
}
apply plugin: 'android'
android {
compileSdkVersion 18
buildToolsVersion "18.1.1"
defaultConfig {
minSdkVersion 8
targetSdkVersion 16
renderscriptTargetApi 18
renderscriptSupportMode true
}
productFlavors {
x86 {
ndk {
abiFilter "x86"
}
}
arm {
ndk {
abiFilter "armeabi-v7a"
}
}
mips {
ndk {
abiFilter "mips"
}
}
}
}