The solution was to add tools:remove="android:maxSdkVersion"
to the the FINE location on the Manifest.
Like so:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"
tools:remove="android:maxSdkVersion"/>
Solution by this answer