add_theme_support(‘post-thumbnail’) not working

That one line is all you need, try adding this to your functions.php file.

function my_theme_setup(){
    add_theme_support('post-thumbnails');
}

add_action('after_setup_theme', 'my_theme_setup');

I’m not sure what your “post types file” is but the above should be enough to add support.