I flashed Kali on a Oneplus One Android phone running lineageos, and I'm trying to get Kali to recognize the TL-WN722N version 2. Before trying to use this adapter on the phone, I was using it on a laptop running Galliumos linux. I installed the driver for the adapter using these commands

Code:
sudo apt install git dkms git make build-essential
cd /usr/src
sudo git clone https://github.com/lwfinger/rtl8188eu.git
sudo dkms add ./rtl8188eu
sudo dkms build 8188eu/1.0
sudo dkms install 8188eu/1.0
sudo modprobe 8188eu
so I tried using the same commands in kali to install the driver on the Oneplus One.
Kali executed the first four commands, but when I typed
Code:
dkms build 8188eu/1.0
I got an error:

Code:
root@kali:/usr/src# dkms build 8188eu/1.0
Error! echo
Your kernel headers for kernel 3.4.112-lineageos-g70467aa5 cannot be found at
/lib/modules/3.4.112-lineageos-g70467aa5/build or /lib/modules/3.4.112-lineageos-g70467aa5/source.
root@kali:/usr/src#
Is there a solution for this?