Skip to content

Commit

Permalink
fix: update build gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
bgiori committed Aug 16, 2024
1 parent 5d3fb2f commit 840d8c2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 33 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'org.jetbrains.dokka'
apply plugin: 'org.jlleitschuh.gradle.ktlint'

buildscript {
ext.kotlin_version = '1.6.21'
ext.kotlin_version = '1.8.22'
ext.dokka_version = '1.4.32'

repositories {
Expand All @@ -16,10 +16,10 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.10"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$dokka_version"
classpath "io.github.gradle-nexus:publish-plugin:1.1.0"
classpath "org.jlleitschuh.gradle:ktlint-gradle:10.1.0"
classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.1"

}
}
Expand Down
3 changes: 0 additions & 3 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,9 @@ dependencies {
implementation 'androidx.navigation:navigation-ui:2.1.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'com.amplitude:android-sdk:2.39.8'
// implementation("com.amplitude:experiment-android-client:0.0.4")
implementation project(path: ':sdk')
implementation 'com.squareup.okhttp3:okhttp:4.2.2'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

This file was deleted.

2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.3")

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.json:json:20201115'
testImplementation 'org.json:json:20240303'
testImplementation project(path: ':sdk')
testImplementation "io.mockk:mockk:1.12.0"
}
Expand Down

0 comments on commit 840d8c2

Please sign in to comment.