Git Product home page Git Product logo

Comments (4)

masahirotanaka avatar masahirotanaka commented on August 16, 2024

Thanks for the feedback @rameshbas. Have you tried installing Monaca CLI (npm install monaca) and create a kitchensink project by monaca create command?

from angular2-onsenui-kitchensink.

IliaSky avatar IliaSky commented on August 16, 2024

Hi @rameshbas. Sorry for the delayed answer. Actually this repo showcases only Onsen UI 2 and Angular 2, without actually wrapping them in a cordova (mobile application) project.

Since you mentioned Monaca debugger I am guessing that you are already familiar with Monaca CLI.
This is the prototype for the kitchensink template in Monaca CLI, but as I already mentioned it is not a cordova project itself. Making this project into an apk is not very complex, but a relatively lengthly process, so instead of doing that I would suggest just creating a new one from the cli.

To do that you need:

npm install -g monaca         # Update monaca cli
monaca create my-kitchensink  # Create a new project
monaca remote build           # And finally build

If you need some more information here are the Docs for the last step.

Very long alternative - using cordova locally:
Add <script src="cordova.js"></script> to src/index.html

npm install -g cordova          # Install cordova
cordova create my-kitchensink   # Create a new project
webpack                         # Build the current project
rm -rf my-kitchensink/www/*     # Clear the new project
cp -r src/* my-kitchensink/www  # Copy the source files
cp dist/* my-kitchensink/www    # Copy the bundled files
cd my-kitchensink               # Go to the new project's folder
cordova add platform android    # Add android platform
cordova build ios/android       # And finally build the apk

The choice is yours, but I think the first option looks simpler.

If you have further questions feel free to ask again.

from angular2-onsenui-kitchensink.

rameshbas avatar rameshbas commented on August 16, 2024

Thanks. I will try. For Angular 1 Monaca is great. for Angular2 it is not simple

from angular2-onsenui-kitchensink.

IliaSky avatar IliaSky commented on August 16, 2024

Yeah, unfortunately. Lets hope it becomes simpler in time :)

from angular2-onsenui-kitchensink.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.