开始
复制一个包含安装步骤和本插件完整 Markdown 指南的配置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-native-market`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/native-market/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
安装
标题为“安装”您可以使用我们的 AI 助手设置来安装插件。将 Capgo 技能添加到您的 AI 工具中,使用以下命令:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins然后使用以下提示:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-native-market` plugin in my project.如果您更喜欢手动设置,请运行以下命令安装插件,并按照以下平台特定的说明进行操作:
npm install @capgo/capacitor-native-marketnpx cap sync导入
导入import { NativeMarket } from '@capgo/capacitor-native-market';openStoreListing
在Google Play商店(Android)或App Store(iOS)中打开应用程序列表页面。复制到剪贴板
import { NativeMarket } from '@capgo/capacitor-native-market';
// Open app in storeawait NativeMarket.openStoreListing({ appId: 'com.example.app'});
// Open app in specific country store (iOS only)await NativeMarket.openStoreListing({ appId: 'com.example.app', country: 'IT'});openDevPage
openStoreListing直接在Google Play商店中深度链接到开发者的页面。 仅限Android。
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openDevPage({ devId: 'Google+LLC'});openCollection
开启“openCollection”将用户链接到Google Play商店中的收藏或热门榜。 仅限Android。
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openCollection({ name: 'featured'});openEditorChoicePage
开启“openEditorChoicePage”将用户链接到Google Play商店中的编辑推荐页面。 仅限Android。
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openEditorChoicePage({ editorChoice: 'editorial_fitness_apps_us'});search
开启“search”使用自定义搜索词在Google Play商店中搜索。 仅限Android。
import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.search({ terms: 'fitness apps'});真实数据来源
源头真相该页面由插件生成 src/definitions.ts.当公共API上游更改时,请重新运行同步
继续从开始
标题:继续从开始如果您正在使用 开始 来规划仪表板和API操作,请将其与 使用@capgo/capacitor-native-market 使用@capgo/capacitor-native-market API概述 API概述 简介 了解简介的实现细节 API 键 了解API 键的实现细节 设备 了解设备的实现细节