alexzhirkevich / custom-qr-generator

Android library for creating QR codes with logo, custom shapes, colors, background image. Powered by ZXing
MIT License
173 stars 18 forks source link

4th ball visibility #19

Closed Aijaz-Ali-Shah closed 1 year ago

Aijaz-Ali-Shah commented 1 year ago

How to visible 4th ball like other three balls e.g: color, design etc

alexzhirkevich commented 1 year ago

It is not available at the moment, but it is quite interesting enhancement . I'll probably add such ability in a future version

alexzhirkevich commented 1 year ago

Added in 1.5.8

val options = createQrVectorOptions {
    fourthEyeEnabled = true
}

Or

val options = QrVectorOptions.Builder()
    .setFourthEyeEnabled(true)
    .build()
hardikbhalodi commented 1 year ago

@alexzhirkevich seems 1.5.8 repository not working, could not fetch the latest changes.

alexzhirkevich commented 1 year ago

@alexzhirkevich seems 1.5.8 repository not working, could not fetch the latest changes.

fixed

Aijaz-Ali-Shah commented 1 year ago

Awesome, appreciate your quick response, although I did not upgrade your library right now because it's given me conflict with my Kotlin version, "Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.8.0, expected version is 1.6.0." and if I updated Kotlin version then I must be needed to update hilt version too, so currently I did not have such time to check impact above changes but defiantly I will be try in future.

alexzhirkevich commented 1 year ago

@Aijaz-Ali-Shah Check out new version 1.6.0. It was build with previous Kotlin version. 1.5.8 was bad overall...