flutter京东SDK插件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Weller c1e9d62dda null-safe пре 2 година
.dart_tool null-safe пре 2 година
.idea null-safe пре 2 година
android 1、初始化项目信息 пре 3 година
example null-safe пре 2 година
ios 1、初始化项目信息 пре 3 година
lib null-safe пре 2 година
test 1、初始化项目信息 пре 3 година
.packages null-safe пре 2 година
CHANGELOG.md 1、初始化项目信息 пре 3 година
LICENSE 1、初始化项目信息 пре 3 година
README.md 1、初始化项目信息 пре 3 година
pubspec.lock null-safe пре 2 година
pubspec.yaml null-safe пре 2 година

README.md

京东sdk的唤醒

京东sdk在Flutter上的实现,通过它可以实现唤醒京东app打开京东任意的url,包括商品详情等功能。

使用需知

京东官方接入文档,在android和ios分别加入安全图片。

ios

在 Info.plist 文件中添加

   <key>LSApplicationQueriesSchemes</key>
   <array>
       <string>openapp.jdmobile</string>
       <string>jdlogin</string>
   </array>
   <key>CFBundleURLTypes</key>
       <array>
           <dict>
               <key>CFBundleTypeRole</key>
               <string>Editor</string>
               <key>CFBundleURLSchemes</key>
               <array>
                   <string>sdkback</string>
                   <string>此处填入appkey</string>
               </array>
           </dict>
       </array>

导入依赖

  import 'package:jdsdk/jdsdk.dart';

初始化


  Jdsdk.init(appKey: '', appSecret: '');

打开京东任意URL

  Jdsdk.openUrl( url: 'https://item.m.jd.com/product/100009963992.html');