1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 11:44:53 +08:00
serial/android/build.gradle
Cheng Zhong 8acb986415 Added android support
1. Added Android NDK support for serial.
2. Give a simple sample app for android.
2016-01-21 18:19:15 +08:00

25 lines
577 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
//classpath "com.android.tools.build:gradle-experimental:0.6.0-alpha5"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}