Skip to content

Commit

Permalink
Merge pull request #3 from AndroidDeveloperLB/master
Browse files Browse the repository at this point in the history
Updated dependencies and others, to make the repository build fine again
  • Loading branch information
awxkee authored Sep 20, 2024
2 parents aba5816 + 02e88c3 commit 4467f6e
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 30 deletions.
27 changes: 14 additions & 13 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@ plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("com.google.devtools.ksp")
// this version matches your Kotlin version https://developer.android.com/develop/ui/compose/compiler#set-gradle
id("org.jetbrains.kotlin.plugin.compose") version "2.0.0"
}

android {
namespace = "com.awxkee.jxlcoder.app.glide"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "com.awxkee.jxlcoder.app.glide"
minSdk = 21
targetSdk = 34
targetSdk = 35
versionCode = 1
versionName = "1.0"

Expand All @@ -31,11 +33,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "1.8"
}
buildFeatures {
compose = true
Expand All @@ -52,18 +54,17 @@ android {

dependencies {

implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
implementation("androidx.activity:activity-compose:1.7.2")
implementation(platform("androidx.compose:compose-bom:2023.03.00"))
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.6")
implementation("androidx.activity:activity-compose:1.9.2")
implementation(platform("androidx.compose:compose-bom:2024.09.02"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
debugImplementation("androidx.compose.ui:ui-tooling")
debugImplementation("androidx.compose.ui:ui-test-manifest")
Expand All @@ -73,4 +74,4 @@ dependencies {
implementation(project(":jxlcoderglide"))
// implementation("com.github.awxkee:jxl-coder-glide:1.5.1")
implementation("com.github.bumptech.glide:compose:1.0.0-alpha.5")
}
}
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.4.0-rc02" apply false
id("org.jetbrains.kotlin.android") version "1.8.10" apply false
id("com.android.library") version "8.4.0-rc02" apply false
id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false
}
id("com.android.application") version "8.6.1" apply false
id("org.jetbrains.kotlin.android") version "2.0.20" apply false
id("com.android.library") version "8.6.1" apply false
id("com.google.devtools.ksp") version "2.0.20-1.0.25" apply false
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Sep 18 23:05:09 MYT 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
23 changes: 12 additions & 11 deletions jxlcoderglide/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id("maven-publish")
id("signing")
id("com.vanniktech.maven.publish") version "0.28.0"
id("kotlin-kapt")
id("com.google.devtools.ksp")
}

task("androidSourcesJar", Jar::class) {
Expand Down Expand Up @@ -85,22 +85,23 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "1.8"
}
}

dependencies {
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.9.0")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
implementation("com.github.bumptech.glide:glide:4.16.0")
kapt("com.github.bumptech.glide:compiler:4.16.0")
ksp("com.github.bumptech.glide:ksp:4.16.0")

api("io.github.awxkee:jxl-coder:2.3.0")
}
}

0 comments on commit 4467f6e

Please sign in to comment.