Sure, but I'd recommend to start with pre-installed Mobile_Basic template. To make VM Mobile run propertyl:
1. It is necessary to set jQuery version to 1.8.3 in Advanced section of template's settings (VM Mobile doesn't support 1.9 and higher).
2. Disable AJAX navigation in template's settings (for premium templates, not applicable to Mobile_Basic).
3. Edit administrator/components/com_mobilejoomla/classes/mobilejoomla.php files by replacing getDevice function with following code:
/**
* @deprecated
* @return array
*/
public static function getConfig()
{
$mj = self::getInstance();
return $mj === null ? array() : (array)$mj->settings->getAll();
}
/**
* @deprecated
* @return array
*/
public static function getDevice()
{
$mj = self::getInstance();
return $mj === null ? array() : (array)$mj->device;
}
4. Edit plugins/system/vm_mobile.php by replacing line
if (($markup=='iphone' || $markup=='xhtml') && !defined('_VM_IS_BACKEND')) {
with
if (($markup=='iphone' || $markup=='xhtml' || $markup=='mobile') && !defined('_VM_IS_BACKEND')) {
5. Edit administrator/components/com_vm_mobile/classes/helper.php by replacing 'mobile_elegance' with name of actual mobile template ('mobile_basic' or 'mobile_square', etc.). Note that template name is mentioned 3 times in this file (twice in code and once in comment).