import { motion } from "framer-motion";
import {
ArrowRight,
Brush,
Bug,
Calendar,
CheckCircle,
Code,
Coffee,
DollarSign,
Eye,
Lightbulb,
Monitor,
Network,
Palette,
Play,
RefreshCcw,
Rocket,
Settings,
Smartphone,
Tablet,
TrendingUp,
UserPlus,
Users2,
Watch,
Zap,
} from "lucide-react";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { Footer } from "../components/Footer";
import { Navigation } from "../components/Navigation";
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
} from "../components/ui/accordion";
import { Badge } from "../components/ui/badge";
import { Button } from "../components/ui/button";
import { Card, CardContent } from "../components/ui/card";
import { ShimmerButton } from "../components/ui/shimmer-button";
import androidVectorImage from "../src/images/android-vector.png";
import { useNavigate } from "react-router-dom";
import { Helmet } from "react-helmet-async";
import ranoutofImage from "../src/images/ranoutof.webp"
import tradersCircuitImage from "../src/images/traders-circuit.webp";
import prospertyImage from "../src/images/prosperty.webp";
import awsLogoImage from "../src/images/aws-logo.png";
// Android Hero Section with Android device mockups and Android vector
const AndroidHeroWithCTA = () => {
const navigate = useNavigate();
return (
{/* Page Title and Meta Description */}
Android App Development by WDI | Boost Your Mobile Presence Today
{/* Canonical Link */}
{/* Open Graph Tags (for Facebook, LinkedIn) */}
{/* Twitter Card Tags */}
{/* Social Profiles (using JSON-LD Schema) */}
{/* Android Development Label */}
Android App Development
{/* Main Heading */}
Robust Android App Development Services
Building scalable, secure, and user-centric Android applications
for the world's largest mobile ecosystem with modern development
practices.
{/* Key Benefits */}
3+ Billion Users
Native Performance
Google Play Ready
Kotlin & Java
{/* CTAs */}
navigate("/start-a-project")}
>
Book a Free Consultation
Explore Our Android Portfolio
{/* Right side with Android vector and device mockups */}
{/* Android Vector and Device Mockups Container */}
{/* Animated Background Elements */}
{/* Main Android Vector */}
{/* Android Vector Image */}
{/* Glowing effect around Android vector */}
{/* Floating development icons around Android */}
{/* Kotlin Badge */}
{/* Java Badge */}
{/* Play Store Badge */}
{/* Firebase Badge */}
{/* Device Mockups */}
{/* Android Phone Mockup */}
{/* Android Tablet Mockup */}
{/* Android Technology Badges */}
Android
Kotlin
Java
Android Studio
);
};
// Key Benefits of Android Development
const AndroidKeyBenefits = () => {
const benefits = [
{
icon: Users2,
title: "Massive Reach",
description:
"Access to billions of users globally across diverse markets and demographics with Android's dominant market share.",
},
{
icon: Settings,
title: "Flexibility & Customization",
description:
"Open-source nature allows for extensive customization, diverse features, and innovative user experiences.",
},
{
icon: Monitor,
title: "Device Versatility",
description:
"Optimized for a wide range of devices, screen sizes, and form factors from budget to premium devices.",
},
{
icon: Network,
title: "Integration Potential",
description:
"Seamless connection with Google services, APIs, and diverse hardware capabilities for rich functionality.",
},
{
icon: DollarSign,
title: "Cost-Effective Entry",
description:
"Lower entry barrier with flexible development options and cost-effective deployment strategies.",
},
];
return (
Why Develop a Native Android App?
AI mobile app development offers unparalleled reach and flexibility for businesses looking to tap into the world's largest mobile ecosystem.
);
})}
{/* Second row with 2 cards centered */}
{benefits.slice(3).map((benefit, index) => {
const IconComponent = benefit.icon;
return (
{benefit.title}
{benefit.description}
);
})}
);
};
// Android Development Process Timeline
const AndroidProcessTimeline = () => {
const steps = [
{
title: "Discovery & Strategy",
description:
"Comprehensive analysis of your Android app requirements, target audience, and optimal device compatibility strategy.",
icon: Lightbulb,
},
{
title: "UI/UX Design",
description:
"Create stunning designs following Material Design principles for optimal Android user experience and platform consistency.",
icon: Palette,
},
{
title: "Native Android Development",
description:
"Build your app using Kotlin/Java and modern Android frameworks for maximum performance and platform integration.",
icon: Code,
},
{
title: "Thorough QA & Testing",
description:
"Comprehensive testing across diverse Android devices, OS versions, and screen sizes to ensure flawless functionality.",
icon: Bug,
},
{
title: "Google Play Launch & Maintenance",
description:
"Handle Google Play Store submission, optimization, and provide ongoing maintenance and feature updates.",
icon: Rocket,
},
];
return (
Our Comprehensive Android App Development Journey
From concept to Google Play success, we guide you through every step
of the Android development process.
);
};
// Android-Specific FAQs
const AndroidFAQs = () => {
const faqs = [
{
question:
"How do you ensure app compatibility across diverse Android devices?",
answer:
"We follow comprehensive testing strategies including device fragmentation testing, responsive design principles, and adaptive layouts. Our team tests across multiple screen sizes, Android versions, and hardware configurations to ensure consistent performance across the Android ecosystem.",
},
{
question: "What's your approach to Android UI/UX design?",
answer:
"We strictly follow Google's Material Design guidelines while incorporating your brand identity. Our designs prioritize usability, accessibility, and platform consistency while ensuring your app feels native to Android users and leverages platform-specific interaction patterns.",
},
{
question: "Do you provide post-launch updates and maintenance?",
answer:
"Yes, we offer comprehensive post-launch support including regular updates for new Android versions, security patches, performance optimizations, feature enhancements, and Google Play Store compliance. Our maintenance packages are tailored to your specific needs.",
},
{
question:
"Can you integrate with specific Google services (e.g., Maps, Firebase)?",
answer:
"Absolutely! We specialize in Google services integration including Google Maps, Firebase, Google Pay, Google Drive, Google Analytics, and more. Our team has extensive experience leveraging the full Google ecosystem to enhance your app's functionality and user experience.",
},
];
return (
Frequently Asked Questions
Common questions about our Android app development services.
Build Your Next Big Idea on{" "}
Android with WDI
Partner with us to create powerful, user-friendly Android
applications that stand out in the competitive market.
navigate("/start-a-project")}
>
Start Your Android Project Now
Free consultation • Expert guidance • Rapid development
{/* Background Decorative Elements */}
);
};
// Main Android App Development Page
export const AndroidAppDevelopment = () => {
return (