Failed to load vendor classes

Hi, I am having problems loading vendor files in cakephp 2.3.0. I have tried entering App::import(‘Vendor’, ‘EncodingProfileConfig’); just above App::uses(‘AppController’, ‘Controller’); in my StreamsController.php file. I get the error “class ‘EncodingProfileConfig’ not found”. How do I solve this? I was using this Reference: https://book.cakephp.org/2.0/en/core-utility-libraries/app.html#loading-vendor-files

The actual class is inside app/Vendor/bitcodin/lib directory. But after this code below failed, I tried a more straightforward approach which the above. Which failed too.

App::build(array(‘Vendor’ => array(APP . ‘Vendor’ . DS . ‘bitcodin’ . DS . ‘lib’ . DS)));
App::uses(‘EncodingProfileConfig’, ‘Vendor/bitcodin’);