Hotspot with Radxa Rock3A

I tried 2 methods of creating hotspot on the Radxa Rock3A
However both ended up with able to show up on my phone but unable to connect due to disconnection shortly after

Heres the wifi module i used: https://shop.allnetchina.cn/products/rock-pi-wireless-module-a2?_pos=6&_sid=872b4d004&_ss=r

1st method - https://gist.github.com/narate/d3f001c97e1c981a59f94cd76f041140

nmcli con add type wifi ifname wlan0 con-name Hostspot autoconnect yes ssid Hostspot
nmcli con modify Hostspot 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
nmcli con modify Hostspot wifi-sec.key-mgmt wpa-psk
nmcli con modify Hostspot wifi-sec.psk "veryveryhardpassword1234"
nmcli con up Hostspot

This are my outputs for using the 1st method

2nd method - https://thepi.io/how-to-use-your-raspberry-pi-as-a-wireless-access-point/ with additional changes
Connect to a wifi first

sudo su
nmcli r wifi on
nmcli dev wifi 
nmcli dev wifi connect "wifi_name" password "wifi_password"

Follow steps 1-5 from the link
Step1

sudo apt-get update
sudo apt-get upgrade

Step2

sudo apt-get install hostapd
sudo apt-get install dnsmasq
sudo systemctl stop hostapd
sudo systemctl stop dnsmasq

Step3

#Install dhcpcd5
sudo apt install dhcpcd5
sudo nano /etc/dhcpcd.conf
#Add this part to the bottom
interface wlan0
static ip_address=192.168.0.10/24
#denyinterfaces eth0
denyinterfaces wlan0

Step4

sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.orig
sudo nano /etc/dnsmasq.conf

#Add this
bind-interface
interface=wlan0
  dhcp-range=192.168.0.11,192.168.0.30,255.255.255.0,24h

Step5

sudo nano /etc/hostapd/hostapd.conf
#Add this
interface=wlan0
hw_mode=a
channel=36
country_code=SG
ieee80211d=1
ieee80211n=1
ieee80211ac=1
wmm_enabled=0
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
ssid=wifi name of choice
wpa_passphrase=password of choice

Disconnect from the wifi

nmcli c down "wifi name"

Run hostapd manually

sudo /usr/sbin/hostapd /etc/hostapd/hostapd.conf

Here is my output for the 2nd method:

You can refer this guide:

https://wiki.radxa.com/Rock3/dev/ap-mode-on-radxa-e25

Thanks for the reply!
Im having this issue at the final line
The closest issue i found is this https://github.com/oblique/create_ap/issues/215