SShortSingh.
Back to feed

GoodBarber builds apps with only user-approved SDKs compiled into the binary

0
·1 views

No-code app platform GoodBarber has implemented an 'opt-in only' approach to third-party SDKs, ensuring libraries are compiled into an app's binary only when the corresponding feature is explicitly enabled by the app owner. The company calls this model 'on-demand embedded code,' driven by a feature graph that controls conditional compilation flags at build time. This contrasts with the industry norm where analytics, ad, and crash-reporting SDKs are often bundled by default, sometimes without the app maker's knowledge. The practical impact is significant: a kids app build with no third-party SDKs enabled weighs roughly one-third of a fully featured build, according to the company's July 2026 build data. The approach also helps app owners accurately complete Apple and Google's privacy compliance forms, since the binary contains only what has been deliberately activated.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Builds Always-On AI Workflow Using Mac Mini and Two Other Home Machines

A software developer has set up a multi-agent AI system running 24/7 on a home network of three machines — a Mac Mini M4, a Windows PC, and an Ubuntu laptop — costing under $3,500 in hardware. The Mac Mini serves as the central orchestrator, routing tasks to specialized AI agents that handle daily summaries, code review, documentation drafts, and home camera alerts. Tasks requiring heavy computation, such as running large language models or image generation, are offloaded to the Windows PC with an RTX 3060 GPU. The developer reports that article writing time has dropped from two to three hours to just 10–15 minutes of editing, with automated code reviews catching roughly 80% of common issues. Total electricity costs for running the system are estimated at around $11 per month, with no cloud or GPU rental fees involved.

0
ProgrammingDEV Community ·

Pixel Office Builds Autonomous Agent-to-Agent Sales Pipeline Using AI and Puppeteer

Pixel Office has developed a closed-loop A2A (Agent-to-Agent) sales pipeline in which software agents autonomously prospect, negotiate, and transact with other agents without human involvement. The system begins with a web scraper that identifies target websites featuring chat widgets from platforms such as Chatbase, SiteGPT, and Voiceflow. An Outreach Negotiator Engine, built on Puppeteer and Google's Gemini API, then navigates to those sites, interacts with embedded chatbots via iframe switching, and conducts sales conversations. Gemini API evaluates chatbot responses in real time to guide negotiation and aim for a conversion or lead. The company positions A2A commerce as a faster, more scalable alternative to traditional human-driven B2B sales processes.

0
ProgrammingDEV Community ·

Developer Cuts Multi-Agent AI Costs by 82% Through Architecture Redesign

A developer named Anannya Roy Chowdhury incurred $1,847 in AI costs over a single weekend running a multi-agent system. The excessive spending was driven by too many token interactions and inefficient agent communication patterns. The solution was not switching to a different AI model, but rather restructuring the system's architecture. Moving state management outside the LLM and simplifying agent interactions resulted in an 82% reduction in costs.

0
ProgrammingDEV Community ·

How to Build a Private, Zero-Cost PDF Summarizer Using Local Open-Source LLMs

Developers can now build a fully local PDF summarization tool using Ollama and Llama 3, ensuring sensitive documents never leave their own machine. The approach suits compliance-heavy use cases involving contracts or medical records, while also eliminating per-token cloud API costs. A map-reduce chunking strategy handles long documents within local model context limits, and PyPDF is used for text extraction, with Tesseract recommended for scanned files. Model size acts as the primary quality-speed tradeoff, with the 8B parameter variant considered the practical sweet spot for most hardware. To reduce hallucinations common in smaller local models, the guide recommends low temperature settings, strict prompting, and manual spot-checking before running batch jobs.

GoodBarber builds apps with only user-approved SDKs compiled into the binary · ShortSingh