Skip to content

Commit

Permalink
update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Zacharia2 committed Nov 30, 2024
1 parent fc5bbdf commit 3fe1217
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
jvmTarget = String.valueOf(JavaVersion.VERSION_11)
}

packagingOptions {
Expand Down Expand Up @@ -88,7 +88,7 @@ configurations.configureEach {
//}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20"
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.20'
implementation 'androidx.fragment:fragment:1.6.2'
implementation 'androidx.annotation:annotation:1.8.2'
implementation 'androidx.appcompat:appcompat:1.6.1'
Expand All @@ -99,7 +99,7 @@ dependencies {

// Jgit
implementation 'org.eclipse.jgit:org.eclipse.jgit:6.9.0.202403050737-r'
implementation "org.eclipse.jgit:org.eclipse.jgit.ssh.jsch:6.9.0.202403050737-r"
implementation 'org.eclipse.jgit:org.eclipse.jgit.ssh.jsch:6.9.0.202403050737-r'

// ViewModel and LiveData
runtimeOnly 'androidx.lifecycle:lifecycle-extensions:2.2.0'
Expand All @@ -115,8 +115,8 @@ dependencies {
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'

// Application Crash Reports
implementation "ch.acra:acra-mail:5.9.7" // max
implementation "ch.acra:acra-dialog:5.9.7" // max
implementation 'ch.acra:acra-mail:5.9.7' // max
implementation 'ch.acra:acra-dialog:5.9.7' // max

// Debug and Test
debugImplementation 'com.facebook.stetho:stetho:1.6.0'
Expand Down

0 comments on commit 3fe1217

Please sign in to comment.