Mobile Development Flashcards
Applications built using web technologies. These apps are accessed via a ______ __________.
Applications built using web technologies. These apps are accessed via a web browser.
Developers can leverage their existing skills and knowledge and develop ______-platform applications _______ and _______.
Developers can leverage their existing skills and knowledge and develop cross-platform applications faster and cheaper.
The user does not need to _____ for, and _____ it before using it.
The user does not need to search for, and install it before using it. * not good *
Applications built using OS-specific programming _______ and ______.
Applications built using OS-specific programming languages and tools.
Java is used to create _______ apps (._ _ _ packages) and
Java is used to create Android apps (.apk packages) and
______ and _____ are used to create iOS apps (._ _ _ packages).
Objective-C and Swift are used to create iOS apps (.ipa packages).
Android vs. iOS differences:
They are two different languages and their code are not easily portable across each other’s environments. This means that developers would need to build, maintain and manage different codebases for each OS. In addtion to managing two development projects, versions of each application would need to be maintained.
The major advantages of Native applications include:
1) P
2) F
3) UI
4) I
The major advantages of Native applications include:
1) Fast and responsive (performance).
2) Access to more features, particularly, hardware-related features
3) Deployed in App stores.
Standard UI elements and experiences. (you don’t have to create those things)
4) Can still work without and Internet connection
Cross-platform Hybrid Applications are:
Applications built using web technologies that are then wrapped in a web view component and deployed as a native application.
Cordova is a _______ that runs a web application in a _____ _______ component and is the main technology behind _____ app development.
Cordova is a framework that runs a web application in a Web View component and is the main technology behind hybrid app development.
_____ and ____ ______ are based on Cordova and expand upon its features.
Ionic and Adobe PhoneGap are based on Cordova and expand upon its features.
Both iOS and Android system have _____ _____Components. Therefore ____ codebase can be used for both systems.
Both iOS and Android system have Web View Components. Therefore one codebase can be used for both systems.
Native features are _______ but may require additional Cordova _______.
Native features are available but may require additional Cordova plugins.
Cordova doesn’t use native _____ _________.
Cordova doesn’t use native UI components. (down fall)
The biggest downfall is that Cordova apps do not usually _______ as well as _______ apps.
The biggest downfall is that Cordova apps do not usually perform as well as Native apps.
Cross-platform Native Applications are:
Applications built using web technology tools that are compiled and deployed as a native package.
For Web developers, one of the greatest barriers to entry into mobile development was learning _______/_______ and ______.
For Web developers, one of the greatest barriers to entry into mobile development was learning Objective-C/Swift and Java. These programming languages were quite different from web technologies.
Frameworks such as React Native, Xamarin and NativeScript provide web developers with a ______ development framework/environment so that web developers can author their application using web technologies such as _____, _______ and ______ and then easily deploy .ipa (iOS) and .apk (Android) packages.
Frameworks such as React Native, Xamarin and NativeScript provide web developers with a familiar development framework/environment so that web developers can author their application using web technologies such as HTML, CSS and JavaScript and then easily deploy .ipa (iOS) and .apk (Android) packages.
While NativeScript and React Native target web developers, Xamarin is tailored toward __ and ._ _ _ developers.
While NativeScript and React Native target web developers, Xamarin is tailored toward C# and .NET developers.
This methodology provides a familiar development environment and allows for performant applications that use ___ _____. (Cross-platform native apps)
This methodology provides a familiar development environment and allows for performant applications that use Native UIs.
____ _____ _____ (PWAs) are simply web apps that are progressively enhanced with ______ app-like features.
Progressive Web Apps (PWAs) are simply web apps that are progressively enhanced with native app-like features.
Other differences of PWAs include: (4)
Other differences of PWAs include:
1) Offline components
2) Reduced loading times since much of the app is cached
3) Full screen experience.
4) They can be “installed” on the user’s device
Keep in mind that PWAs do not have the full ______ ____ as Native apps do.
Keep in mind that PWAs do not have the full feature set as Native apps do.
https://whatwebcando.today/
Beware: PWA features are not _____ across iOS and Android.
Beware: PWA features are not consistent across iOS and Android.
https://developers.google.com/web/fundamentals/codelabs/your-first-pwapp/
The front-end and back-end are _______.
API Driven Dev
The front-end and back-end are decoupled.
Remote calls are made from the ____ to the _____ resource (usually a _ _ _ _-based API).
(API Driven Dev)
Remote calls are made from the client to the remote resource (usually a REST-based API).
Architecturally, this is very similar to an _ _ _ _-based application where the client and server are _______ from each other.
(API Driven Dev)
Architecturally, this is very similar to an AJAX-based application where the client and server are decoupled from each other.
The advantage of a decoupled system is that many clients (iOS, Android, Web) can ______ one _______ application. A different ______ application does not need to be created for each client application.
(API Driven Dev)
The advantage of a decoupled system is that many clients (iOS, Android, Web) can access one server application. A different server application does not need to be created for each client application.