Skip to content

Ionic app that generates configurable random numbers. Release in the Play Store coming soon :)

License

Notifications You must be signed in to change notification settings

AitorAstorga/RandomNumberGenerator

Repository files navigation

Contributors Forks Stargazers Issues MIT License LinkedIn


Logo

Random Number Generator

Ionic app that generates configurable random numbers
Explore the docs »

View Demo · Report Bug or · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Serve
  4. Build
  5. Contributing
  6. License
  7. Contact
  8. Acknowledgments

About The Project

This project is about creating a simple yet powerful random number generator using the Ionic framework. It's designed to be user-friendly and highly customizable, allowing users to specify the range and criteria for number generation.

Screenshot Screenshot

(back to top)

Built With

This project is built with the following technologies:

  • Ionic
  • Angular
  • Capacitor
  • Android Studio
  • Visual Studio Code

(back to top)

Getting Started

To get a local copy up and running follow these simple example steps.

Prerequisites

Update npm (or install it otherwise)

sudo npm install npm@latest -g

Install the Ionic Framework

sudo npm i -g @ionic/cli

You will need Android Studio if you want to build the apk.

Installation

  1. Clone the repo

    git clone https://github.com/AitorAstorga/RandomNumberGenerator.git
  2. Install NPM packages

    npm install

(back to top)

Serve

You can create a live server in a web browser with Ionic. Use the command:

ionic serve

You will be prompted to install @angular/cli. Install it.

> ng run app:serve --host=localhost --port=8100

[INFO] Looks like @angular/cli isn't installed in this project.
       
       This package is required for this command to work properly. The package provides a CLI utility, but the ng binary
       was not found in your PATH.

? Install @angular/cli? Yes

(back to top)

Build

This project is built using Ionic 7.1.5 and Capacitor.

Follow the official Ionic documentation:

Generating a release build

Build the web app:

ionic build

To generate a release build for Android run the following cli command:

npx cap copy && npx cap sync

This will copy all web assets and sync any plugin changes.

Next, open Android studio:

npx cap open android

Then, generate an APK in Android Studio:

Error Unable to launch Android Studio

This error looks like this:

npx cap open android
[error] Unable to launch Android Studio. Is it installed?
        Attempted to open Android Studio at: /usr/local/android-studio/bin/studio.sh
        You can configure this with the CAPACITOR_ANDROID_STUDIO_PATH environment variable.

If you get it in Linux and you installed Android Studio previously you can fix it by doing:

export CAPACITOR_ANDROID_STUDIO_PATH="/opt/android-studio/bin/studio.sh"

Running with Android Studio

In Android Studio, first select the device or emulator and then click the run or debug button to run your app. Unless you're debugging Java or Kotlin code, the run button is preferred.

Run in Android Studio

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the GNU General Public License v3.0. See LICENSE for more information.

(back to top)

Contact

Aitor Astorga Saez de Vicuña - a.astorga.sdv@gmail.com

Project Link: https://github.com/AitorAstorga/RandomNumberGenerator

(back to top)

Acknowledgments

Thanks to these nice projects!

(back to top)