├── .github └── workflows │ └── mirror.yml ├── .gitignore ├── README.md ├── UMLibrary ├── .gitignore ├── build.gradle ├── libs │ ├── umeng-agoo-accs-3.4.2.7.12.jar │ ├── umeng-agoo_networksdk-3.5.8.10.jar │ ├── umeng-agoo_tnet4android-3.1.14.10.2.aar │ ├── umeng-alicloud-httpdns-1.3.2.3.1.jar │ ├── umeng-alicloud-utils-2.0.0.1.jar │ ├── umeng-alicloud_beacon-1.0.5.jar │ ├── umeng-common-9.8.4.aar │ ├── umeng-game-9.2.0+G.jar │ ├── umeng-push-6.7.2.aar │ ├── umeng-umdid-1.1.0.jar │ └── uyumao-1.1.4.aar └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── geo_global_ca.cer │ └── res │ ├── drawable │ ├── umeng_socialize_back_icon.png │ ├── umeng_socialize_btn_bg.xml │ ├── umeng_socialize_copy.png │ ├── umeng_socialize_copyurl.png │ ├── umeng_socialize_delete.png │ ├── umeng_socialize_edit_bg.xml │ ├── umeng_socialize_menu_default.png │ ├── umeng_socialize_more.png │ ├── umeng_socialize_share_music.png │ ├── umeng_socialize_share_video.png │ ├── umeng_socialize_share_web.png │ └── umeng_socialize_tx.png │ ├── layout │ ├── socialize_share_menu_item.xml │ ├── umeng_socialize_oauth_dialog.xml │ ├── umeng_socialize_share.xml │ ├── upush_bar_image_notification.xml │ └── upush_notification.xml │ └── values │ ├── umeng_socialize_shareview_strings.xml │ └── umeng_socialize_style.xml ├── app ├── .gitignore ├── build.gradle ├── debug.keystore ├── libs │ ├── umeng-apm-v2.0.3.aar │ └── umeng-asms-v1.8.7.aar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── umeng │ │ └── soexample │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── datu.jpg │ │ ├── localvideo.mp4 │ │ ├── logo.png │ │ ├── uapp.json │ │ ├── upush.json │ │ └── ushare.json │ ├── java │ │ └── com │ │ │ └── umeng │ │ │ └── soexample │ │ │ ├── App.java │ │ │ ├── BaseActivity.java │ │ │ ├── HomeActivity.java │ │ │ ├── UmInitConfig.java │ │ │ ├── analytics │ │ │ ├── Process1Activity.java │ │ │ ├── Process1Service.java │ │ │ ├── UFragmentStack.java │ │ │ ├── UFragmentTabs.java │ │ │ ├── UappActivity.java │ │ │ └── views │ │ │ │ ├── FuncTitle.java │ │ │ │ └── Function.java │ │ │ ├── apshare │ │ │ └── ShareEntryActivity.java │ │ │ ├── ddshare │ │ │ └── DDShareActivity.java │ │ │ ├── douyinapi │ │ │ └── DouYinEntryActivity.java │ │ │ ├── log │ │ │ ├── BaseFragment.java │ │ │ ├── LogActivity.java │ │ │ ├── UAPPLogFrg.java │ │ │ ├── UPushLogFrg.java │ │ │ ├── UShareLogFrg.java │ │ │ ├── bean │ │ │ │ └── UpdateLog.java │ │ │ └── views │ │ │ │ ├── LogAdapter.java │ │ │ │ └── LogFragmentPagerAdapter.java │ │ │ ├── push │ │ │ ├── MipushTestActivity.java │ │ │ ├── MyNotificationService.java │ │ │ ├── NotificationBroadcast.java │ │ │ ├── PushDialogFragment.java │ │ │ ├── SplashTestActivity.java │ │ │ ├── UmengNotificationService.java │ │ │ ├── UpushActivity.java │ │ │ └── notification │ │ │ │ ├── AndroidNotification.java │ │ │ │ ├── AndroidUnicast.java │ │ │ │ ├── DebugNotification.java │ │ │ │ └── UmengNotification.java │ │ │ ├── share │ │ │ ├── AuthActivity.java │ │ │ ├── InfoActivity.java │ │ │ ├── InfoDetailActivity.java │ │ │ ├── SettingActivity.java │ │ │ ├── ShareBoardActivity.java │ │ │ ├── ShareDetailActivity.java │ │ │ ├── SharePlatformActivity.java │ │ │ ├── UshareActivity.java │ │ │ ├── utils │ │ │ │ ├── Defaultcontent.java │ │ │ │ ├── StyleUtil.java │ │ │ │ └── Tools.java │ │ │ └── views │ │ │ │ └── AuthAdapter.java │ │ │ ├── sp │ │ │ └── SharedPreferencesHelper.java │ │ │ ├── twitterapi │ │ │ └── TwitterShareReceiver.java │ │ │ ├── views │ │ │ ├── Item.java │ │ │ └── Tab.java │ │ │ ├── wxapi │ │ │ └── WXEntryActivity.java │ │ │ └── yxapi │ │ │ └── YXEntryActivity.java │ └── res │ │ ├── drawable │ │ ├── btnbg.xml │ │ ├── datu.jpg │ │ ├── fenxiang.png │ │ ├── logo.png │ │ ├── thumb.png │ │ ├── tutu.gif │ │ ├── um_app.png │ │ ├── um_auth.png │ │ ├── um_board.png │ │ ├── um_dplus.png │ │ ├── um_info.png │ │ ├── um_infodetail_blue_bg.xml │ │ ├── um_infodetail_red_bg.xml │ │ ├── um_infodetailbg.xml │ │ ├── um_log.png │ │ ├── um_menuc.png │ │ ├── um_menud.png │ │ ├── um_push_btn.xml │ │ ├── um_push_ok.png │ │ ├── um_push_tip.png │ │ ├── um_share.png │ │ ├── um_sharedemo.png │ │ ├── um_ugame.png │ │ ├── um_upush.png │ │ ├── umeng_arrow.png │ │ ├── umeng_back_icon.png │ │ ├── umeng_push_default_splash_bg.jpg │ │ ├── umeng_push_notification_default_large_icon.png │ │ └── umeng_push_notification_default_small_icon.png │ │ ├── layout │ │ ├── activity_auth.xml │ │ ├── activity_home.xml │ │ ├── activity_infodetail.xml │ │ ├── activity_log.xml │ │ ├── activity_mipush.xml │ │ ├── activity_process_1.xml │ │ ├── activity_setting.xml │ │ ├── activity_uapp.xml │ │ ├── activity_upush.xml │ │ ├── activity_ushare.xml │ │ ├── activity_ushareboard.xml │ │ ├── activity_usharedetail.xml │ │ ├── activity_ushareplatform.xml │ │ ├── adapter_item.xml │ │ ├── app_authadapter_share.xml │ │ ├── diaologlayout.xml │ │ ├── fragment_log.xml │ │ ├── function.xml │ │ ├── functitle.xml │ │ ├── item.xml │ │ ├── notification_view.xml │ │ ├── push_dialog.xml │ │ ├── push_dialog_result.xml │ │ ├── tab.xml │ │ ├── titlebar.xml │ │ ├── umeng_custom_card_message.xml │ │ ├── umeng_example_analytics_fragment_stack.xml │ │ └── umeng_example_analytics_fragment_tabs.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── umeng_push_notification_default_sound.mp3 │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── style.xml │ │ └── xml │ │ ├── filepaths.xml │ │ └── network_security_config.xml │ └── test │ └── java │ └── com │ └── umeng │ └── soexample │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── share ├── main └── libs │ └── umeng-share-core-7.3.7.jar ├── platforms ├── QQ完整版 │ ├── libs │ │ ├── open_sdk_3.5.16.4_r8c01346_lite.jar │ │ └── umeng-share-QQ-full-7.3.7.jar │ └── res │ │ └── drawable │ │ ├── umeng_socialize_qq.png │ │ └── umeng_socialize_qzone.png ├── alipay │ ├── libs │ │ ├── libapshare20161108.jar │ │ └── umeng-share-alipay-7.3.7.jar │ ├── res │ │ └── drawable │ │ │ └── umeng_socialize_alipay.png │ └── src │ │ └── apshare │ │ └── ShareEntryActivity.java ├── bytedance │ ├── libs │ │ └── umeng-share-bytedance-7.3.7.jar │ ├── res │ │ └── drawable │ │ │ ├── umeng_socialize_bytedance.png │ │ │ ├── umeng_socialize_bytedance_friends.png │ │ │ └── umeng_socialize_bytedance_publish.png │ └── src │ │ └── douyinapi │ │ └── DouYinEntryActivity.java ├── dingding │ ├── libs │ │ └── umeng-share-Ding-7.3.7.jar │ ├── res │ │ └── drawable │ │ │ └── umeng_socialize_ding.png │ └── src │ │ └── ddshare │ │ └── DDShareActivity.java ├── douban │ ├── libs │ │ └── umeng-share-douban-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_douban.png ├── dropbox │ ├── libs │ │ ├── json_simple-1.1.jar │ │ └── umeng-share-dropbox-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_dropbox.png ├── email │ ├── libs │ │ └── umeng-share-email-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_gmail.png ├── evernote │ ├── libs │ │ └── umeng-share-evernote-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_evernote.png ├── facebook │ ├── libs │ │ └── umeng-share-facebook-7.3.7.jar │ └── res │ │ ├── drawable │ │ ├── com_facebook_close.png │ │ ├── umeng_socialize_facebook.png │ │ └── umeng_socialize_fbmessage.png │ │ ├── layout │ │ ├── com_facebook_activity_layout.xml │ │ └── com_facebook_login_fragment.xml │ │ └── values │ │ ├── facebook_strings.xml │ │ ├── messenger_button_strings.xml │ │ └── umeng_socialize_facebook_strings.xml ├── flickr │ ├── libs │ │ └── umeng-share-flickr-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_flickr.png ├── foursquare │ ├── libs │ │ └── umeng-share-foursquare-7.3.7.jar │ └── res │ │ ├── drawable │ │ └── umeng_socialize_foursquare.png │ │ └── values │ │ └── umeng_socialize_foursquare_strings.xml ├── honor │ ├── libs │ │ ├── Honor-openSDK-6.0.3.004.aar │ │ └── umeng-share-honor-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_honor.png ├── instagram │ ├── libs │ │ └── umeng-share-instagram-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_instagram.png ├── kakao │ ├── libs │ │ └── umeng-share-kakao-7.3.7.jar │ └── res │ │ ├── drawable │ │ └── umeng_socialize_kakao.png │ │ ├── layout │ │ └── umeng_socialize_activity_kakao_webview.xml │ │ └── values │ │ └── umeng_socialize_kakao_strings.xml ├── line │ ├── libs │ │ └── umeng-share-line-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_line.png ├── linkedin │ ├── libs │ │ ├── umeng-share-linkedin-7.3.7.jar │ │ └── volley.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_linkedin.png ├── pinterest │ ├── libs │ │ └── umeng-share-pinterest-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_pinterest.png ├── pocket │ ├── libs │ │ └── umeng-share-pocket-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_pocket.png ├── sms │ ├── libs │ │ └── umeng-share-sms-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_sms.png ├── tumblr │ ├── libs │ │ └── umeng-share-tumblr-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_tumblr.png ├── twitter │ ├── libs │ │ └── umeng-share-twitter-7.3.7.jar │ ├── res │ │ └── drawable │ │ │ └── umeng_socialize_twitter.png │ └── src │ │ └── twitterapi │ │ └── TwitterShareReceiver.java ├── vkontakte │ ├── libs │ │ └── umeng-share-vkontakte-7.3.7.jar │ └── res │ │ ├── drawable │ │ ├── ic_ab_app.png │ │ ├── ic_ab_done.png │ │ ├── vk_clear_shape.xml │ │ ├── vk_gray_transparent_shape.xml │ │ ├── vk_icon.png │ │ └── vk_share_send_button_background.xml │ │ ├── layout │ │ ├── vk_captcha_dialog.xml │ │ ├── vk_open_auth_dialog.xml │ │ └── vk_share_dialog.xml │ │ └── values │ │ ├── vk_color.xml │ │ ├── vk_dimen.xml │ │ ├── vk_strings.xml │ │ └── vk_styles.xml ├── whatsapp │ ├── libs │ │ └── umeng-share-whatsapp-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_whatsapp.png ├── yixin │ ├── libs │ │ ├── SocialSDK_yixin_1.jar │ │ └── umeng-share-yixin-7.3.7.jar │ ├── res │ │ └── drawable │ │ │ ├── umeng_socialize_yixin.png │ │ │ └── umeng_socialize_yixin_circle.png │ └── src │ │ └── yxapi │ │ └── YXEntryActivity.java ├── ynote │ ├── libs │ │ └── umeng-share-ynote-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_ynote.png ├── 企业微信 │ ├── libs │ │ ├── lib_wwapi-2.0.12.11.aar │ │ └── umeng-share-wxwork-7.3.7.jar │ └── res │ │ └── drawable │ │ └── umeng_socialize_wxwork.png ├── 微信完整版 │ ├── libs │ │ └── umeng-share-wechat-full-7.3.7.jar │ ├── res │ │ └── drawable │ │ │ ├── umeng_socialize_fav.png │ │ │ ├── umeng_socialize_wechat.png │ │ │ └── umeng_socialize_wxcircle.png │ └── src │ │ └── wxapi │ │ └── WXEntryActivity.java └── 新浪完整版 │ ├── libs │ └── umeng-share-sina-full-7.3.7.jar │ └── res │ └── drawable │ └── umeng_socialize_sina.png └── shareback └── libs └── umeng-link-2.0.0.aar /.github/workflows/mirror.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: gitee mirror 4 | 5 | # Controls when the action will run. 6 | on: [ push, pull_request, workflow_dispatch ] 7 | 8 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 9 | jobs: 10 | # This workflow contains a single job called "build" 11 | to_gitee: 12 | # The type of runner that the job will run on 13 | runs-on: ubuntu-latest 14 | continue-on-error: true 15 | # Steps represent a sequence of tasks that will be executed as part of the job 16 | steps: 17 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 18 | - uses: actions/checkout@v1 19 | - uses: pixta-dev/repository-mirroring-action@v1 20 | with: 21 | target_repo_url: git@gitee.com:umengplus/MultiFunctionAndroidDemo.git 22 | ssh_private_key: ${{ secrets.GITEE_SSH_PRIVATE_KEY }} 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | local.properties 4 | .DS_Store 5 | build 6 | captures 7 | .externalNativeBuild 8 | .idea 9 | .git 10 | *.iml 11 | 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### 【友盟+】统计、推送、分享三合一组件化SDK集成Demo 2 | 3 | 重要更新:增加用户授权隐私协议友盟sdk初始化逻辑,具体请查看SplashTestActivity 4 | 5 | 本项目仅提供离线包依赖方式集成示例。 6 | 7 | 如果您是采用maven库在线依赖相关友盟SDK,请参考[如下Demo工程](https://github.com/umeng/MultiFunctionAndroidMavenDemo-master)。 8 | 9 | apm SDK集成示例工程,请参考 [APM Demo](http://docs-aliyun.cn-hangzhou.oss.aliyun-inc.com/assets/attach/176778/UMDP_zh/1608017839531/CrashDemo.zip)。 10 | 11 | --- 12 | ## 集成升级必读(Android) 13 | 14 | #### 1. 统计SDK 9.3.0版本不能和低版本推送、分享SDK混用。混用可能导致不可预知后果(例如:崩溃,无数据等)。 15 | 16 | 下表列出统计SDK 9.3.0支持的各业务SDK最低版本,请确保App中配合9.3.0统计SDK集成的各业务SDK版本号满足下表要求。 17 | 18 | 19 | | 推送SDK | 分享SDK | 游戏统计SDK| 智能登录SDK| 20 | | -------- | -------- | --------| ---------| 21 | | >= v6.2.0 | >= v7.1.0 | >= v9.2.0+G | >= v1.4.0 | 22 | 23 | 24 | #### 2. 集成本版本SDK 请务必在混淆时增加:-keep class com.uc.** {*;} 25 | 26 | #### 3. 集成移动统计时,如果App不能保证在Appcalition.onCreate函数中调用UMConfigure.init初始化函数 请查看https://developer.umeng.com/docs/119267/detail/118588#h3-u9884u521Du59CBu5316 27 | 28 | #### 4. 集成移动统计时,如果开发者调用kill或者exit之类的方法杀死进程,请查看,https://developer.umeng.com/docs/119267/detail/118637#h1-u5176u4ED6u529Fu80FD6 29 | 30 | #### 5. 如集成移动统计后无数据,请查看https://developer.umeng.com/docs/119267/cate/121449 31 | 32 | #### 6. 详细升级文档,请查看:https://developer.umeng.com/docs/119267/detail/118642 -------------------------------------------------------------------------------- /UMLibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UMLibrary/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | ArrayList getShareDir(String name) { 4 | ArrayList tmp = new ArrayList() 5 | File[] files = (new File(rootDir, "share")).listFiles() 6 | if (files != null) { 7 | tmp.addAll(files) 8 | } 9 | ArrayList dirs = new ArrayList() 10 | while (tmp.size() > 0) { 11 | File file = tmp.remove(0) 12 | if (file.isDirectory() && name == file.getName()) { 13 | dirs.add(file.getPath()) 14 | } else if (file.isDirectory()) { 15 | files = file.listFiles() 16 | if (files != null) { 17 | tmp.addAll(files) 18 | } 19 | } 20 | } 21 | return dirs 22 | } 23 | 24 | android { 25 | compileSdkVersion 34 26 | 27 | defaultConfig { 28 | minSdkVersion 14 29 | targetSdkVersion 30 30 | 31 | sourceSets { 32 | main { 33 | ArrayList resSrcList = getShareDir("res") 34 | resSrcList.add("src/main/res") 35 | res.srcDirs = resSrcList 36 | } 37 | } 38 | } 39 | 40 | 41 | buildTypes { 42 | release { 43 | minifyEnabled false 44 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 45 | } 46 | } 47 | } 48 | 49 | dependencies { 50 | api fileTree(dir: 'libs', include: ['*.jar', '*.aar']) 51 | ArrayList share = getShareDir("libs") 52 | for (String item : share) { 53 | api fileTree(dir: "${item}", include: ['*.jar', '*.aar']) 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-agoo-accs-3.4.2.7.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-agoo-accs-3.4.2.7.12.jar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-agoo_networksdk-3.5.8.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-agoo_networksdk-3.5.8.10.jar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-agoo_tnet4android-3.1.14.10.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-agoo_tnet4android-3.1.14.10.2.aar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-alicloud-httpdns-1.3.2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-alicloud-httpdns-1.3.2.3.1.jar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-alicloud-utils-2.0.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-alicloud-utils-2.0.0.1.jar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-alicloud_beacon-1.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-alicloud_beacon-1.0.5.jar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-common-9.8.4.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-common-9.8.4.aar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-game-9.2.0+G.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-game-9.2.0+G.jar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-push-6.7.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-push-6.7.2.aar -------------------------------------------------------------------------------- /UMLibrary/libs/umeng-umdid-1.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/umeng-umdid-1.1.0.jar -------------------------------------------------------------------------------- /UMLibrary/libs/uyumao-1.1.4.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/libs/uyumao-1.1.4.aar -------------------------------------------------------------------------------- /UMLibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /UMLibrary/src/main/assets/geo_global_ca.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/assets/geo_global_ca.cer -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_back_icon.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_copy.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_copyurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_copyurl.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_delete.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_edit_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_menu_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_menu_default.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_more.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_share_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_share_music.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_share_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_share_video.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_share_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_share_web.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/drawable/umeng_socialize_tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/UMLibrary/src/main/res/drawable/umeng_socialize_tx.png -------------------------------------------------------------------------------- /UMLibrary/src/main/res/layout/socialize_share_menu_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 24 | 25 | -------------------------------------------------------------------------------- /UMLibrary/src/main/res/layout/upush_bar_image_notification.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /UMLibrary/src/main/res/layout/upush_notification.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 19 | 20 | 31 | 32 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 60 | 61 | 66 | 67 | -------------------------------------------------------------------------------- /UMLibrary/src/main/res/values/umeng_socialize_shareview_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 分享到新浪微博 4 | 分享到豆瓣 5 | 分享到人人网 6 | 7 | 分享到腾讯微博 8 | 分享到twitter 9 | 分享到领英 10 | -------------------------------------------------------------------------------- /UMLibrary/src/main/res/values/umeng_socialize_style.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 | 12 | 13 | 16 | 17 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/test/java/com/umeng/soexample/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | repositories { 3 | google() 4 | mavenCentral() 5 | maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } 6 | maven { url 'https://artifact.bytedance.com/repository/AwemeOpenSDK' } 7 | maven { 8 | url 'http://www.idescout.com/maven/repo/' 9 | } 10 | } 11 | dependencies { 12 | classpath 'com.android.tools.build:gradle:4.1.3' 13 | } 14 | } 15 | 16 | allprojects { 17 | repositories { 18 | google() 19 | mavenCentral() 20 | maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' } 21 | maven { url 'https://artifact.bytedance.com/repository/AwemeOpenSDK' } 22 | } 23 | 24 | // tasks.withType(JavaCompile) { 25 | // sourceCompatibility = 1.8 26 | // targetCompatibility = 1.8 27 | // } 28 | } 29 | 30 | task clean(type: Delete) { 31 | delete rootProject.buildDir 32 | } 33 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | android.injected.testOnly=false -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Aug 04 16:40:02 CST 2022 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':UMLibrary' -------------------------------------------------------------------------------- /share/main/libs/umeng-share-core-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/main/libs/umeng-share-core-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/QQ完整版/libs/open_sdk_3.5.16.4_r8c01346_lite.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/QQ完整版/libs/open_sdk_3.5.16.4_r8c01346_lite.jar -------------------------------------------------------------------------------- /share/platforms/QQ完整版/libs/umeng-share-QQ-full-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/QQ完整版/libs/umeng-share-QQ-full-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/QQ完整版/res/drawable/umeng_socialize_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/QQ完整版/res/drawable/umeng_socialize_qq.png -------------------------------------------------------------------------------- /share/platforms/QQ完整版/res/drawable/umeng_socialize_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/QQ完整版/res/drawable/umeng_socialize_qzone.png -------------------------------------------------------------------------------- /share/platforms/alipay/libs/libapshare20161108.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/alipay/libs/libapshare20161108.jar -------------------------------------------------------------------------------- /share/platforms/alipay/libs/umeng-share-alipay-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/alipay/libs/umeng-share-alipay-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/alipay/res/drawable/umeng_socialize_alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/alipay/res/drawable/umeng_socialize_alipay.png -------------------------------------------------------------------------------- /share/platforms/alipay/src/apshare/ShareEntryActivity.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample.apshare; 2 | 3 | import com.umeng.socialize.media.ShareCallbackActivity; 4 | 5 | public class ShareEntryActivity extends ShareCallbackActivity { 6 | } -------------------------------------------------------------------------------- /share/platforms/bytedance/libs/umeng-share-bytedance-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/bytedance/libs/umeng-share-bytedance-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/bytedance/res/drawable/umeng_socialize_bytedance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/bytedance/res/drawable/umeng_socialize_bytedance.png -------------------------------------------------------------------------------- /share/platforms/bytedance/res/drawable/umeng_socialize_bytedance_friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/bytedance/res/drawable/umeng_socialize_bytedance_friends.png -------------------------------------------------------------------------------- /share/platforms/bytedance/res/drawable/umeng_socialize_bytedance_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/bytedance/res/drawable/umeng_socialize_bytedance_publish.png -------------------------------------------------------------------------------- /share/platforms/bytedance/src/douyinapi/DouYinEntryActivity.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample.douyinapi; 2 | 3 | import com.umeng.socialize.douyin.DYCallbackActivity; 4 | 5 | public class DouYinEntryActivity extends DYCallbackActivity { 6 | } -------------------------------------------------------------------------------- /share/platforms/dingding/libs/umeng-share-Ding-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/dingding/libs/umeng-share-Ding-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/dingding/res/drawable/umeng_socialize_ding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/dingding/res/drawable/umeng_socialize_ding.png -------------------------------------------------------------------------------- /share/platforms/dingding/src/ddshare/DDShareActivity.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample.ddshare; 2 | 3 | import com.umeng.socialize.media.DingCallBack; 4 | 5 | public class DDShareActivity extends DingCallBack { 6 | } -------------------------------------------------------------------------------- /share/platforms/douban/libs/umeng-share-douban-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/douban/libs/umeng-share-douban-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/douban/res/drawable/umeng_socialize_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/douban/res/drawable/umeng_socialize_douban.png -------------------------------------------------------------------------------- /share/platforms/dropbox/libs/json_simple-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/dropbox/libs/json_simple-1.1.jar -------------------------------------------------------------------------------- /share/platforms/dropbox/libs/umeng-share-dropbox-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/dropbox/libs/umeng-share-dropbox-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/dropbox/res/drawable/umeng_socialize_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/dropbox/res/drawable/umeng_socialize_dropbox.png -------------------------------------------------------------------------------- /share/platforms/email/libs/umeng-share-email-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/email/libs/umeng-share-email-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/email/res/drawable/umeng_socialize_gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/email/res/drawable/umeng_socialize_gmail.png -------------------------------------------------------------------------------- /share/platforms/evernote/libs/umeng-share-evernote-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/evernote/libs/umeng-share-evernote-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/evernote/res/drawable/umeng_socialize_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/evernote/res/drawable/umeng_socialize_evernote.png -------------------------------------------------------------------------------- /share/platforms/facebook/libs/umeng-share-facebook-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/facebook/libs/umeng-share-facebook-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/facebook/res/drawable/com_facebook_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/facebook/res/drawable/com_facebook_close.png -------------------------------------------------------------------------------- /share/platforms/facebook/res/drawable/umeng_socialize_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/facebook/res/drawable/umeng_socialize_facebook.png -------------------------------------------------------------------------------- /share/platforms/facebook/res/drawable/umeng_socialize_fbmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/facebook/res/drawable/umeng_socialize_fbmessage.png -------------------------------------------------------------------------------- /share/platforms/facebook/res/layout/com_facebook_activity_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 29 | -------------------------------------------------------------------------------- /share/platforms/facebook/res/layout/com_facebook_login_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | 27 | 28 | 36 | 37 | -------------------------------------------------------------------------------- /share/platforms/facebook/res/values/facebook_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | Like 24 | Liked 25 | Log out 26 | Log in 27 | Log in with Facebook 28 | Logged in as: %1$s 29 | Logged in using Facebook 30 | Log out 31 | Cancel 32 | Loading... 33 | AndroidManifest Error 34 | WebView login requires INTERNET permission 35 | New! You\'re in control - choose what info you want to share with apps. 36 | Unexpected error while downloading an image. 37 | Share 38 | Send 39 | 40 | -------------------------------------------------------------------------------- /share/platforms/facebook/res/values/messenger_button_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 21 | 22 | 23 | Send 24 | 25 | -------------------------------------------------------------------------------- /share/platforms/facebook/res/values/umeng_socialize_facebook_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OK 4 | Your Facebook password has changed. Please log into this app again to reconnect your Facebook account. 5 | Please log into this app again to reconnect your Facebook account. 6 | This app doesn’t have permission to do this. To change permissions, try logging into the app again. 7 | 8 | -------------------------------------------------------------------------------- /share/platforms/flickr/libs/umeng-share-flickr-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/flickr/libs/umeng-share-flickr-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/flickr/res/drawable/umeng_socialize_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/flickr/res/drawable/umeng_socialize_flickr.png -------------------------------------------------------------------------------- /share/platforms/foursquare/libs/umeng-share-foursquare-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/foursquare/libs/umeng-share-foursquare-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/foursquare/res/drawable/umeng_socialize_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/foursquare/res/drawable/umeng_socialize_foursquare.png -------------------------------------------------------------------------------- /share/platforms/foursquare/res/values/umeng_socialize_foursquare_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Foursquare 4 | 未安装Foursquare客户端 5 | Foursquare只支持纯图片分享 6 | 7 | -------------------------------------------------------------------------------- /share/platforms/honor/libs/Honor-openSDK-6.0.3.004.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/honor/libs/Honor-openSDK-6.0.3.004.aar -------------------------------------------------------------------------------- /share/platforms/honor/libs/umeng-share-honor-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/honor/libs/umeng-share-honor-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/honor/res/drawable/umeng_socialize_honor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/honor/res/drawable/umeng_socialize_honor.png -------------------------------------------------------------------------------- /share/platforms/instagram/libs/umeng-share-instagram-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/instagram/libs/umeng-share-instagram-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/instagram/res/drawable/umeng_socialize_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/instagram/res/drawable/umeng_socialize_instagram.png -------------------------------------------------------------------------------- /share/platforms/kakao/libs/umeng-share-kakao-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/kakao/libs/umeng-share-kakao-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/kakao/res/drawable/umeng_socialize_kakao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/kakao/res/drawable/umeng_socialize_kakao.png -------------------------------------------------------------------------------- /share/platforms/kakao/res/layout/umeng_socialize_activity_kakao_webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 16 | 17 | -------------------------------------------------------------------------------- /share/platforms/kakao/res/values/umeng_socialize_kakao_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Kakao Talk 4 | 未安装Kakao Talk客户端 5 | Kakao Talk只支持图片、文本分享 6 | 请设置分享内容 7 | 8 | -------------------------------------------------------------------------------- /share/platforms/line/libs/umeng-share-line-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/line/libs/umeng-share-line-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/line/res/drawable/umeng_socialize_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/line/res/drawable/umeng_socialize_line.png -------------------------------------------------------------------------------- /share/platforms/linkedin/libs/umeng-share-linkedin-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/linkedin/libs/umeng-share-linkedin-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/linkedin/libs/volley.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/linkedin/libs/volley.jar -------------------------------------------------------------------------------- /share/platforms/linkedin/res/drawable/umeng_socialize_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/linkedin/res/drawable/umeng_socialize_linkedin.png -------------------------------------------------------------------------------- /share/platforms/pinterest/libs/umeng-share-pinterest-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/pinterest/libs/umeng-share-pinterest-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/pinterest/res/drawable/umeng_socialize_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/pinterest/res/drawable/umeng_socialize_pinterest.png -------------------------------------------------------------------------------- /share/platforms/pocket/libs/umeng-share-pocket-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/pocket/libs/umeng-share-pocket-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/pocket/res/drawable/umeng_socialize_pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/pocket/res/drawable/umeng_socialize_pocket.png -------------------------------------------------------------------------------- /share/platforms/sms/libs/umeng-share-sms-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/sms/libs/umeng-share-sms-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/sms/res/drawable/umeng_socialize_sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/sms/res/drawable/umeng_socialize_sms.png -------------------------------------------------------------------------------- /share/platforms/tumblr/libs/umeng-share-tumblr-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/tumblr/libs/umeng-share-tumblr-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/tumblr/res/drawable/umeng_socialize_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/tumblr/res/drawable/umeng_socialize_tumblr.png -------------------------------------------------------------------------------- /share/platforms/twitter/libs/umeng-share-twitter-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/twitter/libs/umeng-share-twitter-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/twitter/res/drawable/umeng_socialize_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/twitter/res/drawable/umeng_socialize_twitter.png -------------------------------------------------------------------------------- /share/platforms/twitter/src/twitterapi/TwitterShareReceiver.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample.twitterapi; 2 | 3 | import com.umeng.socialize.handler.UMTwitterReceiver; 4 | 5 | public class TwitterShareReceiver extends UMTwitterReceiver { 6 | } -------------------------------------------------------------------------------- /share/platforms/vkontakte/libs/umeng-share-vkontakte-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/vkontakte/libs/umeng-share-vkontakte-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/drawable/ic_ab_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/vkontakte/res/drawable/ic_ab_app.png -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/drawable/ic_ab_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/vkontakte/res/drawable/ic_ab_done.png -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/drawable/vk_clear_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/drawable/vk_gray_transparent_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/drawable/vk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/vkontakte/res/drawable/vk_icon.png -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/drawable/vk_share_send_button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/layout/vk_captcha_dialog.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 20 | 21 | 28 | 29 | 30 | 31 | 42 | 43 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/layout/vk_open_auth_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 20 | 21 | 28 | 29 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/values/vk_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #5585BC 4 | #F0F2F5 5 | #fff 6 | #A7C2DF 7 | #0000 8 | #1000 9 | #000 10 | #338cc9 11 | #e5e5e5 12 | #527dad 13 | #5477a3 14 | #9e9e9e 15 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/values/vk_dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10dp 4 | 6dp 5 | 48dp 6 | 48dp 7 | 8dp 8 | 6dp 9 | 5dp 10 | 1dp 11 | 14dp 12 | 12sp 13 | 18sp 14 | 16sp 15 | 15sp 16 | 2dp 17 | 5dp 18 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/values/vk_strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | VK 4 | Enter captcha text here 5 | Retry 6 | SEND 7 | Share 8 | Enter your message.. 9 | Post settings 10 | 11 | 12 | -------------------------------------------------------------------------------- /share/platforms/vkontakte/res/values/vk_styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /share/platforms/whatsapp/libs/umeng-share-whatsapp-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/whatsapp/libs/umeng-share-whatsapp-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/whatsapp/res/drawable/umeng_socialize_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/whatsapp/res/drawable/umeng_socialize_whatsapp.png -------------------------------------------------------------------------------- /share/platforms/yixin/libs/SocialSDK_yixin_1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/yixin/libs/SocialSDK_yixin_1.jar -------------------------------------------------------------------------------- /share/platforms/yixin/libs/umeng-share-yixin-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/yixin/libs/umeng-share-yixin-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/yixin/res/drawable/umeng_socialize_yixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/yixin/res/drawable/umeng_socialize_yixin.png -------------------------------------------------------------------------------- /share/platforms/yixin/res/drawable/umeng_socialize_yixin_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/yixin/res/drawable/umeng_socialize_yixin_circle.png -------------------------------------------------------------------------------- /share/platforms/yixin/src/yxapi/YXEntryActivity.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample.yxapi; 2 | 3 | import com.umeng.socialize.activity.YXCallbackActivity; 4 | 5 | public class YXEntryActivity extends YXCallbackActivity { 6 | } -------------------------------------------------------------------------------- /share/platforms/ynote/libs/umeng-share-ynote-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/ynote/libs/umeng-share-ynote-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/ynote/res/drawable/umeng_socialize_ynote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/ynote/res/drawable/umeng_socialize_ynote.png -------------------------------------------------------------------------------- /share/platforms/企业微信/libs/lib_wwapi-2.0.12.11.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/企业微信/libs/lib_wwapi-2.0.12.11.aar -------------------------------------------------------------------------------- /share/platforms/企业微信/libs/umeng-share-wxwork-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/企业微信/libs/umeng-share-wxwork-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/企业微信/res/drawable/umeng_socialize_wxwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/企业微信/res/drawable/umeng_socialize_wxwork.png -------------------------------------------------------------------------------- /share/platforms/微信完整版/libs/umeng-share-wechat-full-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/微信完整版/libs/umeng-share-wechat-full-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/微信完整版/res/drawable/umeng_socialize_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/微信完整版/res/drawable/umeng_socialize_fav.png -------------------------------------------------------------------------------- /share/platforms/微信完整版/res/drawable/umeng_socialize_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/微信完整版/res/drawable/umeng_socialize_wechat.png -------------------------------------------------------------------------------- /share/platforms/微信完整版/res/drawable/umeng_socialize_wxcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/微信完整版/res/drawable/umeng_socialize_wxcircle.png -------------------------------------------------------------------------------- /share/platforms/微信完整版/src/wxapi/WXEntryActivity.java: -------------------------------------------------------------------------------- 1 | package com.umeng.soexample.wxapi; 2 | 3 | import com.umeng.socialize.weixin.view.WXCallbackActivity; 4 | 5 | public class WXEntryActivity extends WXCallbackActivity { 6 | } -------------------------------------------------------------------------------- /share/platforms/新浪完整版/libs/umeng-share-sina-full-7.3.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/新浪完整版/libs/umeng-share-sina-full-7.3.7.jar -------------------------------------------------------------------------------- /share/platforms/新浪完整版/res/drawable/umeng_socialize_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/platforms/新浪完整版/res/drawable/umeng_socialize_sina.png -------------------------------------------------------------------------------- /share/shareback/libs/umeng-link-2.0.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/MultiFunctionAndroidDemo/63000c35f1bd66e54d17b7d4d1b1f46a731fb9a4/share/shareback/libs/umeng-link-2.0.0.aar --------------------------------------------------------------------------------