capacitor-plugin-market
v0.0.6
Published
Capacitor plugin for market for Play Store/App Store.
Readme
Capacitor Market Plugin
Capacitor plugin for native market for Play Store/App Store.
Based on the community plugin Native Market from Priyank Patel
Installation
Using npm
npm install capacitor-plugin-marketSync native files
npx cap synciOS Platform: No further action required.
Android Platform: Register the plugin in your main activity:
import dev.mitti.market.MarketPlugin;
public class MainActivity extends BridgeActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
registerPlugin(MarketPlugin.class);
}
}Configuration
No configuration required for this plugin
Supported methods
| Name | Android | iOS | Web | :---- | :--- | :--- | :--- | | openStoreListing | ✅ | ✅ | ❌
API
openStoreListing(...)
openStoreListing(options: { appId: string; }) => Promise<void>| Param | Type |
| ------------- | ------------------------------- |
| options | { appId: string; } |
