Hi Nikana,
Short answer is yes, but let me explain:
To be fully AMP-compatible, our plugin has to stick to the rigid rules of AMP, and the result is some loss of functionality (e.g. copy-protection not as strong, positioning of notice not optimal). So we have designed the plugin to work differently with AMP pages than non-AMP pages, thus giving the best of both worlds.
For non-AMP pages we do include xml:lang attribute in order to meet W3C recommendatios (https://www.w3.org/International/questions/qa-html-language-declarations)
For AMP pages we strip that out because (as you know) Google considers it to be non-AMP compliant.
We use a function of Automattic AMP called is_amp_endpoint to decide whether this is an AMP page or not, and this affects the behaviour of our plugin.
If you want to use our plugin without Automattic AMP, you can opt to
a) modify it by removing the text '" xml:lang="' . $lang .
from the file “copyright_proof_live.php”
or b) include a php function “is_amp_endpoint()” which returns true
We are open to enhancing the plugin to work in other situations but we have really not had any demand from users to date.