<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://knowledgebase.pirho.net/index.php?action=history&amp;feed=atom&amp;title=Mobile_Application_Lifecycle_and_Deployment</id>
	<title>Mobile Application Lifecycle and Deployment - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://knowledgebase.pirho.net/index.php?action=history&amp;feed=atom&amp;title=Mobile_Application_Lifecycle_and_Deployment"/>
	<link rel="alternate" type="text/html" href="https://knowledgebase.pirho.net/index.php?title=Mobile_Application_Lifecycle_and_Deployment&amp;action=history"/>
	<updated>2026-07-13T14:28:31Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://knowledgebase.pirho.net/index.php?title=Mobile_Application_Lifecycle_and_Deployment&amp;diff=458&amp;oldid=prev</id>
		<title>Dex: Created page with &quot;&#039;&#039;&#039;Summary:&#039;&#039;&#039; The development of a mobile application is only one stage in a much larger journey. Successful mobile applications progress through a complete lifecycle that includes planning, development, testing, deployment, operation, maintenance, and eventual retirement. Understanding this lifecycle helps organisations make better architectural decisions, improve reliability, reduce operational risk, and maximise the value of their software investments.  == Context ==...&quot;</title>
		<link rel="alternate" type="text/html" href="https://knowledgebase.pirho.net/index.php?title=Mobile_Application_Lifecycle_and_Deployment&amp;diff=458&amp;oldid=prev"/>
		<updated>2026-07-13T08:44:13Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Summary:&amp;#039;&amp;#039;&amp;#039; The development of a mobile application is only one stage in a much larger journey. Successful mobile applications progress through a complete lifecycle that includes planning, development, testing, deployment, operation, maintenance, and eventual retirement. Understanding this lifecycle helps organisations make better architectural decisions, improve reliability, reduce operational risk, and maximise the value of their software investments.  == Context ==...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Summary:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
The development of a mobile application is only one stage in a much larger journey. Successful mobile applications progress through a complete lifecycle that includes planning, development, testing, deployment, operation, maintenance, and eventual retirement. Understanding this lifecycle helps organisations make better architectural decisions, improve reliability, reduce operational risk, and maximise the value of their software investments.&lt;br /&gt;
&lt;br /&gt;
== Context ==&lt;br /&gt;
&lt;br /&gt;
Many discussions about mobile development focus heavily on programming languages, frameworks, and user interface design.&lt;br /&gt;
&lt;br /&gt;
Whilst these topics are important, they represent only part of the overall picture.&lt;br /&gt;
&lt;br /&gt;
A mobile application often spends a relatively short period being developed and a much longer period being:&lt;br /&gt;
&lt;br /&gt;
* Maintained&lt;br /&gt;
* Updated&lt;br /&gt;
* Supported&lt;br /&gt;
* Monitored&lt;br /&gt;
* Secured&lt;br /&gt;
* Improved&lt;br /&gt;
&lt;br /&gt;
The application delivered to users is rarely the final version.&lt;br /&gt;
&lt;br /&gt;
Instead, it becomes part of an ongoing operational process that may continue for many years.&lt;br /&gt;
&lt;br /&gt;
As a result, lifecycle management should be considered an architectural concern rather than merely an operational activity.&lt;br /&gt;
&lt;br /&gt;
== The Mobile Application Lifecycle ==&lt;br /&gt;
&lt;br /&gt;
A simplified mobile application lifecycle can be represented as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Planning&lt;br /&gt;
    ↓&lt;br /&gt;
Development&lt;br /&gt;
    ↓&lt;br /&gt;
Testing&lt;br /&gt;
    ↓&lt;br /&gt;
Deployment&lt;br /&gt;
    ↓&lt;br /&gt;
Monitoring&lt;br /&gt;
    ↓&lt;br /&gt;
Improvement&lt;br /&gt;
    ↓&lt;br /&gt;
Retirement&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Each stage contributes to the overall success of the application.&lt;br /&gt;
&lt;br /&gt;
Failure in any stage can impact user satisfaction, security, reliability, or long-term maintainability.&lt;br /&gt;
&lt;br /&gt;
=== Planning ===&lt;br /&gt;
&lt;br /&gt;
Every successful application begins with understanding a business requirement.&lt;br /&gt;
&lt;br /&gt;
Activities may include:&lt;br /&gt;
&lt;br /&gt;
* Requirements gathering&lt;br /&gt;
* User research&lt;br /&gt;
* Workflow analysis&lt;br /&gt;
* Architecture design&lt;br /&gt;
* Risk assessment&lt;br /&gt;
* Security planning&lt;br /&gt;
&lt;br /&gt;
Decisions made during planning can influence the application&amp;#039;s entire operational lifespan.&lt;br /&gt;
&lt;br /&gt;
=== Development ===&lt;br /&gt;
&lt;br /&gt;
Development transforms requirements into a working application.&lt;br /&gt;
&lt;br /&gt;
Activities include:&lt;br /&gt;
&lt;br /&gt;
* User interface creation&lt;br /&gt;
* API integration&lt;br /&gt;
* Business logic implementation&lt;br /&gt;
* Data management&lt;br /&gt;
* Security controls&lt;br /&gt;
* Performance optimisation&lt;br /&gt;
&lt;br /&gt;
Development choices influence future maintenance and deployment complexity.&lt;br /&gt;
&lt;br /&gt;
=== Testing ===&lt;br /&gt;
&lt;br /&gt;
Testing seeks to identify issues before users encounter them.&lt;br /&gt;
&lt;br /&gt;
Common testing activities include:&lt;br /&gt;
&lt;br /&gt;
* Functional testing&lt;br /&gt;
* User acceptance testing&lt;br /&gt;
* Performance testing&lt;br /&gt;
* Accessibility testing&lt;br /&gt;
* Security testing&lt;br /&gt;
* Compatibility testing&lt;br /&gt;
&lt;br /&gt;
Testing is often less expensive than correcting problems after deployment.&lt;br /&gt;
&lt;br /&gt;
=== Deployment ===&lt;br /&gt;
&lt;br /&gt;
Deployment makes the application available to users.&lt;br /&gt;
&lt;br /&gt;
Deployment typically involves:&lt;br /&gt;
&lt;br /&gt;
* Packaging&lt;br /&gt;
* Code signing&lt;br /&gt;
* Distribution&lt;br /&gt;
* Store submission&lt;br /&gt;
* Release approval&lt;br /&gt;
&lt;br /&gt;
Deployment is a milestone rather than the end of the lifecycle.&lt;br /&gt;
&lt;br /&gt;
=== Monitoring ===&lt;br /&gt;
&lt;br /&gt;
After release, organisations need visibility into how applications behave in real-world environments.&lt;br /&gt;
&lt;br /&gt;
Monitoring helps identify:&lt;br /&gt;
&lt;br /&gt;
* Crashes&lt;br /&gt;
* Performance problems&lt;br /&gt;
* User adoption trends&lt;br /&gt;
* Security concerns&lt;br /&gt;
* Service disruptions&lt;br /&gt;
&lt;br /&gt;
Without monitoring, decisions are often based on assumptions rather than evidence.&lt;br /&gt;
&lt;br /&gt;
=== Improvement ===&lt;br /&gt;
&lt;br /&gt;
Most applications evolve continuously.&lt;br /&gt;
&lt;br /&gt;
Changes may include:&lt;br /&gt;
&lt;br /&gt;
* New features&lt;br /&gt;
* Security updates&lt;br /&gt;
* User experience improvements&lt;br /&gt;
* Performance enhancements&lt;br /&gt;
* Compliance updates&lt;br /&gt;
&lt;br /&gt;
Improvement extends the useful lifespan of the application.&lt;br /&gt;
&lt;br /&gt;
=== Retirement ===&lt;br /&gt;
&lt;br /&gt;
All applications eventually reach end-of-life.&lt;br /&gt;
&lt;br /&gt;
Reasons include:&lt;br /&gt;
&lt;br /&gt;
* Business changes&lt;br /&gt;
* Technology obsolescence&lt;br /&gt;
* Replacement systems&lt;br /&gt;
* Platform changes&lt;br /&gt;
* Compliance requirements&lt;br /&gt;
&lt;br /&gt;
Retirement should be planned rather than treated as an afterthought.&lt;br /&gt;
&lt;br /&gt;
== Building the Application ==&lt;br /&gt;
&lt;br /&gt;
Before deployment, source code must be transformed into a distributable package.&lt;br /&gt;
&lt;br /&gt;
This process generally includes:&lt;br /&gt;
&lt;br /&gt;
* Compilation&lt;br /&gt;
* Dependency resolution&lt;br /&gt;
* Asset packaging&lt;br /&gt;
* Optimisation&lt;br /&gt;
* Code signing&lt;br /&gt;
&lt;br /&gt;
The resulting package can then be deployed to users.&lt;br /&gt;
&lt;br /&gt;
=== Android Packages ===&lt;br /&gt;
&lt;br /&gt;
Android applications are commonly distributed as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
APK&lt;br /&gt;
Android Package&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
or&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
AAB&lt;br /&gt;
Android App Bundle&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Modern Android deployments increasingly use App Bundles because they allow Google Play to optimise download sizes for specific devices.&lt;br /&gt;
&lt;br /&gt;
=== Apple Application Packages ===&lt;br /&gt;
&lt;br /&gt;
Apple applications are typically packaged into:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
IPA&lt;br /&gt;
iOS Application Archive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Before distribution, applications must be signed using certificates approved by Apple.&lt;br /&gt;
&lt;br /&gt;
== Delivery vs Deployment ==&lt;br /&gt;
&lt;br /&gt;
The terms &amp;#039;&amp;#039;delivery&amp;#039;&amp;#039; and &amp;#039;&amp;#039;deployment&amp;#039;&amp;#039; are often used interchangeably.&lt;br /&gt;
&lt;br /&gt;
However, they describe different activities.&lt;br /&gt;
&lt;br /&gt;
=== Delivery ===&lt;br /&gt;
&lt;br /&gt;
Delivery refers to producing a deployable artifact.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Source Code&lt;br /&gt;
        ↓&lt;br /&gt;
Build Process&lt;br /&gt;
        ↓&lt;br /&gt;
Application Package&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The application exists but is not yet available to users.&lt;br /&gt;
&lt;br /&gt;
=== Deployment ===&lt;br /&gt;
&lt;br /&gt;
Deployment occurs when users can obtain and use the application.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Application Package&lt;br /&gt;
        ↓&lt;br /&gt;
Store Submission&lt;br /&gt;
        ↓&lt;br /&gt;
Store Approval&lt;br /&gt;
        ↓&lt;br /&gt;
User Installation&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
An application can be delivered without being deployed.&lt;br /&gt;
&lt;br /&gt;
Understanding this distinction becomes important when designing release processes.&lt;br /&gt;
&lt;br /&gt;
== Application Distribution ==&lt;br /&gt;
&lt;br /&gt;
Once packaged, applications must be distributed to users.&lt;br /&gt;
&lt;br /&gt;
Several distribution models exist.&lt;br /&gt;
&lt;br /&gt;
=== Public Application Stores ===&lt;br /&gt;
&lt;br /&gt;
The most common approach involves public application marketplaces.&lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
* Google Play Store&lt;br /&gt;
* Apple App Store&lt;br /&gt;
&lt;br /&gt;
These provide:&lt;br /&gt;
&lt;br /&gt;
* Global distribution&lt;br /&gt;
* Automatic updates&lt;br /&gt;
* User feedback mechanisms&lt;br /&gt;
* Security reviews&lt;br /&gt;
* Centralised management&lt;br /&gt;
&lt;br /&gt;
=== Enterprise Distribution ===&lt;br /&gt;
&lt;br /&gt;
Large organisations often deploy applications internally.&lt;br /&gt;
&lt;br /&gt;
Examples include:&lt;br /&gt;
&lt;br /&gt;
* Employee applications&lt;br /&gt;
* Operational systems&lt;br /&gt;
* Secure internal tools&lt;br /&gt;
&lt;br /&gt;
Enterprise distribution may bypass public marketplaces entirely.&lt;br /&gt;
&lt;br /&gt;
=== Private Application Stores ===&lt;br /&gt;
&lt;br /&gt;
Some organisations maintain their own application catalogues.&lt;br /&gt;
&lt;br /&gt;
These allow controlled distribution whilst retaining management oversight.&lt;br /&gt;
&lt;br /&gt;
=== Testing Channels ===&lt;br /&gt;
&lt;br /&gt;
Many platforms support:&lt;br /&gt;
&lt;br /&gt;
* Beta testing&lt;br /&gt;
* Pilot deployments&lt;br /&gt;
* Internal testing groups&lt;br /&gt;
&lt;br /&gt;
These mechanisms allow issues to be identified before large-scale deployment.&lt;br /&gt;
&lt;br /&gt;
== Continuous Integration and Continuous Delivery ==&lt;br /&gt;
&lt;br /&gt;
Modern development increasingly relies on automation.&lt;br /&gt;
&lt;br /&gt;
A typical pipeline might resemble:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Source Code&lt;br /&gt;
&lt;br /&gt;
        ↓&lt;br /&gt;
&lt;br /&gt;
Automated Build&lt;br /&gt;
&lt;br /&gt;
        ↓&lt;br /&gt;
&lt;br /&gt;
Automated Testing&lt;br /&gt;
&lt;br /&gt;
        ↓&lt;br /&gt;
&lt;br /&gt;
Package Creation&lt;br /&gt;
&lt;br /&gt;
        ↓&lt;br /&gt;
&lt;br /&gt;
Release Candidate&lt;br /&gt;
&lt;br /&gt;
        ↓&lt;br /&gt;
&lt;br /&gt;
Deployment&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Benefits include:&lt;br /&gt;
&lt;br /&gt;
* Reduced manual effort&lt;br /&gt;
* Greater consistency&lt;br /&gt;
* Faster delivery&lt;br /&gt;
* Improved reliability&lt;br /&gt;
&lt;br /&gt;
Continuous Integration (CI) focuses on validating changes regularly.&lt;br /&gt;
&lt;br /&gt;
Continuous Delivery (CD) focuses on making releases consistently deployable.&lt;br /&gt;
&lt;br /&gt;
== Versioning and Release Management ==&lt;br /&gt;
&lt;br /&gt;
Applications evolve through multiple versions.&lt;br /&gt;
&lt;br /&gt;
A release strategy helps manage this evolution safely.&lt;br /&gt;
&lt;br /&gt;
Common activities include:&lt;br /&gt;
&lt;br /&gt;
* Version numbering&lt;br /&gt;
* Release planning&lt;br /&gt;
* Upgrade paths&lt;br /&gt;
* Rollback procedures&lt;br /&gt;
* Compatibility management&lt;br /&gt;
&lt;br /&gt;
Careful release management reduces operational risk.&lt;br /&gt;
&lt;br /&gt;
=== Major Releases ===&lt;br /&gt;
&lt;br /&gt;
Major releases often introduce:&lt;br /&gt;
&lt;br /&gt;
* New functionality&lt;br /&gt;
* Architectural changes&lt;br /&gt;
* Significant enhancements&lt;br /&gt;
&lt;br /&gt;
=== Minor Releases ===&lt;br /&gt;
&lt;br /&gt;
Minor releases typically provide:&lt;br /&gt;
&lt;br /&gt;
* Improvements&lt;br /&gt;
* Optimisations&lt;br /&gt;
* Additional features&lt;br /&gt;
&lt;br /&gt;
=== Maintenance Releases ===&lt;br /&gt;
&lt;br /&gt;
Maintenance releases primarily focus on:&lt;br /&gt;
&lt;br /&gt;
* Bug fixes&lt;br /&gt;
* Security patches&lt;br /&gt;
* Stability improvements&lt;br /&gt;
&lt;br /&gt;
== Mobile Applications as Distributed Systems ==&lt;br /&gt;
&lt;br /&gt;
Many people view mobile applications as standalone software.&lt;br /&gt;
&lt;br /&gt;
In reality, most modern applications form part of a larger ecosystem.&lt;br /&gt;
&lt;br /&gt;
A typical application might interact with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Mobile Application&lt;br /&gt;
        ↓&lt;br /&gt;
Identity Provider&lt;br /&gt;
        ↓&lt;br /&gt;
API Services&lt;br /&gt;
        ↓&lt;br /&gt;
Databases&lt;br /&gt;
        ↓&lt;br /&gt;
Monitoring Systems&lt;br /&gt;
        ↓&lt;br /&gt;
Notification Services&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The mobile application is often only the visible component of a much larger system.&lt;br /&gt;
&lt;br /&gt;
Deployment therefore affects multiple interconnected services.&lt;br /&gt;
&lt;br /&gt;
== Monitoring and Telemetry ==&lt;br /&gt;
&lt;br /&gt;
Deployment creates an opportunity to collect operational intelligence.&lt;br /&gt;
&lt;br /&gt;
Common telemetry includes:&lt;br /&gt;
&lt;br /&gt;
* Crash reports&lt;br /&gt;
* Performance metrics&lt;br /&gt;
* Device information&lt;br /&gt;
* User behaviour&lt;br /&gt;
* Service availability&lt;br /&gt;
* Feature adoption&lt;br /&gt;
&lt;br /&gt;
Telemetry enables evidence-based improvements.&lt;br /&gt;
&lt;br /&gt;
Without telemetry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Opinions Drive Decisions&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With telemetry:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Evidence Drives Decisions&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Crash Reporting ===&lt;br /&gt;
&lt;br /&gt;
Understanding why applications fail is essential.&lt;br /&gt;
&lt;br /&gt;
Crash monitoring can identify:&lt;br /&gt;
&lt;br /&gt;
* Software defects&lt;br /&gt;
* Device-specific issues&lt;br /&gt;
* Operating system compatibility problems&lt;br /&gt;
&lt;br /&gt;
=== Performance Monitoring ===&lt;br /&gt;
&lt;br /&gt;
Performance monitoring helps identify:&lt;br /&gt;
&lt;br /&gt;
* Memory issues&lt;br /&gt;
* Slow operations&lt;br /&gt;
* API bottlenecks&lt;br /&gt;
* Battery consumption problems&lt;br /&gt;
&lt;br /&gt;
=== Usage Analytics ===&lt;br /&gt;
&lt;br /&gt;
Usage analytics help determine:&lt;br /&gt;
&lt;br /&gt;
* Which features are valuable&lt;br /&gt;
* Which workflows create friction&lt;br /&gt;
* How users actually interact with the application&lt;br /&gt;
&lt;br /&gt;
== Security and Compliance ==&lt;br /&gt;
&lt;br /&gt;
Security continues throughout the application lifecycle.&lt;br /&gt;
&lt;br /&gt;
Responsibilities may include:&lt;br /&gt;
&lt;br /&gt;
* Vulnerability management&lt;br /&gt;
* Dependency review&lt;br /&gt;
* Certificate management&lt;br /&gt;
* Authentication controls&lt;br /&gt;
* Data protection&lt;br /&gt;
* Regulatory compliance&lt;br /&gt;
&lt;br /&gt;
Security should be treated as a continuous process rather than a single deployment activity.&lt;br /&gt;
&lt;br /&gt;
== Common Deployment Challenges ==&lt;br /&gt;
&lt;br /&gt;
=== Store Approval Delays ===&lt;br /&gt;
&lt;br /&gt;
Application stores may require reviews before publication.&lt;br /&gt;
&lt;br /&gt;
This can affect release schedules.&lt;br /&gt;
&lt;br /&gt;
=== Platform Fragmentation ===&lt;br /&gt;
&lt;br /&gt;
Applications often operate across:&lt;br /&gt;
&lt;br /&gt;
* Different device models&lt;br /&gt;
* Different operating systems&lt;br /&gt;
* Different hardware capabilities&lt;br /&gt;
&lt;br /&gt;
Testing must consider these variations.&lt;br /&gt;
&lt;br /&gt;
=== Dependency Management ===&lt;br /&gt;
&lt;br /&gt;
Applications frequently rely on external libraries and services.&lt;br /&gt;
&lt;br /&gt;
Changes to those dependencies can introduce unforeseen challenges.&lt;br /&gt;
&lt;br /&gt;
=== Version Compatibility ===&lt;br /&gt;
&lt;br /&gt;
New releases must remain compatible with:&lt;br /&gt;
&lt;br /&gt;
* Existing users&lt;br /&gt;
* Existing services&lt;br /&gt;
* Existing data structures&lt;br /&gt;
&lt;br /&gt;
Backward compatibility can become a significant architectural consideration.&lt;br /&gt;
&lt;br /&gt;
== Application End-of-Life ==&lt;br /&gt;
&lt;br /&gt;
Software retirement is frequently overlooked during planning.&lt;br /&gt;
&lt;br /&gt;
However, applications eventually reach a point where continued investment is no longer appropriate.&lt;br /&gt;
&lt;br /&gt;
An end-of-life process may include:&lt;br /&gt;
&lt;br /&gt;
* User communication&lt;br /&gt;
* Data migration&lt;br /&gt;
* Archive creation&lt;br /&gt;
* Service decommissioning&lt;br /&gt;
* Documentation updates&lt;br /&gt;
&lt;br /&gt;
A well-managed retirement protects both users and organisations.&lt;br /&gt;
&lt;br /&gt;
== Practical Guidance ==&lt;br /&gt;
&lt;br /&gt;
When designing a mobile application lifecycle:&lt;br /&gt;
&lt;br /&gt;
* Plan beyond the initial release&lt;br /&gt;
* Automate wherever practical&lt;br /&gt;
* Monitor from day one&lt;br /&gt;
* Build security into every stage&lt;br /&gt;
* Treat deployment as the beginning of operations&lt;br /&gt;
* Design for maintenance&lt;br /&gt;
* Prepare for retirement&lt;br /&gt;
&lt;br /&gt;
Applications frequently live far longer than anticipated.&lt;br /&gt;
&lt;br /&gt;
Architectural decisions should reflect this reality.&lt;br /&gt;
&lt;br /&gt;
== Conclusion ==&lt;br /&gt;
&lt;br /&gt;
Mobile application development is often viewed as the process of writing software.&lt;br /&gt;
&lt;br /&gt;
In reality, development is merely one stage within a much larger lifecycle.&lt;br /&gt;
&lt;br /&gt;
Planning, testing, deployment, monitoring, maintenance, security, and retirement frequently consume more effort than the initial implementation itself.&lt;br /&gt;
&lt;br /&gt;
Successful organisations understand that applications are not static products delivered once and forgotten.&lt;br /&gt;
&lt;br /&gt;
They are living systems that evolve continuously throughout their operational lifespan.&lt;br /&gt;
&lt;br /&gt;
Understanding the complete lifecycle of a mobile application is therefore just as important as understanding the technologies used to build it.&lt;br /&gt;
&lt;br /&gt;
Good developers focus on creating applications.&lt;br /&gt;
&lt;br /&gt;
Good architects focus on sustaining them.&lt;/div&gt;</summary>
		<author><name>Dex</name></author>
	</entry>
</feed>