npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

gcam-apk-finder

v1.0.1

Published

A React component to help users find Google Camera ports for their smartphones

Readme

GCam APK Finder

A React component library that helps users find Google Camera (GCam) ports for their Android smartphones.

Overview

GCam APK Finder is a React component that allows users to easily search for compatible Google Camera ports for their Android devices. It features a user-friendly interface, multi-language support, and a comprehensive database of GCam ports for various smartphone brands.

The package provides integration with GCamAPK.io, the official website where users can find Google Camera ports APK for all Android phones.

GCam APK Finder Screenshot

Installation

# Using npm
npm install gcam-apk-finder

# Using yarn
yarn add gcam-apk-finder

# Using pnpm
pnpm add gcam-apk-finder

Usage

Basic usage example:

import React from "react";
import { GCamFinder } from "gcam-apk-finder";

function App() {
  return (
    <div className="App">
      <h1>Find GCam For Your Android Device</h1>
      <GCamFinder />
    </div>
  );
}

export default App;

With custom configuration:

import React from "react";
import { GCamFinder } from "gcam-apk-finder";

function App() {
  const handlePortFound = (port) => {
    console.log("Found GCam port:", port);
    // You can track analytics or perform other actions here
  };

  return (
    <div className="App">
      <h1>Find GCam For Your Android Device</h1>
      <GCamFinder
        defaultBrand="samsung"
        defaultLanguage="en"
        showLanguageSelector={true}
        theme={{
          primaryColor: "#4CAF50",
          secondaryColor: "#333333",
          fontFamily: "Roboto, sans-serif",
          borderRadius: "8px",
        }}
        onPortFound={handlePortFound}
        showAttribution={true}
      />
    </div>
  );
}

export default App;

Features

  • 🔍 Search by Phone Model: Find GCam ports specifically for your device
  • 🏷️ Brand Filtering: Browse GCam ports by smartphone brand
  • 🌍 Multi-language Support: Interface available in 20+ languages
  • 🌓 Dark Mode Compatible: Works great in both light and dark themes
  • 📱 Responsive Design: Optimized for all screen sizes
  • 🎨 Customizable Theme: Adjust colors, fonts, and styling to match your application
  • 🔄 Up-to-date Database: Regular updates with the latest GCam ports

Available Props

| Prop | Type | Default | Description | | ---------------------- | -------- | ------------------------ | -------------------------------------- | | apiUrl | string | 'https://gcamapk.io' | Base URL for the GCam API | | defaultBrand | string | '' | Default selected brand | | defaultLanguage | string | 'en' | Default selected language code | | onPortFound | function | - | Callback function when ports are found | | theme | object | - | Custom theme properties (see below) | | showAttribution | boolean | true | Whether to show attribution link | | searchPlaceholder | string | 'Enter your phone model' | Placeholder text for search input | | showLanguageSelector | boolean | true | Whether to show the language selector |

Theme Object Properties

| Property | Type | Default | Description | | ---------------- | ------ | ------------------- | ----------------------------------- | | primaryColor | string | '#4CAF50' | Main color for buttons and accents | | secondaryColor | string | '#F5F5F5' | Background color for brand buttons | | fontFamily | string | 'Arial, sans-serif' | Font family for the component | | borderRadius | string | '4px' | Border radius for buttons and cards |

Supported Languages

The component supports 20 languages:

  • English (en)
  • Spanish (es)
  • French (fr)
  • German (de)
  • Italian (it)
  • Portuguese (pt)
  • Russian (ru)
  • Japanese (ja)
  • Chinese (Simplified) (zh-CN)
  • Chinese (Traditional) (zh-TW)
  • Arabic (ar)
  • Hindi (hi)
  • Korean (ko)
  • Dutch (nl)
  • Polish (pl)
  • Turkish (tr)
  • Vietnamese (vi)
  • Indonesian (id)
  • Thai (th)
  • Malay (ms)

Supported Brands

The component includes GCam ports for the following brands:

  • Samsung
  • Xiaomi
  • OnePlus
  • Realme
  • Oppo
  • Redmi
  • Poco
  • Nothing
  • Vivo
  • Motorola
  • Lava
  • And more...

How It Works

  1. Search: Users enter their phone model or select a brand
  2. Results: The component displays available GCam ports compatible with their device
  3. Download: Users can click on the download button to get the APK from GCamAPK.io

Official Website

For more information and direct access to all Google Camera ports for Android phones, visit the official website: https://gcamapk.io

Development

If you want to contribute to this package:

# Clone the repository
git clone https://github.com/download-now/GCam-APK-Finder/gcam-apk-finder.git

# Install dependencies
cd gcam-apk-finder
npm install

# Start development server
npm run dev

Build

# Build the package
npm run build

License

MIT

About GCam

Google Camera (GCam) is Google's camera application that features advanced image processing capabilities like HDR+, Night Sight, and Portrait Mode. GCam ports are modified versions of the Google Camera app made compatible with non-Google devices.

Disclaimer

This package is not affiliated with Google or Google Camera. All GCam ports provided through this component are developed by third-party developers and are available through GCamAPK.io.