Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8356639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:14:54+00:00 2026-06-09T10:14:54+00:00

I created my app using the sencha create app command. It is working locally

  • 0

I created my app using the sencha create app command. It is working locally on my machine as well on our web server. I am trying to build the app for production but the following command is not working for me:

sencha app build production

I’m not getting any error messages or output whatsoever. Nothing in the directory changes.

The following command:

sencha build -p appname.jsb3 -v -d .

generates the jsb3 file. However, my index.html is never updated to load the new files. According to the information I have found online, my index.html should be updated to point to the new files.

I think I am missing something somewhere but I can’t find any tutorials online that work for me. Can anyone point me in the right direction? My index.html is pasted below if that helps to determine what I’m doing wrong.

<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>EGL Mobile</title>
    <style type="text/css">
        /**
         * Example of an initial loading indicator.
         * It is recommended to keep this as minimal as possible to provide instant feedback
         * while other resources are still being loaded for the first time
         */
        html, body {
            height: 100%;
        }

        #appLoadingIndicator {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-top: -10px;
            margin-left: -50px;
            width: 100px;
            height: 20px;
        }

        #appLoadingIndicator > * {
            background-color: #FFFFFF;
            float: left;
            height: 20px;
            margin-left: 11px;
            width: 20px;
            -webkit-animation-name: appLoadingIndicator;
            -webkit-border-radius: 13px;
            -webkit-animation-duration: 0.8s;
            -webkit-animation-iteration-count: infinite;
            -webkit-animation-direction: linear;
            opacity: 0.3
        }

        #appLoadingIndicator > :nth-child(1) {
            -webkit-animation-delay: 0.18s;
        }

        #appLoadingIndicator > :nth-child(2) {
            -webkit-animation-delay: 0.42s;
        }

        #appLoadingIndicator > :nth-child(3) {
            -webkit-animation-delay: 0.54s;
        }

        @-webkit-keyframes appLoadingIndicator{
            0% {
                opacity: 0.3
            }

            50% {
                opacity: 1;
                background-color:#1985D0
            }

            100% {
                opacity:0.3
            }
        }
    </style>
    <script id="microloader" type="text/javascript" src="sdk/microloader/development.js"></script>
</head>
<body>
    <div id="appLoadingIndicator">
        <div></div>
        <div></div>
        <div></div>
    </div>
</body>
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T10:14:56+00:00Added an answer on June 9, 2026 at 10:14 am

    Try this:

    // first open cmd and run:

    cd path/to/application
    

    // then make sure index.html exists in you path/to/application:

    <!DOCTYPE html>
    <html>
    <head>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
     <title>title</title>
     <!-- update this to your css file -->
     <link rel="stylesheet" href="resources/css/app.css" type="text/css">
     <!-- you can get this file from sencha original files -->
     <script type="text/javascript" src="sdk/sencha-touch-debug.js"></script>
     <script type="text/javascript" src="app.js"></script> 
    </head>
    <body></body>
    </html>
    

    // make sure the file is loading your application and then run the command:

    sencha create jsb -a index.html -p app.jsb3
    

    // also execute the 2nd command. note the DOT at the end should be added to the command:

    sencha build -p app.jsb3 -d .
    

    // now our application is built:

    Create new html file “built.html” and use the below code:

    <!DOCTYPE html>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>title</title>
        <link rel="stylesheet" href="resources/css/app.css" type="text/css">
        <script type="text/javascript" src="sdk/sencha-touch.js"></script>
        <script type="text/javascript" src="all-classes.js"></script>
        <script type="text/javascript" src="app.js"></script>
    </head>
    <body></body>
    </html>
    

    // now open built.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a Sencha sample app using the following command in the terminal:
I have a question. I just created an app using WPF. and trying to
I'd created my first web app using Ruby on Rails. And now, I want
I have created a QDialog based app using Qt Creator and all is well
Background: I have created a CRUD web app using a java based RAD tool
I installed geddy.js. After installation i created and app with geddy using command: geddy
I am working with a java Twitter app (using Twitter4J api). I have created
I created my first web app using Python, Django, Bootstrap and google-app-engine The requirement
I have a Grails 2.0.0 project that was created using grails create-app . In
I am developing an app using Sencha Touch 1.1.1. I would like to create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.