Jins Meme
Implementation of the JINS MEME SDK
Cordovaの問題で困っていますか?
本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、 エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- iOS
利用方法
React
Angular
import { JinsMeme } from '@ionic-native/jins-meme/ngx';
constructor(private jinsMeme: JinsMeme) { }
...
this.jinsMeme.setAppClientID(appClientId: string, clientSecret: string).then(
// Bluetooth should be enabled and the JINS MEME powered on (blinking blue light)
this.jinsMeme.startScan().subscribe((meme_addr) => {
this.jinsMeme.connect(meme_addr).subscribe((connectResult) => {
this.memeService.startDataReport().subscribe((dataReport) => {
console.log(dataReport);
});
});
});
.catch(console.log('jinsMeme.setAppClientID authentication error'));

