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

36 wiersze
1.1 KiB
Groovy
Czysty Zwykły widok Historia

apply plugin: 'com.android.library'
2014-04-01 06:40:49 +00:00
android {
compileSdkVersion 29
buildToolsVersion '29.0.3'
2014-04-01 06:40:49 +00:00
defaultConfig {
minSdkVersion 17
targetSdkVersion 29
consumerProguardFiles 'proguard-rules.pro'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2019-10-26 13:40:40 +00:00
testInstrumentationRunnerArguments = [ // Raspi Windows LinuxVM ...
'rfc2217_server_host': '192.168.0.100',
2019-10-26 13:40:40 +00:00
'rfc2217_server_nonstandard_baudrates': 'true', // true false false
2019-10-20 20:12:56 +00:00
]
2014-04-01 06:40:49 +00:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2014-04-01 06:40:49 +00:00
}
dependencies {
implementation "androidx.annotation:annotation:1.1.0"
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-core:1.10.19'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'commons-net:commons-net:3.8.0'
androidTestImplementation 'org.apache.commons:commons-lang3:3.11'
}
2019-10-06 08:31:34 +00:00
//apply from: 'publishToMavenLocal.gradle'
2019-10-20 20:12:56 +00:00
//apply from: 'coverage.gradle'