Remove build tools version

The latest Android Gradle plugin now set its default
build tools version so explicitly setting is not necessary.
pull/139/head
Henry Addo 2018-01-04 17:26:10 +01:00
rodzic b78dad5120
commit c228699a2f
4 zmienionych plików z 2 dodań i 7 usunięć

Wyświetl plik

@ -3,7 +3,6 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
defaultConfig {
applicationId "com.felhr.serialportexample"

Wyświetl plik

@ -3,7 +3,6 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
defaultConfig {
applicationId "com.felhr.serialportexamplesync"

Wyświetl plik

@ -1,7 +1,5 @@
VERSION_NAME=1.0
VERSION_CODE=1
ANDROID_BUILD_MIN_SDK_VERSION=12
ANDROID_BUILD_TARGET_SDK_VERSION=23
ANDROID_BUILD_SDK_VERSION=23
ANDROID_BUILD_TOOLS_VERSION=23.0.2

Wyświetl plik

@ -6,7 +6,6 @@ android {
version = '1.0.0'
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
compileOptions {
encoding "UTF-8"
@ -20,12 +19,12 @@ android {
}
//noinspection GroovyAssignabilityCheck
task deleteJar(type: org.gradle.api.tasks.Delete){
task deleteJar(type: org.gradle.api.tasks.Delete) {
delete 'eclipse_lib/usbserial.jar'
}
//noinspection GroovyAssignabilityCheck
task createJar(type: org.gradle.api.tasks.Copy){
task createJar(type: org.gradle.api.tasks.Copy) {
from('build/intermediates/bundles/release/')
into('eclipse_lib/')
include('classes.jar')