1. Homepage
  2. Programming
  3. PROG2005 Programming Mobile System - Assignment 2: Ionic app to manage a fitness centre's

PROG2005 Programming Mobile System - Assignment 2: Ionic app to manage a fitness centre's

Engage in a Conversation
USSanta Clara UniversityPROG2005Programming Mobile SystemIonic app

PROG2005 – Programming Mobile System CourseNana.COM

Assignment 2 (T1 2023)
CourseNana.COM

CourseNana.COM

   CourseNana.COM

You should submit your source code as a ZIP archive for all parts of the assignment to the Assignment 2 submission link on the unit website. If the file size is too large to upload via the submission link, please submit only the SRC and Assets folders of the Ionic projects as a ZIP file, then send the entire project folders via a method specified by your tutor. Note that marks will be deducted for poorly structured or uncommented code. All submitted source code files must include title comments that at least identify the authors and the assignment part. The separate parts of the assignment are to be submitted in separate subdirectories (e.g. Part1, Part2 etc.).  CourseNana.COM

This is a group assessment, and you should work in a team of THREE (3) students (your team and members must be approved by your tutor). This assignment is worth 40% of your overall mark, from which 30% is allocated to your group work and 10% to your individual work in the group. Although the assignment is completed in a team, all team members must submit the assignment projects individually. Along with Part 1 and Part 2 application files, you are also required to submit a Microsoft Word document, a time log, for all time spent on this assignment. It should clearly demonstrate the following: CourseNana.COM

       How long was each of the team members working on this assignment, and when (date/time) were they working on the assignment. If you were working on the tasks together in the same location, indicate this clearly. CourseNana.COM

       For each such interval recorded in the log, what particular task of Part 1 or Part 2 were you working on. CourseNana.COM

If your group members are not doing their share of the work, and this cannot be resolved, please contact your tutor or the UA. The marker will act by adjusting marks if somebody is not doing their share of the work. CourseNana.COM

This assignment will be due after the weekly modules have covered the last of the required materials and covers the relevant tutorial and workshop sessions. Do not leave this assignment to the last minute –complete the relevant tasks of the assignment while concepts are fresh in your mind. This assignment requires you to develop two applications to demonstrate your knowledge of the Ionic and Cordova frameworks. It will start with a multipage application using the Ionic framework in part 1, and you will implement a multipage Ionic application using CourseNana.COM

Cordova and Native plugins in part 2. You must use only the Tabs Ionic template for your apps in Part 1 and Part CourseNana.COM

2.  CourseNana.COM

To ensure every aspect of the implemented apps in Parts 1 and 2 works properly, test your apps on a real device or an emulator before submission. The browser platforms do not support some of the plugins and hardware sensors, so the application in part 2 may not be tested thoroughly in a browser window.  CourseNana.COM


CourseNana.COM

Part 1 – Ionic app to manage a fitness centre's member database (18 marks)  CourseNana.COM

The aim is to develop an Ionic multipage app that uses Ionic UI components for a fitness centre to maintain a small database of gym member information while the app is running on a mobile device or in a browser window. You can initialize your app with hard-coded data, or you can start with an empty data structure.   CourseNana.COM

  CourseNana.COM

Implement an injectable service that provides data records with the following components (1 mark):  CourseNana.COM

  CourseNana.COM

       Member ID * CourseNana.COM

       Full name * CourseNana.COM

       Date of birth * CourseNana.COM

       Gender ("Female", "Male", "Unspecified") * CourseNana.COM

       Membership type ("Basic", "Premium", "Corporate", "Student", "Day pass") * CourseNana.COM

       Membership start day * CourseNana.COM

       Contact number * CourseNana.COM

       Email * CourseNana.COM

       Residential address * CourseNana.COM

       Emergency contact number * CourseNana.COM

       Medical condition CourseNana.COM

  CourseNana.COM

The data has the following requirements (1 mark):  CourseNana.COM

-        Each record must have a value for all fields (*). Only the 'Medical condition' field can be blank.  CourseNana.COM

-        The 'Gender' and 'Membership type' fields value must be one of the options shown.  CourseNana.COM

-        A Member ID can only be entered and saved once (it must be unique for each member). CourseNana.COM

  CourseNana.COM

Your app will have the following pages:  CourseNana.COM

  CourseNana.COM

       Home page with greetings and your names as app authors (1 mark)  CourseNana.COM

       A page for listing all members (2 marks)  CourseNana.COM

       A page for adding new members (2 marks)  CourseNana.COM

       A page for searching existing members (2 marks) CourseNana.COM

       A page for listing the trial members (1 mark)  CourseNana.COM

       A page for editing/updating existing member records. This will also allow the deletion of a member from the database (3 marks).  CourseNana.COM

  CourseNana.COM

Your app should have help information that appears over the current page when requested. The delete operation will require a prompt to confirm the delete (1 mark). This app should be an Ionic app that uses all Ionic components and forms. There will be no marks for only HTML or Angular form elements. Ensure your app functions properly, looks professional, and is user-friendly (4 marks). A well-designed app can make a huge difference in how users interact with it. CourseNana.COM

Your app will be a stand-alone app without server contact for data. The app will not save data after the app is closed on a mobile device or the browser window is closed, but you will need to maintain a proper data structure so that changes made remain while the app is running. Use appropriate Ionic user interface components to implement the app.  CourseNana.COM

There are several things missing here from the usual app. For example, there is no server contact, splash screen, media (e.g. photos of the members) or other Native interfaces. You can add them if you wish, but these have not been added to simplify the app. CourseNana.COM


CourseNana.COM

Part 2 – Ionic app using Ionic Native APIs (22 marks)  CourseNana.COM

In this part, you will develop a multipage Ionic app to use Cordova and Ionic Native plugins, which access some of your device's hardware sensors (1 mark for the correct use of Ionic Native). You must test your app in an emulator or on a real device if you have one available. The app should be working correctly on an emulator or a real device (it will be tested). In developing APIs, please use Cordova; applications developed using Capacitor native runtime will not be accepted. CourseNana.COM

You are requested to develop an Ionic app with six (6) pages. The pages required are:  CourseNana.COM

1.      A page with a button to start reading a barcode and displaying the read code on the same page. This page will access your device's camera. Users will hold the device over the barcode they want to scan, making sure the code is within the frame. Use the 'Barcode Scanner' plugin to implement this feature (3 marks). CourseNana.COM

  CourseNana.COM

2.      A page that provides the facility in the app to send emails to any email address (3 marks). The page requires the following: CourseNana.COM

       Input fields for 'To (recipient)', 'Subject', and 'email body (message)'  CourseNana.COM

       A 'Send' button CourseNana.COM

Use the 'Email Composer' plugin to implement this feature. CourseNana.COM

  CourseNana.COM

3.      A page that provides the capability to record and playback audio (3 marks). The page requires the following:  CourseNana.COM

       a button(s) to start/stop recording  CourseNana.COM

       a button to play the recorded audio  CourseNana.COM

To implement this feature, you must use the 'Media' or 'Media Capture' Ionic native plugins. CourseNana.COM

  CourseNana.COM

4.      A page to display the current magnetic compass heading in degrees (1.5 marks). This uses the CourseNana.COM

'Device Orientation' plugin. For full marks, have the page show the heading in symbols N, CourseNana.COM

NW, SE, SSE, etc. (to three levels) (1.5 marks). For instance, SSE means South-South-East, which is south of South-East. If you want to impress (no extra marks), display a compass and needle pointing to the correct points of the compass.  CourseNana.COM

  CourseNana.COM

5.      A page to implement OCR (Optical Character Recognition) technology in your app (3 marks). This page will receive an image with text in it as input and display the text on the page as a string. You will need to create/capture an image with text in it and save it in a location in your Ionic project (e.g. the 'Assets' folder). Alternatively, you can allow the user to select an image using an open file dialogue. This page requires the following CourseNana.COM

       a button to extract the text from the image  CourseNana.COM

       an area to display the extracted digital string CourseNana.COM

When the first button is tapped, the app extracts the text from the input image and displays it on the page. You will need to use the 'OCR' plugin for this task. CourseNana.COM

  CourseNana.COM

6.      A page to implement Text-To-Speech service (2 marks). This page requires the following CourseNana.COM

       an input field to enter a string  CourseNana.COM

       a range control to select the speed rate of the speech (0 ~ 1)  CourseNana.COM

       a button to call and execute the speak function  CourseNana.COM

       a button to stop the playback Users will need to enter a text. CourseNana.COM

When the speech button is tapped, the app starts generating the synthesized audio output of the input text. You can also add a list for locale (a string like 'enUS', 'zh-CN', etc.) if you wish, but this is optional. You will need to research the 'text to speech' plugin for this. CourseNana.COM

  CourseNana.COM

Your application should be fully functional, have a professional look, and provide a user-friendly experience (4 marks). CourseNana.COM

  CourseNana.COM


CourseNana.COM

Getting Help: CourseNana.COM

This assignment, which is to be completed in a group, is your chance to gain an understanding of the fundamental concepts of the Ionic framework, Cordova and Ionic Native. It is important that you master these concepts yourself. CourseNana.COM

Since you are mastering fundamental skills, you are permitted to work from the examples in the MySCU site or unit content, but you must acknowledge assistance from other textbooks, classmates or online sources. In particular, you must not copy online material or help from others, as this would prevent you from mastering these concepts. CourseNana.COM

This diagram will help you understand where you can get help: CourseNana.COM


CourseNana.COM

  CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
US代写,Santa Clara University代写,PROG2005代写,Programming Mobile System代写,Ionic app代写,US代编,Santa Clara University代编,PROG2005代编,Programming Mobile System代编,Ionic app代编,US代考,Santa Clara University代考,PROG2005代考,Programming Mobile System代考,Ionic app代考,UShelp,Santa Clara Universityhelp,PROG2005help,Programming Mobile Systemhelp,Ionic apphelp,US作业代写,Santa Clara University作业代写,PROG2005作业代写,Programming Mobile System作业代写,Ionic app作业代写,US编程代写,Santa Clara University编程代写,PROG2005编程代写,Programming Mobile System编程代写,Ionic app编程代写,USprogramming help,Santa Clara Universityprogramming help,PROG2005programming help,Programming Mobile Systemprogramming help,Ionic appprogramming help,USassignment help,Santa Clara Universityassignment help,PROG2005assignment help,Programming Mobile Systemassignment help,Ionic appassignment help,USsolution,Santa Clara Universitysolution,PROG2005solution,Programming Mobile Systemsolution,Ionic appsolution,