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

Help Implementing #53

Closed gregnomis closed 5 months ago

gregnomis commented 5 months ago

Sorry for the noob question, new dev here! I am using this version: implementation ("com.github.alexzhirkevich:custom-qr-generator:2.0.0-alpha01")

jitpack is in my settings.gradle maven("https://jitpack.io")

Yet theres a problem importing some functions: import com.github.alexzhirkevich.customqrgenerator.QrData import com.github.alexzhirkevich.customqrgenerator.createQrVectorOptions import com.github.alexzhirkevich.customqrgenerator.dsl.QrVectorLogoShape

Unresolved reference: createQrVectorOptions Unresolved reference: dsl

Am I missing something?

gregnomis commented 5 months ago

Still learning my way around the library; changed import com.github.alexzhirkevich.customqrgenerator.createQrVectorOptions to import com.github.alexzhirkevich.customqrgenerator.vector.createQrVectorOptions

alexzhirkevich commented 5 months ago

Open 2.0 branch and check app example

alexzhirkevich commented 5 months ago

here

gregnomis commented 5 months ago

Thank you!! Starting to figure things out, Literally my first year coding, still learning everything. Thanks!