Filters

Hide filters
Platform
Content Type
Difficulty

All Tutorials · 17 Results

Contained in: Swift SDK for Android swift ui
Multiple Domains

Lesson in Swift SDK for Android

Data Persistence & Testing

Integrate Swift CRUD operations with Kotlin Repository layer. Implement photo display in TaskCard using cross-platform path resolution. Add edit functionality to CreateTaskDialog with StateFlow…
Multiple Domains

Lesson in Swift SDK for Android

Platform Integration: Camera & Image Processing

Connect the camera and image processing components to the UI, add filter buttons, and test the complete photo capture flow.
Multiple Domains New
Swift SDK for Android
…expressiveness for Android development with Swift SDK for Android . This comprehensive module teaches you to build hybrid Android applications where Swift handles business logic and Kotlin manages the UI with Jetpack Compose. Through three hands-on lessons, you’ll build a Task Manager app that showcases Swift-Java interoperability…
Multiple Domains

Lesson in Swift SDK for Android

Data Persistence & Testing

…about them yet. In this section, you’ll connect the Kotlin TaskRepository to Swift’s TaskManager so tasks flow from the JSON file → Swift → Kotlin → UI. Understanding the Architecture Before diving into code, let’s clarify the data flow: App startup: Android launches your app, which initializes TaskRepository…
Multiple Domains

Lesson in Swift SDK for Android

Swift-Java Interoperability: Building the Task Manager Core

Build and test your hybrid Android app. Verify that Swift validation works correctly and understand the cross-language data flow.
Multiple Domains

Lesson in Swift SDK for Android

Data Persistence & Testing

Complete TaskStorage with saveTasks() method. Implement Swift CRUD operations (updateTask, deleteTask) with TaskValidator for data quality. Add PhotoStorage for managing task photos with cascading deletes…
Multiple Domains

Lesson in Swift SDK for Android

Data Persistence & Testing

Implemented atomic file writes to prevent data corruption. Handled cross-platform file paths (iOS vs Android differences). Created JNI exports to bridge Swift methods to Kotlin. Synchronized UI with StateFlow for reactive updates. Implemented two-layer validation (Kotlin for UX, Swift for safety). Built edit functionality with pre-populated forms…
Multiple Domains

Lesson in Swift SDK for Android

Swift-Java Interoperability: Building the Task Manager Core

Introduces Swift SDK for Android and the concept of hybrid Android apps where Swift handles business logic while Kotlin manages the native UI
Multiple Domains

Lesson in Swift SDK for Android

Swift-Java Interoperability: Building the Task Manager Core

Summarizes the Swift SDK for Android workflow and provides key takeaways from building the hybrid Task Manager app.
Multiple Domains

Lesson in Swift SDK for Android

Data Persistence & Testing

Learn about data persistence in Swift SDK for Android. Understand why persistence matters and what you’ll build in this lesson.
Multiple Domains

Lesson in Swift SDK for Android

Platform Integration: Camera & Image Processing

Introduces platform integration concepts, adding photo capture and image processing to the Task Manager using CameraX and Swift filters.
Multiple Domains

Lesson in Swift SDK for Android

Platform Integration: Camera & Image Processing

Create a custom file format for image data exchange and learn how to marshal binary data between Kotlin and Swift.
Multiple Domains

Lesson in Swift SDK for Android

Swift-Java Interoperability: Building the Task Manager Core

Android to build a Task Manager app where Swift handles data validation and business rules while Kotlin manages the native UI with Jetpack Compose. You’ll install swiftly, create a Swift package, set up swift-java with JExtractSwiftPlugin, and connect Kotlin to Swift through auto-generated bindings…
Multiple Domains

Lesson in Swift SDK for Android

Platform Integration: Camera & Image Processing

Implement three image processing algorithms in Swift: grayscale conversion, blur effect, and brightness adjustment.
Multiple Domains

Lesson in Swift SDK for Android

Platform Integration: Camera & Image Processing

Learn how to integrate CameraX, handle runtime permissions, and create a camera preview UI with Jetpack Compose.
Multiple Domains

Lesson in Swift SDK for Android

Swift-Java Interoperability: Building the Task Manager Core

Install Swift SDK for Android toolchain, configure Android NDK, and create your first Swift package that will integrate with Android.
Multiple Domains

Lesson in Swift SDK for Android

Data Persistence & Testing

Learn how to implement production-quality data persistence in Swift SDK for Android. You’ll add file-based storage with JSON serialization, implement complete CRUD operations across the JNI boundary, manage binary photo files separately, and build a polished UI with comprehensive testing. This lesson completes the Task Manager with…