Coder Social home page Coder Social logo

ecommerce-app-android's Introduction

Shopping App

This is an Open Sourced full stack E-Commerce App. I started this Project out of cusiosity and absoulutely no vision but now it have evolve to full size Shopping App. This repository holds basic E-commerce App POC which I had created 2 years back. You can download emo App to see what it looks like now. I also have PWA web App for the this project. If you are interested feel free to Ping me.

Try the Demo on PlayStore

Alt text

What this project does :-

View Layer

  • Single Activity Model with reusable Fragments.
  • Display categories of product (eg Electronic,Furnitures)
  • Display products in a given category (TV,Microwave,Vaccum cleaner)
  • Show Product Details.
  • Add any product to cart and update total item count and amount.
  • Swipe to Dismiss along with Drag-Drop in Shopping List Fragments
  • Swipe to dismiss in RecyclerView
  • Store cart list in DB for persistant storage.
  • Whats new dialog on new update

Data and Domain Layer

  • Fetch and store list of Products and Categoreis from Mock Server. The Mock server mimic and return product data from real life Flipkart Server.
  • Persistant storage of Shopping List items when User close the App.
  • Loading and caching image from actual Flipkart's image URl with help of Glide
  • ACRA crash reporting (Planning to Move on Firebase)
  • Data Mining with Apriori Algorithm.

What Is Not Included (feel free to Ping me if you want complete solution):-

  • Back End Web Server with Web API
  • Admin Panel
  • Website

Got any Issue or Change Request :-

Log it into Issue Tracker and please don't mail me. I am going to stop to replying to mails and whatsapp messages from June 2017.

Screen shots

Tablet

Legal

<!--
  ~ .
  ~ Copyright Copyright (c) 2017 Hitesh Sahu(hiteshsahu.com)
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
  ~
  ~ http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  -->

ecommerce-app-android's People

Contributors

hiteshsahu avatar mcnemesis avatar opimenov avatar paulomcnally avatar ruperi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ecommerce-app-android's Issues

about the database

were can we find the database for the ecommerce-app-android??
urgent!!!

Start up issue

When I was trying to upload the project it said two of the modules could not be found. The error stated: "Failed to find target with hash string 'android-23' in: C:/........

Please help!

Thank you

How to contribute in this project?

@hiteshsahu
Hi!
I am a software tester. Please let me know if I want to contribute in this project then how to build this project or how to use download this app on mobile device for testing purpose.
Thanks...

ProductDetailsFragment

Getting below issue,

Error:Error: This fragment should provide a default constructor (a public constructor with no arguments) (com.hitesh_sahu.retailapp.view.fragment.ProductDetailsFragment) [ValidFragment]

web api for ecommerce android app

Hello,

am trying to fetch data from database and display it in this android ecommerce app but facing lot of problem. i have managed to create different categories and fetch them and display. but problem is for products. am able to display data in logcat but can't display on screen.
i have pasted the code that i have tried. please help ..

public class getCosmetics extends AsyncTask<String, String, JSONObject> {

    ConcurrentHashMap<String, ArrayList<Product>> productMap = new ConcurrentHashMap<String, ArrayList<Product>>();
    ArrayList<Product> cosmenticslist = new ArrayList<Product>();

    @Override
    protected JSONObject doInBackground(String... params) {

        Log.d("jhjg", "nkkjjuihngbb");
        try {
            jsonObject = jsonParser.makeHttpRequest2(URL_COS, "POST");

            Log.d("json in cosmetics ", "> " + jsonObject.toString());
            if (jsonObject != null) {
                System.out.println("inside if statement");
                try {
                    jsonArray = jsonObject.getJSONArray("prdct");

                    Log.d("Json array", "" + jsonArray);

                    for (int i = 0; i < jsonArray.length(); i++) {

                        JSONObject jsonObject1 = jsonArray.getJSONObject(i);

                        String pid = jsonObject1.getString("pid");
                        pname = jsonObject1.getString("pname");
                        long_descp = jsonObject1.getString("short_descp");
                         short_descp = jsonObject1.getString("long_descp");
                         mrp = jsonObject1.getString("mrp");
                         saleprice = jsonObject1.getString("saleprice");
                        discount = jsonObject1.getString("discount");
                        imageurl = jsonObject1.getString("imageurl");

                        Log.d("products->", "pid->" + pid + "pname->" + pname + "lo->" + long_descp + "short->" + short_descp + "mrp->" + mrp + "sale" + saleprice + "disc" + discount + "imahe" + imageurl);
                        cosmenticslist
                                .add(new Product(
                                        pname,
                                        long_descp,
                                        short_descp,
                                        mrp,
                                        discount,
                                        saleprice,
                                        "0",
                                        imageurl,
                                        ""));

                    }

                    productMap.put("Cosmetics", cosmenticslist);
                    GlobaDataHolder.getGlobaDataHolder().setProductMap(productMap);
                } catch (JSONException e) {
                    e.printStackTrace();
                    //  Toast.makeText(getApplicationContext(),"No Records Found", Toast.LENGTH_LONG).show();
                }

            } else {
                //  Toast.makeText(getApplicationContext(),"Unable to load data",Toast.LENGTH_LONG).show();
            }

        } catch (Exception e) {
            e.printStackTrace();
        }

        return jsonObject;

    }

am calling this method from getAllProducts() method.

CheckOut

I am having issue with the checkout can you help ?

Opencart

How can i connect your app to my opencart 1.5.6.4 based store?

Is this source free to use commercially?

Is this source free to use commercially? I want to use it to start my business in a locality. May be sometime later when I get my app, I will stop using it. Can I please borrow this code?

Full code

plz i wanna full code with Back End Web Server with Web API
, Admin Panel and Web Site.

How do i get the full project?

Hi,

Thanks alot for this.
How do i get the full project with the admin panel?

Also my UI is a bit different from the images you have.
image

How can i get one with the full styles like on the images you have?

Regards,
Zakaria Zakaria.

In cart swipe to remove item

When removing item that time only one quantity price deleting. Example I selected 10 apples each apple cost 10 rupes so total 100 when I tried to swipe to delete that time 10 rupiees only minuses remain 90 showing

full code

plz i wanna full code with Back End Web Server with Web API
, Admin Panel and Web Site.

Web Server Side Code

Great project indeed, great job. I would like to understand how your app interacts with the server side, it possible to provide me with the code?

Many thanks in advance.

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.