You need replace every instance of $this->settings[‘opt-name’] with $this->get_option(‘opt-name’) in the shipping-awd.php file.
For example, on line 55 you must replace
$this->enabled = $this->settings['enabled'];
with
$this->enabled = $this->get_option('enabled');
Replace every instance and the plugin will work again.