Skip to content

Commit

Permalink
publication changes
Browse files Browse the repository at this point in the history
  • Loading branch information
devazimjon committed Oct 31, 2024
1 parent 7640f78 commit 0719d63
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,4 @@ dependencies {
// implementation("com.github.devazimjon:MvvmCrud:1.2")
implementation(project(":image-preview"))
}

3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
// alias(libs.plugins.ksp) apply false
// alias(libs.plugins.dagger.hilt) apply false
// alias(libs.plugins.kotlinx.serialization) apply false
alias(libs.plugins.android.library) apply false
}
7 changes: 4 additions & 3 deletions image-preview/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "11"
}

buildFeatures {
Expand All @@ -39,6 +39,7 @@ android {
composeOptions {
kotlinCompilerExtensionVersion = "1.5.15"
}
buildToolsVersion = "34.0.0"
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jdk:
- openjdk17
- openjdk11
before_install:
- ./scripts/prepareJitpackEnvironment.sh

0 comments on commit 0719d63

Please sign in to comment.