Skip to content

mssandeepkamath/ar-heap-sort-visualizer-android

Repository files navigation

HeapSort-Visualizer

Android application for heap sort visualization.

Play Store link:

https://play.google.com/store/apps/details?id=com.sandeep.sceneformar&hl=en&gl=US


Untitled (2160 × 1080 px) (4) Untitled (2160 × 1080 px) (5)

Animation video link:

https://youtu.be/N4a2mH3eKzg

Tech:

  1. Programming Language: Kotlin and Java.
  2. User Interface/Experience: XML
  3. AR View: Google’s Sceneform SDK and AR Core.
  4. Youtube player: Google developers API console.
  5. Platform: Android studio.

Useful links:

https://developers.google.com/youtube/v3/quickstart/android

https://github.com/google-ar/sceneform-android-sdk

https://developers.google.com/ar/develop

https://www.geeksforgeeks.org/android-tutorial/

Usage:

1.Clone the project directly into your Android studio IDE using

  url: https://github.com/mssandeepkamath/HeapSort-Visualizer.git   

or Download the zip file and open it in your IDE.

2.Run

Contribute:

1.Fork this repository

2.clone it into your local pc using

   git clone 'your_cloned_https_url'
  1. create a new branch using

     git branch dev ; git checkout dev
    
  2. Contribute!

  3. Stage and commit changes using

    git add . ; git commit -m "your updates"
    
  4. Create pull request in Github GUI for merging the update into GUI/main(upstream).

  5. Add original repository for fetch using

    git remote add upstream https://github.com/mssandeepkamath/HeapSort-Visualizer.git
    
  6. Checkout to your origin main and do this for fetching latest changes from original repository.

    git pull upstream main