AndroidPub
Author

AndroidPub

Senior Android Developer & Interviewer, regularly sharing original tech articles, learning resources, and practical interview guides. Welcome to follow and contribute!

97
Articles
0
Likes
997
Views
0
Comments
Recent Articles

Latest from AndroidPub

97 recent articles
AndroidPub
AndroidPub
Aug 20, 2026 · Artificial Intelligence

How to Stop Large‑Model Coding Agents from Forgetting in Multi‑Turn Dialogues

The article explains why a coding agent may appear to forget earlier decisions, introduces a three‑layer memory system (interaction history, request projection, logical execution chain), and details token‑budget constraints, prompt‑caching trade‑offs, and a suite of context‑compression strategies to keep agents reliable across long conversations.

Agent MemoryContext CompressionEvent Sourcing
0 likes · 16 min read
How to Stop Large‑Model Coding Agents from Forgetting in Multi‑Turn Dialogues
AndroidPub
AndroidPub
Aug 19, 2026 · Artificial Intelligence

How Long Does a Million LLM Tokens Last and How to Cut the Cost?

This article breaks down LLM token billing by explaining what tokens are, how requests are charged, why a single query can consume thousands of tokens, and offers concrete strategies to estimate usage, monitor costs, and reduce expenses across different scenarios.

AI programmingLLMPrompt Cache
0 likes · 20 min read
How Long Does a Million LLM Tokens Last and How to Cut the Cost?
AndroidPub
AndroidPub
Aug 17, 2026 · Mobile Development

Why You Should Stop Misusing Kotlin’s lateinit and Let the Compiler Catch Bugs

The article explains how Kotlin's lateinit can silently bypass compile‑time null safety, leading to UninitializedPropertyAccessException crashes, and argues that using nullable types with safe‑call operators provides compile‑time guarantees, reduces runtime bugs, and improves code safety.

AndroidKotlinNullPointerException
0 likes · 11 min read
Why You Should Stop Misusing Kotlin’s lateinit and Let the Compiler Catch Bugs
AndroidPub
AndroidPub
Aug 14, 2026 · Industry Insights

Will AI Replace Software Engineers? Look Beyond Just Writing Code

The article analyzes how AI can automate highly standardized coding tasks while the truly scarce abilities of software engineers—problem definition, strategic decision‑making, cross‑team influence, and responsibility for outcomes—remain irreplaceable, reshaping the profession’s value distribution.

AIAutomationRecruitment
0 likes · 12 min read
Will AI Replace Software Engineers? Look Beyond Just Writing Code
AndroidPub
AndroidPub
Aug 10, 2026 · Mobile Development

Can AI‑Generated Code Replace Cross‑Platform Frameworks?

The article analyses how AI code‑translation tools can quickly produce parallel Android and iOS code, but argues that cross‑platform frameworks like KMP still provide essential value by keeping business rules in a single source, enforcing clear boundaries, and preventing long‑term drift that AI alone cannot manage.

AI code generationCross-platformFlutter
0 likes · 17 min read
Can AI‑Generated Code Replace Cross‑Platform Frameworks?
AndroidPub
AndroidPub
Jul 23, 2026 · Mobile Development

Mastering Kotlin Asynchronous Streams: The Core of Android Reactive Programming

This article demystifies Kotlin's Flow, StateFlow, SharedFlow, and Channel by explaining their emission, storage, and loss mechanisms, illustrating common pitfalls with concrete code examples, and providing practical guidelines for choosing the right asynchronous data container in Android apps.

AndroidCoroutinesFlow
0 likes · 27 min read
Mastering Kotlin Asynchronous Streams: The Core of Android Reactive Programming
AndroidPub
AndroidPub
Jul 21, 2026 · Mobile Development

2026 Android + AI Development Trends: From Mobile OS to an Agent‑Powered Ecosystem

The article analyzes how Android evolves in 2026 from a simple app platform into a full‑blown intelligence system, covering on‑device AI via AICore and Gemini Nano, hybrid inference, intent‑based computing, the new AppFunctions framework, AI‑enhanced Chrome, and a transformed developer workflow.

AIAndroidAppFunctions
0 likes · 16 min read
2026 Android + AI Development Trends: From Mobile OS to an Agent‑Powered Ecosystem
AndroidPub
AndroidPub
Jun 22, 2026 · Artificial Intelligence

Loop Engineering: The Fourth Paradigm Shift Driving AI Agent Systems

The article traces four evolutionary jumps in AI engineering—from Prompt to Context, Harness, and finally Loop Engineering—explaining how Loop Engineering replaces manual prompting with self‑driving closed‑loop systems, outlines its five‑module architecture, memory layer, and the four conditions and safeguards needed for production‑grade AI agents.

AI AgentsAutomationLoop Engineering
0 likes · 14 min read
Loop Engineering: The Fourth Paradigm Shift Driving AI Agent Systems
AndroidPub
AndroidPub
Jun 18, 2026 · Mobile Development

Kotlin Multiplatform on iOS: Real‑World Practices and Key Challenges

The article examines Kotlin Multiplatform's adoption in production, highlights its quality and staffing benefits, presents survey reuse statistics, and then delves into iOS‑specific debugging hurdles, Objective‑C interop limits, missing API support, native dependency gaps, concurrency complexities, and offers cautious rollout recommendations.

DebuggingKotlin MultiplatformObjective-C interop
0 likes · 7 min read
Kotlin Multiplatform on iOS: Real‑World Practices and Key Challenges