Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
trOnk12 committed Oct 6, 2023
1 parent 23656ca commit 198d256
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 30 deletions.
36 changes: 18 additions & 18 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id "com.android.application" version "8.1.0"
id 'com.android.application'
id 'kotlin-kapt'
id "org.jetbrains.kotlin.android" version "1.5.31"
id 'org.jetbrains.kotlin.android'
id 'com.google.dagger.hilt.android'
// id 'org.jlleitschuh.gradle.ktlint' version '11.2.0'
id 'org.jlleitschuh.gradle.ktlint' version '11.2.0'
}

android {
Expand Down Expand Up @@ -34,7 +34,7 @@ android {
}
}
compileOptions {
// coreLibraryDesugaringEnabled true
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
Expand All @@ -45,7 +45,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.4.3'
kotlinCompilerExtensionVersion '1.4.2'
}
packagingOptions {
resources {
Expand All @@ -54,13 +54,13 @@ android {
excludes += '/META-INF/LICENSE-notice.md'
}
}
// testOptions {
// packagingOptions {
// jniLibs {
// useLegacyPackaging true
// }
// }
// }
testOptions {
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}
}
kapt {
arguments {
arg("skipPrivatePreviews", "true")
Expand All @@ -69,9 +69,9 @@ android {
}

dependencies {
// implementation project(':components')
implementation project(':components')
//Desugaring for use of java.time in api lower then 26
// coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'

//Base android deps
implementation 'androidx.core:core-ktx:1.9.0'
Expand Down Expand Up @@ -156,7 +156,7 @@ dependencies {
tasks.withType(Test) {
useJUnitPlatform()
}
//
//kapt {
// correctErrorTypes true
//}

kapt {
correctErrorTypes true
}
16 changes: 5 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,13 @@ buildscript {
compose_version = '1.3.3'
ktor_version = '2.3.4'
}
dependencies {

}

}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id "com.android.application" version "8.1.0" apply false
id "com.android.library" version "8.1.0" apply false
id "org.jetbrains.kotlin.android" version "1.5.31" apply false
// id 'app.cash.paparazzi' version '1.2.0' apply false

// id 'com.android.library' version '7.4.1' apply false
// id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id 'app.cash.paparazzi' version '1.2.0' apply false
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.10' apply false
id 'com.google.dagger.hilt.android' version '2.45' apply false
// id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencyResolutionManagement {
rootProject.name = "Loudius"
include ':app'
include ':custom-ktlint-rules'
//include ':components'
include ':components'

0 comments on commit 198d256

Please sign in to comment.