Cordova-plugin-sim not returning whole records with ionic 1

Hello everyone,
I just install cordova-plugin-sim to get sleep device SIM card data.

The response returned data to the phoneCount property but failed to return other properties such as phoneNumber, deviceId, activesubscriptionInfoCount etc.

I checked my Androidmanifest file and the READ_PHONE_STATE is there as a permission.

When I did Chrome USB debugging. This is what I get. The whole record is not returned.

In my Manifest file, I have this

<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="10003" android:versionName="1.0.3" package="fastdata.motorfixer.app" xmlns:android="http://schemas.android.com/apk/res/android">
    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
    <uses-permission android:name="android.permission.INTERNET" />
    <application android:hardwareAccelerated="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:supportsRtl="true">
        <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
            <intent-filter android:label="@string/launcher_name">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="25" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.SEND_SMS" />
    <uses-feature android:name="android.hardware.telephony" android:required="false" />
</manifest>

Please how do I fix it to return the full data.

After following this example Testing Android API 23 Permissions · pbakondy/cordova-plugin-sim Wiki · GitHub
I got this which returns all the data except for the phone number which is empty