Skip to content

Commit

Permalink
ShareSDK3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jychenX committed Mar 22, 2018
1 parent e65273d commit b097f53
Show file tree
Hide file tree
Showing 111 changed files with 31 additions and 294 deletions.
4 changes: 3 additions & 1 deletion Classes/C2DXShareSDK/C2DXShareSDKTypeDef.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ namespace cn
C2DXContentTypeVideo = 6, /**< 视频 */
C2DXContentTypeApp = 7, /**< 应用,仅供微信使用 */
C2DXContentTypeFile = 8, /**< 文件消息,仅供微信使用 */
C2DXContentTypeEmoji = 9 /**< 表情消息,仅供微信使用 */
C2DXContentTypeEmoji = 9, /**< 表情消息,仅供微信使用 */
C2DXContentTypeMiniProgram = 11, /**< 分享小程序,仅供微信使用 */
C2DXContentTypeOpenMiniProgram = 12 /**< 打开小程序,仅供Android 微信使用 */
};

/**
Expand Down
4 changes: 4 additions & 0 deletions Classes/ShareSDK.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@
SortId="4"
AppId="wx4868b35061f87885"
AppSecret="64020361b8ec4c99936c0e3999a9f249"
UserName="gh_b0c6a9ca668a"
Path="pages/index/index?id=mob"
BypassApproval="false"
WithShareTicket = "true"
MiniprogramType = "2"
Enable="true" />

<WechatMoments
Expand Down
157 changes: 0 additions & 157 deletions proj.android-studio/app/MyTest.iml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed proj.android-studio/app/libs/ShareSDK-Line-3.1.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed proj.android-studio/app/libs/ShareSDK-QQ-3.1.3.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 12 additions & 0 deletions proj.android-studio/app/src/cn/sharesdk/ShareSDKUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,18 @@ private static HashMap<String, Object> nativeMapToJavaMap(
if (content.get("extInfo") != null) {
map.put("extInfo", content.get("extInfo"));
}
if (content.get("wxUserName") != null) {
map.put("wxUserName", content.get("wxUserName"));
}
if (content.get("wxPath") != null) {
map.put("wxPath", content.get("wxPath"));
}
if (content.get("wxWithShareTicket") != null) {
map.put("wxWithShareTicket", content.get("wxWithShareTicket"));
}
if (content.get("wxMiniProgramType") != null) {
map.put("wxMiniProgramType", content.get("wxMiniProgramType"));
}
if (content.get("type") != null) {
String type = (String) content.get("type");
int shareType = Integer.parseInt(type);
Expand Down
Loading

0 comments on commit b097f53

Please sign in to comment.