Android App Connect Database Query not running

Below is the hello app I created to test SC load problem.
Also see attached screen capture.

<!doctype html>
<html>

<head>
    <script src="dmxAppConnect/dmxAppConnect.js"></script>
    <meta charset="UTF-8">
    <title>Untitled Document</title>

    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover">
    <meta name="mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
    <meta name="format-detection" content="telephone=no">
    <meta name="msapplication-tap-highlight" content="no">

    <link rel="stylesheet" href="Framework7/6/css/framework7-bundle.min.css" />
    <script src="Framework7/6/js/framework7-bundle.min.js"></script>
    <script src="js/routes.js"></script>
    <script src="dmxAppConnect/dmxFramework7_6/dmxFramework7_6.js"></script>
    <link rel="stylesheet" href="dmxFramework7_icons/css/framework7-icons.css" />
    <script src="cordova.js"></script>
    <link rel="stylesheet" href="css/style.css" />
</head>

<body is="dmx-app" id="index">
    <div id="app" is="dmx-f7-app">
        <dmx-serverconnect id="SCOtherFriendStatus" url="https://mp.com/dmxConnect/api/mp/android/user_friends/user_friend_accept_status_test.php" site="Datings" noload></dmx-serverconnect>
        <dmx-value id="currentfriendid" dmx-bind:value="882"></dmx-value>
        <!-- Statusbar overlay -->
        <div class="statusbar"></div>

        <!-- Your main view, should have "view-main" class -->
        <div id="main" class="view view-main">
            <!-- Initial Page, "data-name" contains page name -->
            <div id="index" class="page" data-name="index">

                <!-- Top Navbar -->
                <div class="navbar">
                    <div class="navbar-bg"></div>
                    <div class="navbar-inner">
                        <div class="title sliding">Awesome App</div>
                    </div>
                </div>

                <!-- Toolbar -->
                <div class="toolbar toolbar-bottom">
                    <div class="toolbar-inner">
                        <a href="#" class="link" dmx-on:click="run([{run:{action:`app.SCOtherFriendStatus.load({friendid: app.currentfriendid.value},true)`,name:'SCLoadStatus'}},{condition:{if:`app.SCOtherFriendStatus.data.query1.status > 0`,then:{steps:{alert:{message:`\'Status is greater than 1, Fstatus=\'+app.SCOtherFriendStatus.data.query1.status`}}},else:{steps:{alert:{message:`\'Status is less than 1, Fstatus=\'+app.SCOtherFriendStatus.data.query1.status`}}}}}])">Hello</a>
                        <a href="#" class="link">World</a>
                    </div>
                </div>

                <!-- Scrollable page content -->
                <div class="page-content wappler-block">

                </div>
            </div>
        </div>
    </div>
</body>

</html>

So you are using an inline flow not directly running the server action as you mentioned above?
Please try directly running the server action on click, without a flow. Dynamic Events > Click > Server Action run

Also … change the href from href="#" to href="javascript:void(0)"

Both inflows are now working in the testmobile App. I need to see what changes I need to make to the main App.

I am still having problem with it working in my main App and no errors.
I suspect it may be link or javascript problem.
Thanks for your help!

Is it possible the js module that contains SC.load is not listed or referenced in the header.
This is my header, is it correct?: