Skip to content

Commit

Permalink
Add Pkpass parser
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastProject committed Aug 11, 2024
1 parent d952f19 commit d20578c
Show file tree
Hide file tree
Showing 11 changed files with 654 additions and 4 deletions.
9 changes: 7 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import com.github.spotbugs.snom.SpotBugsTask
plugins {
id("com.android.application")
id("com.github.spotbugs")
id("org.jetbrains.kotlin.android")
}

spotbugs {
Expand Down Expand Up @@ -60,8 +61,8 @@ android {
// Flag to enable support for the new language APIs
isCoreLibraryDesugaringEnabled = true

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

sourceSets {
Expand All @@ -82,6 +83,9 @@ android {
lint {
lintConfig = file("lint.xml")
}
kotlinOptions {
jvmTarget = "17"
}
}

dependencies {
Expand All @@ -94,6 +98,7 @@ dependencies {
implementation("androidx.preference:preference:1.2.1")
implementation("com.google.android.material:material:1.12.0")
implementation("com.github.yalantis:ucrop:2.2.9")
implementation("androidx.core:core-ktx:1.13.1")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")

// Splash Screen
Expand Down
Loading

0 comments on commit d20578c

Please sign in to comment.