83 lines
2.6 KiB
Groovy
83 lines
2.6 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'kotlin-kapt'
|
|
id 'dagger.hilt.android.plugin'
|
|
}
|
|
|
|
android {
|
|
namespace 'llc.arma.ble'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
applicationId "llc.arma.ble"
|
|
minSdk 24
|
|
targetSdk 33
|
|
versionCode 2
|
|
versionName "1.1"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '17'
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion '1.4.3'
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
|
|
implementation 'androidx.activity:activity-compose:1.7.2'
|
|
implementation "androidx.compose.ui:ui:1.5.0-beta01"
|
|
implementation "androidx.compose.ui:ui-tooling-preview:1.5.0-beta01"
|
|
implementation 'androidx.compose.material3:material3:1.2.0-alpha02'
|
|
implementation 'androidx.compose.material:material:1.5.0-beta01'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.5.0-beta01"
|
|
debugImplementation "androidx.compose.ui:ui-tooling:1.5.0-beta01"
|
|
debugImplementation "androidx.compose.ui:ui-test-manifest:1.5.0-beta01"
|
|
|
|
implementation "androidx.compose.material:material-icons-extended:1.5.0-beta01"
|
|
|
|
implementation 'androidx.core:core-splashscreen:1.0.1'
|
|
implementation 'androidx.navigation:navigation-compose:2.5.3'
|
|
|
|
implementation("androidx.hilt:hilt-navigation-compose:1.1.0-alpha01")
|
|
implementation('com.google.dagger:hilt-android:2.45')
|
|
kapt('com.google.dagger:hilt-android-compiler:2.45')
|
|
kapt("androidx.hilt:hilt-compiler:1.0.0")
|
|
|
|
implementation "com.google.accompanist:accompanist-permissions:0.26.3-beta"
|
|
|
|
implementation "com.patrykandpatrick.vico:core:1.6.6"
|
|
implementation "com.patrykandpatrick.vico:compose:1.6.6"
|
|
implementation "com.patrykandpatrick.vico:compose-m3:1.6.6"
|
|
|
|
} |