Skip to content

Commit

Permalink
Merge branch 'release/1.3.3' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
G00fY2 committed Dec 20, 2021
2 parents ee164c1 + 71c9076 commit 100d0ae
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ There are two different flavors available on `mavenCentral()`:

| Bundled | Unbundled |
| ----------------------------------- | ------------------------------------------------- |
| ML Kit model is bundled inside app (independent of Google Services) | ML Kit model will be automatically downloaded via Play Services (once after app install) |
| 2.2 MB app size increase per ABI (you should use App Bundle or ABI splitting) | 550 KB app size increase |
| ML Kit model is bundled inside app (independent of Google Services) | ML Kit model will be automatically downloaded via Play Services (once while app install) |
| 2.3 MB app size increase per ABI (you should use App Bundle or ABI splitting) | 550 KB app size increase |
| V3 model is used (faster, more accurate) | currently V1 model will be downloaded
```kotlin
// bundled:
Expand Down
10 changes: 5 additions & 5 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object Versions {

const val quickie = "1.3.2"
const val quickie = "1.3.3"

const val androidMinSdk = 21
const val androidCompileSdk = 31
Expand All @@ -13,10 +13,10 @@ object Versions {
const val appcompat = "1.4.0"

const val cameraX = "1.0.2"
const val cameraView = "1.0.0-alpha31"
const val cameraView = "1.0.0-alpha32"

const val barcodeScanning = "17.0.0"
const val barcodeScanningGms = "16.2.1"
const val barcodeScanning = "17.0.1"
const val barcodeScanningGms = "17.0.0"

const val materialDesign = "1.4.0"

Expand All @@ -33,4 +33,4 @@ object Versions {
}
return levels.size
}
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package io.github.g00fy2.quickie
import androidx.camera.core.ExperimentalGetImage
import androidx.camera.core.ImageAnalysis
import androidx.camera.core.ImageProxy
import com.google.mlkit.vision.barcode.Barcode
import com.google.mlkit.vision.barcode.BarcodeScannerOptions
import com.google.mlkit.vision.barcode.BarcodeScanning
import com.google.mlkit.vision.barcode.common.Barcode
import com.google.mlkit.vision.common.InputImage

internal class QRCodeAnalyzer(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import androidx.core.content.ContextCompat
import androidx.core.view.ViewCompat
import androidx.core.view.WindowCompat
import androidx.core.view.WindowInsetsCompat
import com.google.mlkit.vision.barcode.Barcode
import com.google.mlkit.vision.barcode.common.Barcode
import io.github.g00fy2.quickie.config.ParcelableScannerConfig
import io.github.g00fy2.quickie.databinding.QuickieScannerActivityBinding
import io.github.g00fy2.quickie.extensions.toParcelableContentType
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.g00fy2.quickie.config

import com.google.mlkit.vision.barcode.Barcode
import com.google.mlkit.vision.barcode.common.Barcode

/**
* Wrapper class to access the ML Kit BarcodeFormat constants.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.g00fy2.quickie.extensions

import android.os.Parcelable
import com.google.mlkit.vision.barcode.Barcode
import com.google.mlkit.vision.barcode.common.Barcode
import io.github.g00fy2.quickie.content.AddressParcelable
import io.github.g00fy2.quickie.content.CalendarDateTimeParcelable
import io.github.g00fy2.quickie.content.CalendarEventParcelable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.g00fy2.quickie.extensions

import android.content.Intent
import com.google.mlkit.vision.barcode.Barcode
import com.google.mlkit.vision.barcode.common.Barcode
import io.github.g00fy2.quickie.QRScannerActivity
import io.github.g00fy2.quickie.content.AddressParcelable
import io.github.g00fy2.quickie.content.CalendarDateTimeParcelable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.g00fy2.quickie

import com.google.mlkit.vision.barcode.Barcode
import com.google.mlkit.vision.barcode.common.Barcode
import io.github.g00fy2.quickie.config.BarcodeFormat
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
Expand Down

0 comments on commit 100d0ae

Please sign in to comment.