2013-12-23 19:26:55 +00:00
|
|
|
buildscript {
|
2013-12-24 21:28:24 +00:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2014-02-17 02:45:08 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:0.8.+'
|
2013-12-24 21:28:24 +00:00
|
|
|
}
|
2013-12-23 19:26:55 +00:00
|
|
|
}
|
|
|
|
apply plugin: 'android'
|
|
|
|
|
|
|
|
dependencies {
|
2013-12-24 21:28:24 +00:00
|
|
|
compile fileTree(dir: 'libs', include: '*.jar')
|
|
|
|
compile fileTree(dir: "$buildDir/native-libs", include: 'native-libs.jar')
|
2013-12-23 19:26:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2013-12-24 21:28:24 +00:00
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion "19.0.1"
|
2013-12-23 19:26:55 +00:00
|
|
|
|
2013-12-24 21:28:24 +00:00
|
|
|
task nativeLibsToJar(type: Zip, description: 'create a jar archive of the native libs') {
|
|
|
|
destinationDir file("$buildDir/native-libs")
|
|
|
|
baseName 'native-libs'
|
|
|
|
extension 'jar'
|
|
|
|
from fileTree(dir: 'libs', include: '**/*.so')
|
|
|
|
into 'lib/'
|
|
|
|
}
|
2013-12-23 19:26:55 +00:00
|
|
|
|
2013-12-24 21:28:24 +00:00
|
|
|
tasks.withType(Compile) {
|
|
|
|
compileTask -> compileTask.dependsOn(nativeLibsToJar)
|
|
|
|
}
|
2014-02-17 02:45:08 +00:00
|
|
|
|
2013-12-24 21:28:24 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
java.srcDirs = ['src']
|
|
|
|
resources.srcDirs = ['src']
|
|
|
|
aidl.srcDirs = ['src']
|
|
|
|
renderscript.srcDirs = ['src']
|
|
|
|
res.srcDirs = ['res']
|
|
|
|
assets.srcDirs = ['assets']
|
|
|
|
}
|
2013-12-23 19:26:55 +00:00
|
|
|
|
2013-12-24 21:28:24 +00:00
|
|
|
// Move the tests to tests/java, tests/res, etc...
|
|
|
|
instrumentTest.setRoot('tests')
|
|
|
|
|
|
|
|
// Move the build types to build-types/<type>
|
|
|
|
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
|
|
|
|
// This moves them out of them default location under src/<type>/... which would
|
|
|
|
// conflict with src/ being used by the main source set.
|
|
|
|
// Adding new build types or product flavors should be accompanied
|
|
|
|
// by a similar customization.
|
|
|
|
debug.setRoot('build-types/debug')
|
|
|
|
release.setRoot('build-types/release')
|
|
|
|
}
|
2014-02-17 02:45:08 +00:00
|
|
|
|
2013-12-24 21:28:24 +00:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
2014-02-17 02:45:08 +00:00
|
|
|
if (System.getenv("KEYSTORE") != null)
|
|
|
|
{
|
|
|
|
storeFile file(System.getenv("KEYSTORE"))
|
|
|
|
storePassword System.getenv("KEYSTORE_PASSWORD")
|
|
|
|
keyAlias System.getenv("KEY_ALIAS")
|
|
|
|
keyPassword System.getenv("KEY_PASSWORD")
|
|
|
|
}
|
2013-12-24 21:28:24 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-17 02:45:08 +00:00
|
|
|
|
2013-12-24 21:28:24 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
|
|
|
}
|
2013-12-23 19:26:55 +00:00
|
|
|
}
|