├── .classpath ├── .gitignore ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── BBAF-Key-pass=bbafii ├── README.md ├── dist └── BBAF-MPOS.apk ├── docs ├── DCD POS.png ├── DCD.violet ├── FullyDressedUC │ ├── UC_AddItem.doc │ └── UC_RemoveItem.doc ├── IterationPlan │ ├── IterationPlan1.doc │ └── IterationPlan2.doc ├── Mockup │ ├── Ledger.jpg │ ├── Menu.jpg │ ├── Overall.jpg │ ├── PageFlow.jpg │ ├── ProductDescription.jpg │ └── SaleAndInventory.jpg ├── POS Domain Model.class.violet ├── POS Domain Model.png ├── SAD.doc ├── SCD.class .violet ├── SRS.doc ├── User_Guide_POS-BBAF.pdf ├── VisionScopeGROUP.docx ├── brief_uc.docx ├── class diagram.class.violet ├── interation diagram.png ├── interation diagram.seq.violet └── userstories.txt ├── gen └── com │ └── bbaf │ └── mpos │ └── BuildConfig.java ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── .DS_Store ├── drawable-hdpi │ ├── homebg.jpg │ ├── ic_action_accept.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_discard.png │ ├── ic_action_download.png │ ├── ic_action_labels.png │ ├── ic_action_new_label.png │ ├── ic_action_overflow.png │ ├── ic_action_search.png │ ├── ic_launcher.png │ ├── logo.png │ └── testbackground.jpg ├── drawable-mdpi │ ├── homebg.jpg │ ├── ic_action_accept.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_discard.png │ ├── ic_action_download.png │ ├── ic_action_labels.png │ ├── ic_action_new_label.png │ ├── ic_action_overflow.png │ ├── ic_action_search.png │ ├── ic_launcher.png │ ├── logo.png │ └── testbackground.jpg ├── drawable-xhdpi │ ├── homebg.jpg │ ├── ic_action_accept.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_discard.png │ ├── ic_action_download.png │ ├── ic_action_labels.png │ ├── ic_action_new_label.png │ ├── ic_action_overflow.png │ ├── ic_action_search.png │ ├── ic_launcher.png │ ├── logo.png │ └── testbackground.jpg ├── drawable-xxhdpi │ ├── homebg.jpg │ ├── ic_action_accept.png │ ├── ic_action_camera.png │ ├── ic_action_cancel.png │ ├── ic_action_discard.png │ ├── ic_action_download.png │ ├── ic_action_labels.png │ ├── ic_action_new_label.png │ ├── ic_action_overflow.png │ ├── ic_action_search.png │ ├── ic_launcher.png │ ├── logo.png │ └── testbackground.jpg ├── drawable │ ├── homebg.jpg │ ├── light_blue_btn.xml │ ├── light_green_btn.xml │ ├── light_red_btn.xml │ ├── light_yellow_btn.xml │ ├── logo.png │ ├── testbackground.jpg │ ├── testbg.xml │ └── testtab.xml ├── layout │ ├── .DS_Store │ ├── activity_add_product.xml │ ├── activity_description.xml │ ├── activity_edit_product.xml │ ├── activity_inventory_activity2.xml │ ├── activity_ledger_ui.xml │ ├── activity_menu.xml │ ├── activity_payment.xml │ ├── activity_sale_edit.xml │ ├── activity_sale_ledger_product_list.xml │ ├── activity_success_payment.xml │ ├── inventory_list_row.xml │ ├── product_ledger_list_row.xml │ ├── sale_ledger_list_row.xml │ └── sale_list_row.xml ├── menu │ ├── add_product.xml │ ├── description.xml │ ├── edit_product.xml │ ├── inventory_activity2.xml │ ├── ledger_ui.xml │ ├── menu.xml │ ├── payment.xml │ ├── sale_edit.xml │ ├── sale_ledger_list.xml │ └── success_payment.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com ├── bbaf └── mpos │ ├── DAO │ ├── InventoryDBHelper.java │ └── SaleLedgerDBHelper.java │ ├── FacadeController │ └── Register.java │ ├── ProductDescription │ ├── ProductDescription.java │ └── ProductQuantity.java │ ├── inventory │ ├── Inventory.java │ └── description │ │ └── ui │ │ └── DescriptionActivity.java │ ├── inventoryAndSale │ └── ui │ │ ├── ATSOnClickListener.java │ │ ├── AddOnClickListener.java │ │ ├── AddProductActivity.java │ │ ├── CancelSaleDialogOnClickListener.java │ │ ├── CancelSaleOnClickListener.java │ │ ├── ClearOnClickListener.java │ │ ├── EditProductActivity.java │ │ ├── InventoryListRow.java │ │ ├── InventoryListViewAdapter.java │ │ ├── InventoryandSaleActivity.java │ │ ├── RemovableListRow.java │ │ ├── RemoveDialogOnClickListener.java │ │ ├── RemoveOnClickListener.java │ │ ├── SaleListRow.java │ │ ├── SaleListViewAdapter.java │ │ └── ScanOnClickListener.java │ ├── menu │ └── ui │ │ └── MenuActivity.java │ ├── sale │ ├── Sale.java │ ├── SaleLineItem.java │ └── payment │ │ └── ui │ │ ├── PaymentActivity.java │ │ ├── PaymentCancelOnClickListener.java │ │ ├── PaymentConfirmOnClickListener.java │ │ ├── PaymentOnClickListener.java │ │ ├── SaleEditActivity.java │ │ └── SuccessPaymentActivity.java │ └── saleledger │ ├── Ledger.java │ ├── ProductLedger.java │ ├── SaleLedger.java │ └── ui │ ├── LedgerActivity.java │ ├── ProductLedgerListRow.java │ ├── ProductLedgerListViewAdapter.java │ ├── SaleLedgerListRow.java │ ├── SaleLedgerListViewAdapter.java │ └── SaleLedgerProductListActivity.java └── google └── zxing └── integration └── android ├── IntentIntegrator.java └── IntentResult.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | .DS_Store 3 | 4 | gen/com/bbaf/mpos/R.java 5 | 6 | gen/com/bbaf/mpos/R.java 7 | 8 | gen/com/bbaf/mpos/R.java 9 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | MPOS 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 26 | 27 | 32 | 33 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 49 | 50 | 56 | 57 | 63 | 64 | 70 | 71 | 77 | 78 | 83 | 84 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /BBAF-Key-pass=bbafii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/BBAF-Key-pass=bbafii -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | MPOS 2 | ==== 3 | 4 | Mobile POS for Android 5 | -------------------------------------------------------------------------------- /dist/BBAF-MPOS.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/dist/BBAF-MPOS.apk -------------------------------------------------------------------------------- /docs/DCD POS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/DCD POS.png -------------------------------------------------------------------------------- /docs/FullyDressedUC/UC_AddItem.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/FullyDressedUC/UC_AddItem.doc -------------------------------------------------------------------------------- /docs/FullyDressedUC/UC_RemoveItem.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/FullyDressedUC/UC_RemoveItem.doc -------------------------------------------------------------------------------- /docs/IterationPlan/IterationPlan1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/IterationPlan/IterationPlan1.doc -------------------------------------------------------------------------------- /docs/IterationPlan/IterationPlan2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/IterationPlan/IterationPlan2.doc -------------------------------------------------------------------------------- /docs/Mockup/Ledger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/Mockup/Ledger.jpg -------------------------------------------------------------------------------- /docs/Mockup/Menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/Mockup/Menu.jpg -------------------------------------------------------------------------------- /docs/Mockup/Overall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/Mockup/Overall.jpg -------------------------------------------------------------------------------- /docs/Mockup/PageFlow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/Mockup/PageFlow.jpg -------------------------------------------------------------------------------- /docs/Mockup/ProductDescription.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/Mockup/ProductDescription.jpg -------------------------------------------------------------------------------- /docs/Mockup/SaleAndInventory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/Mockup/SaleAndInventory.jpg -------------------------------------------------------------------------------- /docs/POS Domain Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/POS Domain Model.png -------------------------------------------------------------------------------- /docs/SAD.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/SAD.doc -------------------------------------------------------------------------------- /docs/SRS.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/SRS.doc -------------------------------------------------------------------------------- /docs/User_Guide_POS-BBAF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/User_Guide_POS-BBAF.pdf -------------------------------------------------------------------------------- /docs/VisionScopeGROUP.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/VisionScopeGROUP.docx -------------------------------------------------------------------------------- /docs/brief_uc.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/brief_uc.docx -------------------------------------------------------------------------------- /docs/interation diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/docs/interation diagram.png -------------------------------------------------------------------------------- /docs/userstories.txt: -------------------------------------------------------------------------------- 1 | Inventory System 2 | 3 | 4 | - As an owner , I want to add a product so I can have my product in my inventory. 5 | - As an owner , I want to remove a product so I can delete my product that I don’t want to sell from inventory. 6 | - As an owner, I want to edit description so I can change the description of the product. 7 | - As a seller , I want to make sale so that I can sell the product. 8 | - As a cashier I want to record a receipt so that I can record sale to ledger. 9 | - As a seller , I want to check product quantity so that I can know the product availability. 10 | 11 | 12 | Sales System 13 | 14 | 15 | - As an owner, I want to make sale of this product by pressing the button related to this product. 16 | - As an owner, I want to make a receipt of the recent sale so I can give it to the customer. 17 | - As a customer, I want the sale to show my total price so I can pay accordingly. 18 | - As a customer, I want the sale to show the change. 19 | 20 | 21 | Basic User Management System 22 | 23 | 24 | - As an owner, I want to identify my employee so that I can know who sells the product. 25 | 26 | 27 | Basic Customer Management System 28 | 29 | 30 | - As an owner, I want to record the sale that customer make so that I can know what customer interest. -------------------------------------------------------------------------------- /gen/com/bbaf/mpos/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.bbaf.mpos; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-14 15 | -------------------------------------------------------------------------------- /res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/.DS_Store -------------------------------------------------------------------------------- /res/drawable-hdpi/homebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/homebg.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_accept.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_camera.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_discard.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_download.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_labels.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_new_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_new_label.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/testbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-hdpi/testbackground.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/homebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/homebg.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_accept.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_camera.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_discard.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_download.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_labels.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_new_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_new_label.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/testbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-mdpi/testbackground.jpg -------------------------------------------------------------------------------- /res/drawable-xhdpi/homebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/homebg.jpg -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_accept.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_discard.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_download.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_labels.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_new_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_new_label.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/testbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xhdpi/testbackground.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/homebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/homebg.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_accept.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_camera.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_discard.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_download.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_labels.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_new_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_new_label.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_overflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_overflow.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_action_search.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/testbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable-xxhdpi/testbackground.jpg -------------------------------------------------------------------------------- /res/drawable/homebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable/homebg.jpg -------------------------------------------------------------------------------- /res/drawable/light_blue_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /res/drawable/light_green_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /res/drawable/light_red_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /res/drawable/light_yellow_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable/logo.png -------------------------------------------------------------------------------- /res/drawable/testbackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/drawable/testbackground.jpg -------------------------------------------------------------------------------- /res/drawable/testbg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/drawable/testtab.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/layout/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/batmaster/MPOS/d7a00cebfb6e3d2ad0a942b047072bd0b8651a6c/res/layout/.DS_Store -------------------------------------------------------------------------------- /res/layout/activity_add_product.xml: -------------------------------------------------------------------------------- 1 | 13 | 14 | 17 | 18 | 26 | 27 | 35 | 36 | 37 | 38 | 39 | 40 | 43 | 44 | 52 | 53 | 61 | 62 | 63 | 64 | 67 | 68 | 76 | 77 | 86 | 87 | 88 | 89 | 92 | 93 | 101 | 102 | 111 | 112 | 113 | 114 | 118 | 119 | 127 | 128 | 137 | 138 | 139 | 140 | 144 | 145 |