App Unit 5 Notes-Compressed
App Unit 5 Notes-Compressed
UNIT-V
Comparison of Different Frameworks
how the app is programmed 71% of app Uninstalls are down to app crashes. 70%
of users abandon an app that takes too long to load.
Measuring your mobile app's performance at kp
General app KPIs can typically be tracked by anyone as they don't require a
technical understanding of mobile technology or development.
The importance of certain KPIs will differ according to the functionality and
objective of the app. For instance, subscription-only app won't worry about the
number individual downloads of the app in question. Rather, they concentrate on
user engagement.
General mobile app KPIs:
Downloads
• A social media app's twenty million downloads doesn't stand equally with
a paid subscription service's one million downloads, for instance.
Uninstalls
If too many people are uninstalling, this can indicate an issue with your mobile
app's performance - an issue you should quickly.
Ratings
A high user rating means your users are sending your app useful and can also be a
sign that your user engagement is effective.
We will track negative reviews to be looking at in terms of improvements for your
functionality.
Reach vs impressions
Reach refers to the number of people who see your content while impressions
refer to the number of times your content was displayed.
UX and performance KPIs
To improve the performance of your app from a technical standpoint and make
changes that will improve the user experience.
Load speed
people expect lightning-fast loads and, for the most part, they receive them. If your
mobile app isn't toeing the line, you have to x the issue fast.
Screen resolution
Screen resolutions of your users is essential to ensure you're delivering an app
that works as designed for every user.
Crash reports
Apps will crash. Many devices, operating systems, and specifications to
comprehensively test every possible circumstance.
By keeping track of crashes, ensuring the functionality of your app going forward.
Devices
Peoples are they using tablets or smartphones? Are there more Andriod users than
iPhone users? Was any device used the most?
Operating systems
Knowing what operating system, a device is running is crucial to 昀椀xing known issues
like crashes.
Downloaded by Udhaya Varshini ([email protected])
lOMoAR cPSD| 16960609
For example, if you're seeing more crashes from users with iPhones, this probably
means your app hasn't been properly optimized for iOS users.
Mobile app performance refers to how well an app runs on a mobile device under
various loads and circumstances. It might require measuring how long an app takes
to load, mitigating crashes during peaks in user activity, or monitoring battery
usage.
1. Use a CDN to accelerate APIs
• APIs are responsible for communicating and displaying information
received from other applications.
• To speeds up an API's content delivery networks or CDNS come in.
• A CDN uses servers all around the world to accelerate API communication.
• In using an edge server that's close to the user in a geographical sense,
latency, round-trip time, payload, and size are all mitigated.
• Essentially the distance to the user is reduced, resulting in a boost to the API's
speed.
2. Optimize images
The bigger the image, the slower it will load - and the slower your app will
operate while trying to display it. Properly optimizing your images ensures this
load time is kept to a minimum.
Optimization can be looked at as a three-step process:
• Compression
• Resizing
• Caching
Compression is the process of encoding digital image information using fewer bits
to kepp load time is minimum.
Resizing images involves changing the resolution of the network into the device's
memory to fast the load time.
Caching is the practice of downloading images from a network into the device’s
memory fast the load time.
3. Cut down on super昀氀uous features
If a feature isn't essential to the app's performance, you should consider cutting it
for the betterment of your overall performance.
App to be fast and responsive, super昀氀uous features tend to bog apps down,
increasing the load time and slowing down performance.
4. Load data as you need it
Downloaded by Udhaya Varshini ([email protected])
lOMoAR cPSD| 16960609
Loading all of an app's data at once is a quick way to slow or even crash it. split-up
assemblies to beak the data down into easily retrievable chunks.
Unoptimized code can lead to slower performance or even clean and compressed.
potential crashes so you want to make sure your code is clean and compressed
7. Test your app across multiple devices
To test your app across multiple devices. Device testing ensures your 昀椀nal
product will perform as designed no matter what device your user base is using.
8. Monitor crashes: Monitoring your crash reports will ensure you're across any
issues that may spring up once your app is live. Ensure they don't happen for the
same reason a second time.
9.Display a loading state
If your audience is simply staring at a blank screen while your app loads, they will
perceive the load time as longer than it actually .Displaying a loading state with a
colorful animation or helpful messages is a great way to help users tolerate the
wait.
10. Go native
App develop using native apps to make faster and more intuitive for the users. It
also gives you the ability to make full use of the device features such as GPS or
images, etc.
5.4 DEBUGGING CAPABILITIES
• Enable debugging.
• Start debugging. Attach the debugger to a running app.
• Change the debugger type.
• Use the system log. Write log messages in your code. View the system log.
• Work with breakpoints. View and con昀椀gure breakpoints. Debug window frames.
• Inspect variables. Add watchpoints.
• View and change resource value display format
Time to market is how long it takes for you to develop and launch a product.
So昀琀ware - TTM in this industry may be anything from half a year to up to 昀椀ve years,
depending on the complexity of the product. For example, the 昀椀rst version of Airbnb
launched in 10 months.
Cell phones - cell phones commonly have a TTM measurement of between one and
three years.
Vehicle manufacturing industry - the TTM for cars tends to be somewhere
between three and 昀椀ve years.
Energy products and services - in this sector, TTM can start out at the low end at
approximately seven years. It can increase to 20 years for some types of products
and services.
Pharmaceutical sector - in this area, time taken is typically from around nine to
ten years up to 19 to 20 years. Covid-19 vaccines were the exception to this rule,
due to tremendous international pressure.
Downloaded by Udhaya Varshini ([email protected])
lOMoAR cPSD| 16960609
Aerospace and Defense industry - in this sector the time frame can range from
anywhere between three or four years up to 22 years.
Impact of Delayed Time to Market
• Loss of potential revenue
• Missed opportunities for market share
• Decreased customer satisfaction
• Increased competition
5.6 MAINTAINABILITY
Mobile app maintenance refers to the entire process that is followed to ensure a
bug-free and seamless working mobile The app maintenance process includes
monitoring, 昀椀xing, re昀椀ning, and updating the elements that can provide a user
experience.
The progress of an app not only depends on the higher number of app downloads.
Instead, a large number of active users speci昀椀es the success of a mobile app.
According to a survey, around 56% of users uninstall mobile applications within 7
days of the installation period.
Types of Mobile App
Maintenance 1.Perfective
Maintenance
Perfective maintenance is a process that considers those feedbacks. It also
involves some functional modi昀椀cations in the source code to provide a perfect
user experience to the active users. When the targeted user uses the app, speci昀
椀c new user requirements are discovered.
2. Preventive Maintenance
Emergency maintenance takes care of unexpected errors and problems that plague the
system.
5.Corrective Maintenance
Corrective maintenance involves repairing of residual errors and faults in the daily
app functions. These errors are errors in coding, designing, and logic.
High maintainability practices
• Fix issues or add new features without introducing new bugs.
• Improve performance or other attributes.
Downloaded by Udhaya Varshini ([email protected])
lOMoAR cPSD| 16960609
• Check Licenses
• Scheduled System Maintenance
• Eliminate Dependencies To Clear Technical Debt
• Balance Modularization And Re-Usability
• Incorporate Automation
• Adopt Test Driven Development
• Incorporate Automation
• Create API And Method-Level Documentation Bene昀椀ts of App Maintenance
Making the experience of your mobile app superior for your users, its ease of
deployment is equally important.
What to identify before developing a mobile app?
• Decide on your operating system
• Know your target audience
• Concept proof your app idea
• Know what's out there
• Plan your app design and security
6. Begin coding
7. Perform multiple tests
8.Gather and implement
feedback
• speed
• compatibility with both OS.
• search option to keep users engaged
• push noti昀椀cations
• social media linking
• opment
• Incorporate new features or updates once the app is live
• active and engaged users.
4. Create mockups
A mockup is a detailed outline of the appearance of the app with user interface
(UI) and UX designer. It is glimpse how about the app look and operate for
development team.
Mockup includes
• cohesive color scheme
• typography
• images, basic layout
The advantages of a mockup include:
Ensure the mobile app and mobile platform are both secure through:
6. Begin coding
• Front-end development refers the code what the end-user will see.
• Back-end development refers code, which dictates how the app functions.
• Using an Agile methodology of project management can be useful
allowing for e昀케cient, adaptable and 昀氀exible coding.
• Test environment to check 昀椀nal app. Test environment considerations
include the database server, front-end environment, operating system and
network.
• bug reporting tool used to ensure accurate and granular test data.
7. Perform multiple tests
• App integration.
• Application type.
• Installation and storage.
• Security optimization.
• One way you can gain feedback after the launch of the app is by looking at
analytics.
• To help your development team understand customer behavior and identify
any confusing areas for modi昀椀cation.
• To help the team make adjustments to the application before the market launch.
• Once the app is live, it's a good idea to continue receiving feedback so you
can make necessary updates and adjustments as needed.
• Developers may only focus on releasing their app to the Google Play Store or
Apple App Store.
5.8 UI/UX
User Interface (UI) design what you see when you use an application. A user
interface (Mobile UI) allows users to interact with the device's apps, features,
content, and functions. Ulconsists of the visual representation, interface,
navigation, and processes that work behind the functional and structural actions in
the mobile app.
User experience (UX) appearance and function of the app, while UI is all of the
interaction in the application.
2. Onboarding
Screen 3.Home
Screen
4. Login and Pro昀椀le Screens
5. App Screens
Downloaded by Udhaya Varshini ([email protected])
lOMoAR cPSD| 16960609
• Bumble
• Starbucks
• Venmo
UX vs UI
UX design UI design
Human-昀椀rst approach to product’s Human-昀椀rst approach to design the
design aesthetic experience of a product.
Process of building products Process of transformation
Process of transformation that wireframes into attractive and
provide great user easy to use interfaces.
Experience
Focused on users and their journey Focused on visual and interactive
through the
product.
5.9 REUSABILITY
Reusability refers building a new app (mobile and web) using pre-existing components.
Common features of all app to reuse of code:
1. Build a mobile app design repository componentizing the functions that can be
reused.
Common features like:
• Registration
• Login / Login Help
• Pro昀椀le
• Location Services
• Search
2. De昀椀ne the requirements for common mobile app functions at a parent level.
• Password changes
• Managing User Sessions bong
• Managing User Pro昀椀les
• Search Behavior
• Location Services
• Push Noti昀椀cation Handling
3. Build a framework library of these common functions for integration into the app.
• Authentication and Authorization
• Geo-Location Functions
• Maps Functionality
• Managing User Pro昀椀les
• Photo and Video Capture via the device camera
.
4.Use the existing backend components and infrastructure to provide the
data that drives the app.
5. Build a test suite that handles common test scenarios across all your mobile apps.
• Memory Testing
• App Impact on Battery Life
Downloaded by Udhaya Varshini ([email protected])
lOMoAR cPSD| 16960609
• Quicker development/testing
• Deal with less code at once
• Makes bug tracing easier
• Reduces size of app install