mirror of
https://github.com/fr3ts0n/AndrOBD.git
synced 2026-06-02 10:34:37 -04:00
Agent-Logs-Url: https://github.com/fr3ts0n/AndrOBD/sessions/1eb2c20f-ce20-4a28-b9ef-1a818e5f2f2a Co-authored-by: fr3ts0n <2822578+fr3ts0n@users.noreply.github.com>
51 lines
1.4 KiB
Groovy
51 lines
1.4 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
namespace = 'com.fr3ts0n.ecu.gui.androbd'
|
|
compileSdk 36
|
|
|
|
buildFeatures {
|
|
resValues = true
|
|
buildConfig = true
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 17
|
|
targetSdkVersion 36
|
|
versionCode 20709
|
|
versionName 'V2.7.9'
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
resValue "string", "app_version", versionName
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
|
|
lintOptions {
|
|
// Override lint error on targetSdkVersion
|
|
abortOnError = false
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':plugin')
|
|
implementation project(':library')
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.github.mik3y:usb-serial-for-android:3.9.0'
|
|
implementation 'com.github.anastr:speedviewlib:1.6.1'
|
|
implementation 'androidx.annotation:annotation:1.9.1'
|
|
implementation 'androidx.core:core:1.12.0'
|
|
|
|
// Local (JVM) unit tests
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
// Android instrumented tests
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
|
androidTestImplementation 'androidx.test:runner:1.6.1'
|
|
androidTestImplementation 'androidx.test:rules:1.6.1'
|
|
}
|