|
|
|
|
LEADER |
00000cam a2200000 4500 |
001 |
EBOOKCENTRAL_ocn951672124 |
003 |
OCoLC |
005 |
20240329122006.0 |
006 |
m o d |
007 |
cr |n||||||||| |
008 |
160413e20160331enk o 000 0 eng d |
040 |
|
|
|a COO
|b eng
|e pn
|c COO
|d EBLCP
|d CHVBK
|d OCLCO
|d OCLCF
|d DEBBG
|d FEM
|d IDB
|d OCLCQ
|d MERUC
|d OCLCQ
|d LVT
|d UKAHL
|d OCLCQ
|d OCLCO
|d K6U
|d OCLCQ
|d OCLCO
|d OCLCL
|
019 |
|
|
|a 968009991
|a 969002667
|
020 |
|
|
|a 9781785285684
|
020 |
|
|
|a 1785285688
|q (Trade Paper)
|
020 |
|
|
|a 9781782175087
|
020 |
|
|
|a 1782175083
|
024 |
3 |
|
|a 9781785285684
|
029 |
1 |
|
|a CHNEW
|b 000884507
|
029 |
1 |
|
|a CHVBK
|b 374432074
|
029 |
1 |
|
|a DEBBG
|b BV043893428
|
035 |
|
|
|a (OCoLC)951672124
|z (OCoLC)968009991
|z (OCoLC)969002667
|
037 |
|
|
|b 01201872
|
050 |
|
4 |
|a QA76.76.D47
|b B55 2016
|
082 |
0 |
4 |
|a 005.1
|q OCoLC
|2 23/eng/20230216
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Bilgin, Can,
|e author.
|
245 |
1 |
0 |
|a Mastering Cross-Platform Development with Xamarin.
|
260 |
|
|
|a Birmingham :
|b Packt Publishing, Limited
|c March 2016.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
347 |
|
|
|a text file
|
520 |
8 |
|
|a Master the skills required to steer cross-platform applications from drawing board to app store(s) using XamarinAbout This Book Develop your Xamarin development skills with this comprehensive guide on various patterns and features so you can create elegant and high-quality applications Create adaptive user interfaces on separate platforms without compromising the user experience and platform identity Implement application lifecycle management concepts to manage and finalize cross-platform projects and efficiently collaborate with othersWho This Book Is ForThis book is ideal for those who want to take their entrylevel Xamarin mobile development skills to the next level to become the go-to person within their organization. To fully understand the patterns and concepts described, you should possess a reasonable level of knowledge about the core elements of Xamarin and cross-platform application development with it. What You Will Learn Configure your environment for cross-platform projects with Xamarin Gain memory management skills to avoid memory leaks and premature code cycles while decreasing the memory print of your applications Employ asynchronous and parallel patterns to execute non-interactive and non-blocking processes Create and use SQLite databases for offline scenarios Integrate network resources with cross-platform applications Design and implement eye-catching and reusable UI components without compromising nativity in mobile applications Manage the application lifecycle of cross-platform development projects Distribute Xamarin applications through public or private channelsIn DetailThe main goal of this book is to equip you with the required know-how to successfully analyze, develop, and manage Xamarin cross-platform projects using the most efficient, robust, and scalable implementation patterns. This book starts with general topics such as memory management, asynchronous programming, local storage, and networking, and later moves onto platform-specific features. During this transition, you will learn about key tools to leverage the patterns described, as well as advanced implementation strategies and features. The book also presents User Interface design and implementation concepts on Android and iOS platforms from a Xamarin and cross-platform perspective, with the goal to create a consistent but native UI experience. Finally, we show you the toolset for application lifecycle management to help you prepare the development pipeline to manage and see cross-platform projects through to public or private release. Style and approachThis is a comprehensive guide on various Xamarin features and patterns. Each topic is explained and demonstrated with code samples, which are revised in each section in an iterative manner and analyzed with available diagnostic tools to demonstrate the benefits of different patterns.
|
505 |
0 |
|
|a Cover -- Copyright -- Credits -- About the Authors -- About the Reviewers -- www.PacktPub.com -- Table of Contents -- Preface -- Chapter 1: Developing with Xamarin -- Cross-platform projects with Xamarin -- Xamarin as a platform -- Xamarin as a product -- Target platforms -- Xamarin on Android -- Xamarin on iOS -- Windows Runtime apps -- Setting up the development environment -- Choosing the right development OS -- Xamarin Studio setup and configuration -- Visual Studio setup and configuration -- Emulator options -- Emulators for Android -- iOS emulation -- A typical Xamarin solution structure -- Portable class libraries -- Shared projects -- Xamarin. Forms -- NuGet packages -- Components -- Quality in cross-development -- Reusability -- Abstraction -- Loose-coupling -- Nativity -- Summary -- Chapter 2: Memory Management -- Application Component lifecycle -- Activity lifecycle (Android) -- Active/Running -- Paused -- Backgrounded -- Stopped -- Restarted -- Application lifecycle (iOS) -- Garbage collection -- GC on Xamarin projects -- SGen garbage collector -- Boehm garbage collector (iOS only) -- Platform-specific concepts -- Object reference types -- Automatic Reference Counting (ARC) -- Troubleshooting and diagnosis -- Xamarin Profiler -- Allocations instrument -- Time Profiler -- Device Monitor (Android only) -- Instruments (iOS only) -- Monotouch Profiler (iOS only) -- Patterns and best practices -- Disposable objects -- The lapsed listener problem -- Weak references -- Cross-domain objects -- Cyclic references (cycles) -- Summary -- Chapter 3: Asynchronous Programming -- Multithreading on Xamarin -- Single thread model -- Task-based Asynchronous Pattern -- Concurrency model on iOS -- Asynchronous methods -- Continuation -- Cancellation -- Progress -- Task batches -- Parallel execution -- Patterns and best practices.
|
505 |
8 |
|
|a Async pattern conversions -- Multi-threading with tasks -- Exception handling -- Initialization pattern -- Semaphores -- Background tasks -- Background tasks on iOS -- Services (Android only) -- Summary -- Chapter 4: Local Data Management -- Data in mobile applications -- State -- App data -- Local files -- External data -- Application data -- Installation directory -- Android -- iOS -- Local storage -- Android -- iOS -- Temporary storage -- Local filesystem -- SQLite -- Patterns and best practices -- Application preferences -- File picker -- Backup/Roaming -- Android and Backup API -- iOS and ubiquitous storage -- Summary -- Chapter 5: Networking -- Connected apps -- Web services -- Transport -- Messaging -- SOAP/XML services -- RESTful services -- OData and OAuth -- OData -- OAuth -- SignalR -- Patterns and best practices -- Async conversions -- Data model abstraction -- Service cache -- Platform-specific concepts -- Permissions -- NSUrlConnection/NSUrlSession (iOS Only) -- Background downloads -- Push notifications -- Cloud integration -- Azure Mobile Services -- Azure offline data -- Azure authentication -- Summary -- Chapter 6: Platform Extras -- Content sharing -- File pickers and contracts (Windows Store apps) -- Document Provider extensions (iOS) -- ContentProvider and ContentResolver (Android) -- Peripherals -- Bluetooth -- Wi-Fi Direct -- Near Field Communication -- Location data -- Android location and Google Play services -- Location services on iOS -- Location data on Windows Runtime -- Geofencing -- Native libraries -- Managed callable wrappers (Android) -- Linking versus binding (iOS) -- Summary -- Chapter 7: View Elements -- Design philosophy -- User expectations -- Platform imperatives -- Hardware dependency -- Design metrics on Android -- Design metrics on iOS -- Design metrics on Windows Runtime -- Design elements.
|
505 |
8 |
|
|a The basic layout -- Navigation -- Horizontal navigation -- Vertical navigation -- Jump navigation -- Content elements -- Collection views -- Modal views -- Text views -- Web views -- Feedback -- Indeterminate progress -- Determinate progress -- User interaction -- Interactive controls -- Text input -- Dropdown selection -- Option selection -- Gestures -- Summary -- Chapter 8: Xamarin. Forms -- Under the hood -- Anatomy of Xamarin. Forms -- Project structure -- Components -- Pages -- Tabbed page -- The MasterDetail page -- NavigationPage -- CarouselPage -- ContentPage -- Layouts -- Views -- Extending forms -- Styles -- Triggers and behaviors -- Custom renderers -- Patterns and best practices -- Messaging infrastructure -- Dependency injection -- Shared project versus portable project -- Platform-specific fine-tuning -- Summary -- Chapter 9: Reusable UI Patterns -- Visual assets -- Text resources -- Xamarin. Android -- Xamarin.iOS -- Windows Phone -- Image resources -- Adaptive visual assets -- Reusable assets -- Localization -- Locale and culture -- Windows Phone -- Xamarin.iOS -- Xamarin. Android -- Xamarin. Forms -- Architectural patterns -- MVC -- iOS app architecture -- MVVM -- Windows Runtime -- MVVM on Xamarin.iOS and Xamarin. Android -- MVVM with Xamarin. Forms -- Summary -- Chapter 10: ALM -- Developers and QA -- Development pipeline -- Troubleshooting and diagnostics -- Unit testing -- Platform-agnostic unit tests -- Platform-specific unit tests -- UI testing -- Xamarin. UITests and Xamarin Test Cloud -- Xamarin Test Recorder -- Coded UI tests (Windows Phone) -- Calabash -- Summary -- Chapter 11: ALM -- Project and Release Management -- Source control -- TFVC -- Git -- TFS/Git scenarios -- Git bridge -- NuGet packages -- Subversion (SVN) -- Continuous integration -- Visual Studio Team Services -- TeamCity -- Other -- Automated testing.
|
505 |
8 |
|
|a Beta deployment -- HockeyApp -- Crashlytics -- TestFlight -- Package distribution -- Live telemetry -- Xamarin Insights -- Application Insights -- Summary -- Chapter 12: ALM -- App Stores and Publishing -- Release packages -- Xamarin. Android app package (.apk) -- Disabling debugging -- Linking -- Packing options -- Packaging -- Xamarin.iOS app bundle (.ipa) -- Build options -- Linking -- Provisioning profile -- Windows Phone app package (.appx) -- Distribution options -- App store(s) -- Ad-hoc -- Line of Business apps -- Private channel distribution (Android) -- Apple Developer Enterprise Program -- Windows Phone private distribution -- Summary -- Index.
|
590 |
|
|
|a ProQuest Ebook Central
|b Ebook Central Academic Complete
|
650 |
|
0 |
|a Cross-platform software development.
|
650 |
|
7 |
|a Cross-platform software development
|2 fast
|
655 |
|
4 |
|a Programming; Programming Languages; User Interfaces.
|
758 |
|
|
|i has work:
|a Mastering Cross-Platform Development with Xamarin (Text)
|1 https://id.oclc.org/worldcat/entity/E39PCGMW9XkvYDtMmQgCwkghBK
|4 https://id.oclc.org/worldcat/ontology/hasWork
|
776 |
0 |
8 |
|i Erscheint auch als:
|n Druck-Ausgabe
|t Bilgin, Can. Mastering Cross-Platform Development with Xamarin
|
856 |
4 |
0 |
|u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4520657
|z Texto completo
|
936 |
|
|
|a BATCHLOAD
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH30554542
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL4520657
|
994 |
|
|
|a 92
|b IZTAP
|