Skip to content

Commit

Permalink
Merge pull request #13 from QuickBirdEng/raise-android-api-level
Browse files Browse the repository at this point in the history
bump android api level to 26
  • Loading branch information
eldrig0 authored Nov 21, 2024
2 parents 61287e6 + 1c1a425 commit 78e20d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android_example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {

@Suppress("UnstableApiUsage")
android {
compileSdk = 33
compileSdk = 34

defaultConfig {
applicationId = "com.quickbird.android_example"
minSdk = 21
minSdk = 26
targetSdk = 33
versionCode = 1
versionName = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions snapshot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ kotlin {

@Suppress("UnstableApiUsage")
android {
compileSdk = 33
compileSdk = 34
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig {
minSdk = 21
minSdk = 26
}
namespace = "com.quickbird.snapshot"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ fun Color.deltaE(other: Color): Double {
return min(this.deltaE1994(other) / 100, 1.0)
}

/**
* Convert the color to the CIE XYZ color space within nominal range of [0.0, 1.0]
* using sRGB color space and D65 white reference white
*/
/**
* Convert the color to the CIE LAB color space using sRGB color space and D65 white reference white
*/
Expand Down

0 comments on commit 78e20d2

Please sign in to comment.