2022-01-02 21:37:22 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
2022-11-29 21:31:20 +01:00
|
|
|
id 'org.jetbrains.kotlin.android'
|
2022-01-02 21:37:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-11-29 21:31:20 +01:00
|
|
|
namespace 'ch.broillet.jarvis.android'
|
|
|
|
compileSdk 33
|
2022-01-02 21:37:22 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
2022-11-29 21:31:20 +01:00
|
|
|
applicationId "ch.broillet.jarvis.android"
|
|
|
|
minSdk 32
|
|
|
|
targetSdk 33
|
2022-01-02 21:37:22 +01:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
|
|
|
|
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_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
compose true
|
|
|
|
}
|
|
|
|
composeOptions {
|
2022-11-29 21:31:20 +01:00
|
|
|
kotlinCompilerExtensionVersion '1.1.1'
|
2022-01-02 21:37:22 +01:00
|
|
|
}
|
|
|
|
packagingOptions {
|
|
|
|
resources {
|
|
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
2022-11-29 21:31:20 +01:00
|
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
|
|
|
|
implementation 'androidx.activity:activity-compose:1.6.1'
|
2022-01-02 21:37:22 +01:00
|
|
|
implementation "androidx.compose.ui:ui:$compose_version"
|
|
|
|
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
|
2022-11-29 21:31:20 +01:00
|
|
|
implementation 'androidx.compose.material3:material3:1.1.0-alpha02'
|
|
|
|
implementation 'com.google.android.material:material:1.7.0'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
|
|
|
|
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
|
|
|
|
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
|
|
|
|
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
|
|
|
|
|
|
|
|
implementation "androidx.navigation:navigation-compose:2.6.0-alpha04"
|
2022-12-01 19:59:36 +01:00
|
|
|
implementation 'com.google.accompanist:accompanist-permissions:0.23.1'
|
|
|
|
implementation 'com.google.accompanist:accompanist-insets:0.23.1'
|
|
|
|
|
|
|
|
implementation "com.google.accompanist:accompanist-systemuicontroller:0.23.1"
|
2022-11-29 21:31:20 +01:00
|
|
|
|
|
|
|
implementation 'com.github.squti:Android-Wave-Recorder:1.7.0'
|
2022-01-06 11:39:21 +01:00
|
|
|
implementation("com.squareup.okhttp3:okhttp:4.9.3")
|
2022-01-06 16:09:24 +01:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.9'
|
2022-12-02 15:01:23 +01:00
|
|
|
implementation ('io.socket:socket.io-client:2.0.0') {
|
|
|
|
exclude group: 'org.json', module: 'json'
|
|
|
|
}
|
2022-01-02 21:37:22 +01:00
|
|
|
}
|