Including Store Plugins in Enterprise

Hi guys,

For Enterprise users, the ‘standard plugins’ are included in the daily-builds tgz file. But it does not contain these store-plugins (e.g. QR code scanner, Vibrator, etc).

So, where do the Enterprise users get them from ? I can’t find any docs regarding this.

Thx

I’m wondering the same thing. I was interested in using the vibration plugin, but can’t see where to download it for Enterprise. I realise I could write the vibration code natively, but that defeats the point of the plugins.

We are working on a way to do this. But for now, they can be downloaded from our bitbucket repo:

https://bitbucket.org/account/user/coronalabs/projects/STORE

Rob

Thanks Rob. Is there any guide for this ?

I tried to include the qr-code into my android/libs folder, but couldn’t get it to work.

Are these the files I should copy ? Where should they be placed ?

1) plugin.qrscanner.jar

2) iconv-zbar-x86.jar

3) iconv-zbar-armeabi.jar

4) iconv-zbar-armeabi-v7a.jar

Thanks

See:  https://coronalabs.com/blog/2015/03/10/tutorial-corona-sdk-to-corona-enterprise/

https://docs.coronalabs.com/native/plugin/index.html

Rob

Thanks Rob.

For those who are adding the jar file manually, put it in android/libs. Don’t need to put it into the subfolders in there (like some other projects.

Then add the ‘activity’ into AndroidManifest.xml . You can see a runtime error in ‘adb logcat’ if your activity isn’t declared in AndroidManifest.xml

Sample for QR code :

 \<activity android:name="plugin.qrscanner.CameraActivity" android:screenOrientation="landscape" android:label="App" /\>