UsbSerial/usbserial/build.gradle

26 wiersze
667 B
Groovy

apply plugin: 'com.android.library'
android {
group = 'com.felhr.usbserial'
version = '1.0.0'
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
compileOptions {
encoding "UTF-8"
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
defaultConfig {
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
}
dependencies {
compile 'com.android.support:support-v4:23.1.1'
}
}