Skip to content

Commit

Permalink
changes requested
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh006 committed Oct 16, 2023
1 parent ca7ee56 commit 5f2ec50
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_12
targetCompatibility JavaVersion.VERSION_12
}

kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "12"
}

buildFeatures {
Expand Down Expand Up @@ -117,7 +117,7 @@ dependencies {
implementation("androidx.hilt:hilt-navigation-compose:1.0.0")
implementation "com.github.bumptech.glide:compose:1.0.0-alpha.1"
implementation "androidx.compose.material3:material3:1.1.1"
testImplementation("org.mockito:mockito-core:5.3.1")
testImplementation("org.mockito:mockito-core:2.1.0")

debugImplementation "androidx.compose.ui:ui-tooling:1.4.2"
implementation "androidx.compose.ui:ui-tooling-preview:1.4.2"
Expand All @@ -141,3 +141,11 @@ detekt {
config = files("${project.rootDir.absolutePath}/config/detekt/detekt.yml")
buildUponDefaultConfig = true
}

ktlint {
// android.set(true)
// reporters {
// reporter(ReporterType.PLAIN)
// reporter(ReporterType.HTML)
// }
}

0 comments on commit 5f2ec50

Please sign in to comment.