blob: 646195d8a463789e3e74d3993085c3b6806d1f74 [file] [log] [blame]
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.2'
defaultConfig {
applicationId 'com.android.profilerapp'
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName '1.0'
ndk {
moduleName "profilermodule"
stl "c++_shared"
ldLibs "log"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'net.sf.trove4j:trove4j:+'
compile project(':supportlib')
}