rusefi-1/android/app/build.gradle

57 lines
1.7 KiB
Groovy
Raw Normal View History

2020-06-24 15:26:54 -07:00
apply plugin: 'com.android.application'
2020-07-12 20:51:54 -07:00
apply from: '../../android/dependencies.gradle'
2020-06-24 15:26:54 -07:00
android {
2020-07-12 15:53:53 -07:00
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
2020-07-03 10:03:11 -07:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2020-06-24 15:26:54 -07:00
compileSdkVersion 30
buildToolsVersion "30.0.0"
defaultConfig {
applicationId "com.rusefi.app"
2020-07-24 09:25:24 -07:00
// Version 21 = Android_5.0_Lollipop
2020-06-28 22:41:39 -07:00
minSdkVersion 21
2020-06-24 15:26:54 -07:00
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
}
}
}
dependencies {
2020-07-03 10:03:11 -07:00
implementation project(':ecu_io')
2020-08-15 19:42:58 -07:00
implementation project(':autoupdate')
2020-07-05 11:29:59 -07:00
implementation project(':logging-api')
2020-07-01 21:19:55 -07:00
implementation project(':shared_io')
2020-08-15 17:46:52 -07:00
implementation project(':models')
implementation libs.annotations
2020-07-01 21:19:55 -07:00
2020-06-28 22:41:39 -07:00
implementation files('lib/dfu_java.jar')
2020-06-24 17:02:05 -07:00
implementation 'com.github.mik3y:usb-serial-for-android:v2.2.3'
2020-06-24 15:26:54 -07:00
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.navigation:navigation-fragment:2.1.0'
implementation 'androidx.navigation:navigation-ui:2.1.0'
2020-08-15 18:49:39 -07:00
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
2020-07-12 20:51:54 -07:00
2020-06-24 15:26:54 -07:00
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2020-07-12 20:51:54 -07:00
testImplementation libs.junit
2020-06-24 15:26:54 -07:00
}