usb-serial-for-android/usbSerialExamples/build.gradle

25 lines
452 B
Groovy

apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
testPackageName "com.hoho.android.usbserial.examples"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}
buildTypes {
release {
runProguard true
}
}
}
dependencies {
compile project(':usbSerialForAndroid')
}