Skip to content

Commit

Permalink
FIX: jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-muenker committed Sep 23, 2023
1 parent 21d95a1 commit b39d04c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ android {
defaultConfig {
applicationId = "com.frosch2010.fuzzywuzzy_kotlin"
minSdk = 24
targetSdk = 33
targetSdk = 34
versionCode = 1
versionName = "1.0"
versionName = "1.0.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -27,17 +27,17 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
}

dependencies {

implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.9.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
Expand Down
4 changes: 2 additions & 2 deletions fuzzywuzzy_kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ dependencies {
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
testImplementation( "org.mockito:mockito-core:+")
androidTestImplementation("org.mockito:mockito-android:+")
testImplementation("org.mockito:mockito-core:5.5.0")
androidTestImplementation("org.mockito:mockito-android:5.5.0")
testImplementation("org.mockito.kotlin:mockito-kotlin:5.1.0")
}

Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pluginManagement {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") }
}
}
dependencyResolutionManagement {
Expand Down

0 comments on commit b39d04c

Please sign in to comment.