Login Instructions Email

Quick question. How do I download the plugin? I did the free order through the store and got an email saying I should get a separate email with login instructions. How long does it take to get that one?

Thanks!

Warren

Quick question. How do I download the plugin? I did the free order through the store and got an email saying I should get a separate email with login instructions. How long does it take to get that one?

Thanks!

Warren

What exactly did your email say?

Here is the email contents:

Thanks for your order 827 at Corona Store.

If this is your first order with us, you will receive a separate e-mail with login instructions. You can view your order history with us at any time by logging into our website at:

https://store.coronalabs.com/user

You can find the status of your current order at:

https://store.coronalabs.com/user/1292/orders/827

Please contact us if you have any questions about your order.

To unsubscribe and stop receiving these emails click here.

That isn’t the best wording. We’ll fix that. However, you should be able to require a store plugin like you would any other. Include it in your build.settings. For the QR scanner for example:

[lua]plugins =
{
    [‘plugin.qrscanner’] =
    {
        publisherId = ‘com.spiralcodestudio’
        supportedPlatforms =
        {
            android = true,
            iphone = true,
        }
    },
}[/lua]

So I don’t have to download anything? I just include it in my build settings like you show above? When I run the app I assume it installs the required files for the plugin and uses them. I will give that a try.

Thanks!

Got it working.

Thanks!

Activated plugin in Corona-Store, included the Plugin in my build.settings:

plugins =
    {
        [‘plugin.qrscanner’] =
        {
            publisherId = ‘com.spiralcodestudio’
            supportedPlatforms =
            {
                android = true,
                iphone = true,
            }
        },
    }

but when in call “qrscanner.show(listener)” i got following Error-Message in Corona Simulator:

WARNING: The ‘plugin.qrscanner’ library is not available on this platform.
 

I don’t know what to do. Please assist.

The QR scanner is only functional on device. Build and test the app on an iPhone, iPad or Android device to see it work.

Rob

Quick question. How do I download the plugin? I did the free order through the store and got an email saying I should get a separate email with login instructions. How long does it take to get that one?

Thanks!

Warren

What exactly did your email say?

Here is the email contents:

Thanks for your order 827 at Corona Store.

If this is your first order with us, you will receive a separate e-mail with login instructions. You can view your order history with us at any time by logging into our website at:

https://store.coronalabs.com/user

You can find the status of your current order at:

https://store.coronalabs.com/user/1292/orders/827

Please contact us if you have any questions about your order.

To unsubscribe and stop receiving these emails click here.

That isn’t the best wording. We’ll fix that. However, you should be able to require a store plugin like you would any other. Include it in your build.settings. For the QR scanner for example:

[lua]plugins =
{
    [‘plugin.qrscanner’] =
    {
        publisherId = ‘com.spiralcodestudio’
        supportedPlatforms =
        {
            android = true,
            iphone = true,
        }
    },
}[/lua]

So I don’t have to download anything? I just include it in my build settings like you show above? When I run the app I assume it installs the required files for the plugin and uses them. I will give that a try.

Thanks!

Got it working.

Thanks!

Activated plugin in Corona-Store, included the Plugin in my build.settings:

plugins =
    {
        [‘plugin.qrscanner’] =
        {
            publisherId = ‘com.spiralcodestudio’
            supportedPlatforms =
            {
                android = true,
                iphone = true,
            }
        },
    }

but when in call “qrscanner.show(listener)” i got following Error-Message in Corona Simulator:

WARNING: The ‘plugin.qrscanner’ library is not available on this platform.
 

I don’t know what to do. Please assist.

The QR scanner is only functional on device. Build and test the app on an iPhone, iPad or Android device to see it work.

Rob