├── .gitattributes ├── .gitignore ├── AlivecDemo ├── AlivecDemo.sln ├── AlivecDemo │ ├── AlivecDemo.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── LiveActivity.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ └── packages.config └── Aliyun.Player.Droid │ ├── Additions │ └── AboutAdditions.txt │ ├── Aliyun.Player.Droid.csproj │ ├── Aliyun.Player.Droid.nuspec │ ├── Jars │ ├── AboutJars.txt │ └── AliyunPlayer.aar │ ├── Properties │ └── AssemblyInfo.cs │ └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── AppTBS ├── AppTBS.sln ├── AppTBS │ ├── AppTBS.Android │ │ ├── AppTBS.Android.csproj │ │ ├── Assets │ │ │ ├── AboutAssets.txt │ │ │ └── webpage │ │ │ │ ├── fileChooser.html │ │ │ │ ├── fullscreenVideo.html │ │ │ │ ├── hitTestResult.html │ │ │ │ └── websocket.html │ │ ├── BrowserActivity.cs │ │ ├── FilechooserActivity.cs │ │ ├── MApplication.cs │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── color_progressbar.xml │ │ │ │ ├── filechooser.png │ │ │ │ ├── fullscreen.png │ │ │ │ ├── function.png │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── icon.png │ │ │ │ ├── search.png │ │ │ │ ├── tbsvideo.png │ │ │ │ ├── tbsweb.png │ │ │ │ ├── theme_adrbar_btn_refresh_normal0.png │ │ │ │ ├── theme_menu_btn_quit_fg_normal0.png │ │ │ │ ├── theme_toolbar_btn_back_fg_normal0.png │ │ │ │ ├── theme_toolbar_btn_cleardata_normal0.png │ │ │ │ ├── theme_toolbar_btn_forward_fg_normal0.png │ │ │ │ ├── theme_toolbar_btn_home_fg_normal2.png │ │ │ │ ├── theme_toolbar_btn_menu_fg_normal.png │ │ │ │ ├── theme_toolbar_btn_menu_fg_pressed.png │ │ │ │ ├── theme_toolbar_btn_openfile_normal0.png │ │ │ │ ├── theme_toolbar_btn_testprocesses_fg_normal0.png │ │ │ │ └── theme_toolbar_btn_testwebviews_fg_normal0.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ └── icon.png │ │ │ ├── layout │ │ │ │ ├── Main.axml │ │ │ │ ├── Tabbar.axml │ │ │ │ ├── Toolbar.axml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_main_advanced.xml │ │ │ │ ├── filechooser_layout.xml │ │ │ │ ├── fullscreen_sys_web.xml │ │ │ │ ├── fullscreen_web.xml │ │ │ │ └── function_block.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── Icon.png │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── Icon.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── Icon.png │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── Icon.png │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── Icon.png │ │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ │ ├── Strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ ├── WebRenderer.cs │ │ ├── WebViewJavaScriptFunction.cs │ │ └── X5WebView.cs │ ├── AppTBS.iOS │ │ ├── AppDelegate.cs │ │ ├── AppTBS.iOS.csproj │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ └── packages.config │ └── AppTBS │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppTBS.projitems │ │ ├── AppTBS.shproj │ │ ├── MainPage.xaml │ │ └── MainPage.xaml.cs └── TBS.Droid │ ├── Additions │ └── AboutAdditions.txt │ ├── Jars │ ├── tbssdk-44116.jar │ ├── tbssdk_44199.jar │ └── tbssdk_44226.jar │ ├── Properties │ └── AssemblyInfo.cs │ ├── TBS.Droid.csproj │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ └── package.nuspec ├── BaiduMapSDK_Map ├── BaiduMapSDK_Map.sln └── BaiduMapSDK_Map │ ├── Additions │ └── ItemizedOverlay.cs │ ├── BaiduMapSDK_Map.csproj │ ├── Jars │ └── BaiduMapSDK_Map-7.4.0.aar │ ├── Properties │ └── AssemblyInfo.cs │ └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── BaiduPush ├── BaiduPushDemo.sln └── src │ ├── BaiduPush │ ├── Additions │ │ └── AboutAdditions.txt │ ├── BaiduPush.csproj │ ├── Jars │ │ ├── AboutJars.txt │ │ └── pushservice-6.7.3.20.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ └── jniLibs │ │ ├── arm64-v8a │ │ └── libbdpush_V2_9.so │ │ ├── armeabi-v7a │ │ └── libbdpush_V2_9.so │ │ └── armeabi │ │ └── libbdpush_V2_9.so │ └── BaiduPushDemo.Android │ ├── Assets │ └── AboutAssets.txt │ ├── BaiduPushDemo.Android.csproj │ ├── BaiduPushReceiver.cs │ ├── MainActivity.cs │ ├── MainApplication.cs │ ├── MyPushMessageReceiver.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ └── Resources │ ├── Resource.designer.cs │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.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 │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── Bugly ├── Bugly.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Bugly.Droid.csproj │ ├── Jars │ │ └── bugly_crashreport_upgrade-1.3.4.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ └── package.nuspec └── BuglyDemo │ ├── BuglyDemo.sln │ └── BuglyDemo │ ├── Assets │ └── AboutAssets.txt │ ├── BuglyDemo.csproj │ ├── DemoApplication.cs │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ └── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── layout │ └── Main.axml │ └── values │ └── Strings.xml ├── CameraDemo ├── CameraDemo.sln └── CameraDemo │ ├── Assets │ └── AboutAssets.txt │ ├── AutoFitTextureView.cs │ ├── Camera2BasicFragment.cs │ ├── CameraActivity.cs │ ├── CameraDemo.csproj │ ├── CompareSizesByArea.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ └── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── layout │ ├── activity_camera.axml │ ├── activity_main.axml │ └── fragment_camera2_basic.axml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ ├── Strings.xml │ ├── colors.xml │ ├── ic_launcher_background.xml │ └── styles.xml ├── DVMediaSelector ├── App9.sln ├── App9 │ ├── App9.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml └── Xamarin.Android.DVMediaSelector │ ├── Additions │ └── AboutAdditions.txt │ ├── Jars │ ├── mediaselector-none-edit.aar │ ├── permissionhelper-release │ │ ├── AndroidManifest.xml │ │ ├── R.txt │ │ └── res │ │ │ └── values │ │ │ └── values.xml │ └── permissionhelper.jar │ ├── Properties │ └── AssemblyInfo.cs │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ └── Xamarin.Android.DVMediaSelector.csproj ├── DeviceAPI.Droid ├── Demo │ ├── Assets │ │ └── AboutAssets.txt │ ├── Demo.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── DeviceAPI.Droid.sln └── DeviceAPI.Droid │ ├── Additions │ └── AboutAdditions.txt │ ├── DeviceAPI.Droid.csproj │ ├── Jars │ ├── AboutJars.txt │ └── DeviceAPI_ver20220518_release.aar │ ├── Properties │ └── AssemblyInfo.cs │ └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Glide.Xamarin ├── Additions │ └── AboutAdditions.txt ├── Glide.Xamarin.csproj ├── Jars │ └── glide-3.7.0.jar ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml └── package.nuspec ├── JMessage ├── JCore.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── JCore.Droid.csproj │ ├── Jars │ │ ├── AboutJars.txt │ │ └── jcore-2.3.0.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml ├── JG.sln └── JMessage.Droid │ ├── Additions │ └── AboutAdditions.txt │ ├── JMessage.Droid.csproj │ ├── Jars │ ├── AboutJars.txt │ └── jmessage-2.9.2.aar │ ├── Properties │ └── AssemblyInfo.cs │ └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── JPush ├── JPush.Droid │ ├── JPush.Droid.csproj │ ├── Jars │ │ ├── jcore-android-2.3.0.jar │ │ └── jpush-android-3.5.8.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ ├── libs │ │ ├── arm64-v8a │ │ │ └── libjcore230.so │ │ ├── armeabi-v7a │ │ │ └── libjcore230.so │ │ ├── armeabi │ │ │ └── libjcore230.so │ │ ├── mips │ │ │ └── libjcore230.so │ │ ├── mips64 │ │ │ └── libjcore230.so │ │ └── x86_64 │ │ │ └── libjcore230.so │ └── package.nuspec ├── JPush.sln └── JPush │ ├── Assets │ └── AboutAssets.txt │ ├── ExampleApplication.cs │ ├── ExampleUtil.cs │ ├── JPush.csproj │ ├── LocalBroadcastManager.cs │ ├── Logger.cs │ ├── MainActivity.cs │ ├── MyReceiver.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── PushMessageReceiver.cs │ ├── PushService.cs │ ├── PushSetActivity.cs │ ├── Resources │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── border_bg.9.png │ │ ├── bottom_bg.9.png │ │ ├── corners_bg.xml │ │ ├── ic_launcher.png │ │ ├── jpush_ic_richpush_actionbar_back.png │ │ ├── jpush_ic_richpush_actionbar_divider.png │ │ ├── jpush_notification_icon.png │ │ ├── jpush_richpush_btn_selector.xml │ │ ├── jpush_richpush_progressbar.xml │ │ ├── richpush_btn_selector.xml │ │ ├── richpush_progressbar.xml │ │ ├── stripes.png │ │ ├── tiledstripes.xml │ │ └── top_bg.9.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-v24 │ │ ├── ic_launcher_foreground.png │ │ └── jpush_notification_icon.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable │ │ └── ic_launcher_background.xml │ ├── layout-v21 │ │ └── push_notification.xml │ ├── layout │ │ ├── customer_notitfication_layout.xml │ │ ├── customer_notitfication_layout_one.xml │ │ ├── jpush_popwin_layout.xml │ │ ├── jpush_webview_layout.xml │ │ ├── main.xml │ │ ├── push_notification.xml │ │ ├── push_set_dialog.xml │ │ └── set_push_time.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── values-zh │ │ └── jpush_string.xml │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── jpush_string.xml │ │ ├── jpush_style.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── SettingActivity.cs │ ├── StringHelper.cs │ ├── TagAliasOperatorHelper.cs │ └── TestActivity.cs ├── JZVideo └── AppDemo │ ├── AppDemo.sln │ ├── AppDemo │ ├── AppDemo.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── JZMediaIjk.cs │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── Xamairn.Android.JZVideo │ ├── Additions │ └── AboutAdditions.txt │ ├── Jars │ └── jiaozivideoplayer-7.7.0.aar │ ├── Properties │ └── AssemblyInfo.cs │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ └── Xamairn.Android.JZVideo.csproj ├── MobIM.Droid ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── MobCommons-2017.1215.1339.jar │ ├── MobIM_1.0.0.jar │ └── MobTools-2017.1215.1339.jar ├── MobIM.Droid.csproj ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml └── package.nuspec ├── README.md ├── Rongyun ├── Demo │ ├── Assets │ │ └── AboutAssets.txt │ ├── Demo.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ └── activity_main.axml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── Strings.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ └── styles.xml ├── Rongyun.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── AboutJars.txt │ │ └── Rong_IMLib.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Rongyun.Droid.csproj │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml └── Rongyun.sln ├── ScanningCode ├── BarcodeScanning.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── BarcodeScanning.Droid.csproj │ ├── Jars │ │ └── MNMLKitScanner-V1.0.4.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml ├── CameraCore.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── CameraCore.Droid.csproj │ ├── Jars │ │ └── mlkit-camera-core-1.0.3.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml ├── DuanHong169.ColorPicker.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── DuanHong169.ColorPicker.Droid.csproj │ ├── Jars │ │ └── colorpicker-1.1.6.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml ├── ScanningCode.sln └── ScanningCode │ ├── Assets │ └── AboutAssets.txt │ ├── CustomConfigActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── anim │ │ ├── activity_anmie_in.xml │ │ └── activity_anmie_out.xml │ ├── drawable-xxhdpi │ │ ├── ic_wx.png │ │ ├── icon_custom_back.png │ │ ├── icon_custom_light_close.png │ │ ├── icon_custom_light_open.png │ │ ├── icon_custom_my_card.png │ │ ├── icon_custom_photo.png │ │ └── icon_custom_record.png │ ├── drawable │ │ ├── icon_custom_light_close.png │ │ └── icon_custom_light_open.png │ ├── layout │ │ ├── activity_custom_config.xml │ │ └── layout_custom_view.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── array.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── ScanningCode.csproj ├── Screenshot ├── alivec.jpg ├── xinge-push-demo.png └── youzan.png ├── SerialPortDemo ├── SerialPortDemo.sln ├── SerialPortDemo │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── layout │ │ │ └── activity_main.axml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── Strings.xml │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ ├── SerialPort.cs │ ├── SerialPortDemo.csproj │ └── lib │ │ ├── armeabi-v7a │ │ └── libserial_port.so │ │ └── armeabi │ │ └── libserial_port.so └── Serialport.Droid │ ├── Additions │ └── AboutAdditions.txt │ ├── Serialport.Droid.csproj │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ └── android-serialport-2.1.3.aar ├── Sofia.Droid ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── sofia-1.0.5.3.aar ├── Properties │ └── AssemblyInfo.cs ├── Sofia.Droid.csproj ├── Sofia.Droid.sln ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml └── package.nuspec ├── Sofia.Xamarin.Droid ├── FitWindowLayout.cs ├── HostLayout.cs ├── IBar.cs ├── NavigationView.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Resource.designer.cs │ ├── layout-land │ │ └── sofia_host_layout.xml │ ├── layout │ │ └── sofia_host_layout.xml │ └── values │ │ └── colors.xml ├── Sofia.Xamarin.Droid.csproj ├── Sofia.cs ├── StatusView.cs └── Utils.cs ├── Umeng ├── Umeng.Push.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── common-1.5.4.jar │ │ ├── push-5.0.2.aar │ │ └── utdid-1.1.5.3.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ ├── Umeng.Push.Droid.csproj │ └── package.nuspec ├── Umeng.sln └── Umeng │ ├── App.cs │ ├── Assets │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ └── activity_main.axml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── Strings.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ └── styles.xml │ └── Umeng.csproj ├── Wechat └── WeChat.Droid │ ├── AndroidApp1 │ ├── AndroidApp1.csproj │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── appicon.xml │ │ └── appicon_round.xml │ │ ├── mipmap-hdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ │ ├── mipmap-mdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ ├── WeChat.Droid.sln │ └── WeChat.Droid │ ├── Jars │ └── wechat-sdk-android-6.8.18.aar │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ ├── WeChat.Droid.csproj │ ├── icon64_appwx_logo.png │ ├── javadoc │ ├── META-INF │ │ └── MANIFEST.MF │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ │ └── tencent │ │ │ └── mm │ │ │ └── opensdk │ │ │ ├── channel │ │ │ ├── MMessageActV2.Args.html │ │ │ ├── MMessageActV2.html │ │ │ ├── compatible │ │ │ │ ├── MMessage.Args.html │ │ │ │ ├── MMessage.html │ │ │ │ ├── MMessageAct.html │ │ │ │ ├── MMessageUtil.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── constants │ │ │ ├── Build.html │ │ │ ├── ConstantsAPI.AppSupportContentFlag.html │ │ │ ├── ConstantsAPI.LaunchApplication.html │ │ │ ├── ConstantsAPI.LaunchWX.html │ │ │ ├── ConstantsAPI.OpenWebviewType.html │ │ │ ├── ConstantsAPI.Token.html │ │ │ ├── ConstantsAPI.WXApp.html │ │ │ ├── ConstantsAPI.WXMiniProgram.html │ │ │ ├── ConstantsAPI.WXWebPage.html │ │ │ ├── ConstantsAPI.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── diffdev │ │ │ ├── DiffDevOAuthFactory.html │ │ │ ├── IDiffDevOAuth.html │ │ │ ├── OAuthErrCode.html │ │ │ ├── OAuthListener.html │ │ │ ├── impl │ │ │ │ ├── DiffDevOAuthImplV1.html │ │ │ │ ├── GetQRCodeTask.html │ │ │ │ ├── NetUtil.html │ │ │ │ ├── UUIDStatusCode.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── modelbase │ │ │ ├── BaseReq.html │ │ │ ├── BaseResp.ErrCode.html │ │ │ ├── BaseResp.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── modelbiz │ │ │ ├── AddCardToWXCardPackage.Req.html │ │ │ ├── AddCardToWXCardPackage.Resp.html │ │ │ ├── AddCardToWXCardPackage.WXCardItem.html │ │ │ ├── AddCardToWXCardPackage.html │ │ │ ├── ChooseCardFromWXCardPackage.Req.html │ │ │ ├── ChooseCardFromWXCardPackage.Resp.html │ │ │ ├── ChooseCardFromWXCardPackage.html │ │ │ ├── CreateChatroom.Req.html │ │ │ ├── CreateChatroom.Resp.html │ │ │ ├── CreateChatroom.html │ │ │ ├── HandleScanResult.Req.html │ │ │ ├── HandleScanResult.Resp.html │ │ │ ├── HandleScanResult.html │ │ │ ├── IWXChannelJumpInfo.html │ │ │ ├── JoinChatroom.Req.html │ │ │ ├── JoinChatroom.Resp.html │ │ │ ├── JoinChatroom.html │ │ │ ├── OpenBusiLuckyMoney.Req.html │ │ │ ├── OpenBusiLuckyMoney.html │ │ │ ├── OpenRankList.Req.html │ │ │ ├── OpenRankList.html │ │ │ ├── OpenWebview.Req.html │ │ │ ├── OpenWebview.Resp.html │ │ │ ├── OpenWebview.html │ │ │ ├── SubscribeMessage.Req.html │ │ │ ├── SubscribeMessage.Resp.html │ │ │ ├── SubscribeMessage.html │ │ │ ├── SubscribeMiniProgramMsg.Req.html │ │ │ ├── SubscribeMiniProgramMsg.Resp.html │ │ │ ├── SubscribeMiniProgramMsg.html │ │ │ ├── WXChannelBaseJumpInfo.html │ │ │ ├── WXChannelJumpMiniProgramInfo.html │ │ │ ├── WXChannelJumpUrlInfo.html │ │ │ ├── WXChannelOpenFeed.Req.html │ │ │ ├── WXChannelOpenFeed.Resp.html │ │ │ ├── WXChannelOpenFeed.html │ │ │ ├── WXChannelOpenLive.Req.html │ │ │ ├── WXChannelOpenLive.Resp.html │ │ │ ├── WXChannelOpenLive.html │ │ │ ├── WXChannelOpenProfile.Req.html │ │ │ ├── WXChannelOpenProfile.Resp.html │ │ │ ├── WXChannelOpenProfile.html │ │ │ ├── WXChannelShareVideo.Req.html │ │ │ ├── WXChannelShareVideo.Resp.html │ │ │ ├── WXChannelShareVideo.html │ │ │ ├── WXInvoiceAuthInsert.Req.html │ │ │ ├── WXInvoiceAuthInsert.Resp.html │ │ │ ├── WXInvoiceAuthInsert.html │ │ │ ├── WXLaunchMiniProgram.Req.html │ │ │ ├── WXLaunchMiniProgram.Resp.html │ │ │ ├── WXLaunchMiniProgram.html │ │ │ ├── WXLaunchMiniProgramWithToken.Req.html │ │ │ ├── WXLaunchMiniProgramWithToken.Resp.html │ │ │ ├── WXLaunchMiniProgramWithToken.html │ │ │ ├── WXLaunchWxaRedirectingPage.Req.html │ │ │ ├── WXLaunchWxaRedirectingPage.Resp.html │ │ │ ├── WXLaunchWxaRedirectingPage.html │ │ │ ├── WXNontaxPay.Req.html │ │ │ ├── WXNontaxPay.Resp.html │ │ │ ├── WXNontaxPay.html │ │ │ ├── WXOpenBusinessView.Req.html │ │ │ ├── WXOpenBusinessView.Resp.html │ │ │ ├── WXOpenBusinessView.html │ │ │ ├── WXOpenBusinessWebview.Req.html │ │ │ ├── WXOpenBusinessWebview.Resp.html │ │ │ ├── WXOpenBusinessWebview.html │ │ │ ├── WXOpenCustomerServiceChat.Req.html │ │ │ ├── WXOpenCustomerServiceChat.Resp.html │ │ │ ├── WXOpenCustomerServiceChat.html │ │ │ ├── WXPayInsurance.Req.html │ │ │ ├── WXPayInsurance.Resp.html │ │ │ ├── WXPayInsurance.html │ │ │ ├── WXPreloadMiniProgram.Req.html │ │ │ ├── WXPreloadMiniProgram.Resp.html │ │ │ ├── WXPreloadMiniProgram.html │ │ │ ├── WXPreloadMiniProgramEnvironment.Req.html │ │ │ ├── WXPreloadMiniProgramEnvironment.Resp.html │ │ │ ├── WXPreloadMiniProgramEnvironment.html │ │ │ ├── WXQRCodePay.Req.html │ │ │ ├── WXQRCodePay.Resp.html │ │ │ ├── WXQRCodePay.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── modelmsg │ │ │ ├── GetMessageFromWX.Req.html │ │ │ ├── GetMessageFromWX.Resp.html │ │ │ ├── GetMessageFromWX.html │ │ │ ├── LaunchFromWX.Req.html │ │ │ ├── LaunchFromWX.Resp.html │ │ │ ├── LaunchFromWX.html │ │ │ ├── SendAuth.Options.html │ │ │ ├── SendAuth.Req.html │ │ │ ├── SendAuth.Resp.html │ │ │ ├── SendAuth.html │ │ │ ├── SendMessageToWX.IWXSceneDataObject.html │ │ │ ├── SendMessageToWX.Req.html │ │ │ ├── SendMessageToWX.Resp.html │ │ │ ├── SendMessageToWX.html │ │ │ ├── SendTdiAuth.Resp.html │ │ │ ├── SendTdiAuth.html │ │ │ ├── ShowMessageFromWX.Req.html │ │ │ ├── ShowMessageFromWX.Resp.html │ │ │ ├── ShowMessageFromWX.html │ │ │ ├── WXAppExtendObject.html │ │ │ ├── WXAppLaunchData.Builder.html │ │ │ ├── WXAppLaunchData.html │ │ │ ├── WXDesignerSharedObject.html │ │ │ ├── WXDynamicVideoMiniProgramObject.html │ │ │ ├── WXEmojiObject.html │ │ │ ├── WXEmojiPageSharedObject.html │ │ │ ├── WXEmojiSharedObject.html │ │ │ ├── WXEnterpriseCardObject.html │ │ │ ├── WXFileObject.html │ │ │ ├── WXGameLiveObject.html │ │ │ ├── WXGameVideoFileObject.html │ │ │ ├── WXImageObject.html │ │ │ ├── WXLiteAppObject.html │ │ │ ├── WXLocationObject.html │ │ │ ├── WXMediaMessage.Builder.html │ │ │ ├── WXMediaMessage.IMediaObject.html │ │ │ ├── WXMediaMessage.html │ │ │ ├── WXMiniProgramObject.html │ │ │ ├── WXMusicObject.html │ │ │ ├── WXMusicVideoObject.html │ │ │ ├── WXStateJumpChannelProfileInfo.html │ │ │ ├── WXStateJumpMiniProgramInfo.html │ │ │ ├── WXStateJumpUrlInfo.html │ │ │ ├── WXStateSceneDataObject.IWXStateJumpInfo.html │ │ │ ├── WXStateSceneDataObject.html │ │ │ ├── WXTextObject.html │ │ │ ├── WXVideoFileObject.html │ │ │ ├── WXVideoObject.html │ │ │ ├── WXWeWorkObject.html │ │ │ ├── WXWebpageObject.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── modelpay │ │ │ ├── JumpToOfflinePay.Req.html │ │ │ ├── JumpToOfflinePay.Resp.html │ │ │ ├── JumpToOfflinePay.html │ │ │ ├── PayReq.Options.html │ │ │ ├── PayReq.html │ │ │ ├── PayResp.html │ │ │ ├── WXJointPay.JointPayReq.html │ │ │ ├── WXJointPay.JointPayResp.html │ │ │ ├── WXJointPay.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ ├── openapi │ │ │ ├── IWXAPI.html │ │ │ ├── IWXAPIEventHandler.html │ │ │ ├── WXAPIFactory.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ │ └── utils │ │ │ ├── ILog.html │ │ │ ├── IntentUtil.html │ │ │ ├── Log.html │ │ │ ├── MD5.html │ │ │ ├── MMPluginProviderConstants.PluginIntent.html │ │ │ ├── MMPluginProviderConstants.Resolver.html │ │ │ ├── MMPluginProviderConstants.SharedPref.html │ │ │ ├── MMPluginProviderConstants.html │ │ │ ├── Util.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ └── stylesheet.css │ └── package.nuspec ├── Weex └── WeexDemo │ ├── Weex.Android │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── fastjson-1.1.46.android.jar │ │ └── weex_sdk-0.18.0.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ ├── Weex.Android.csproj │ └── packages.config │ ├── WeexDemo.sln │ └── WeexDemo │ ├── Assets │ ├── hello.js │ ├── index.js │ ├── index.weex.js │ └── tech_list.js │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── layout │ │ └── Main.axml │ └── values │ │ └── Strings.xml │ ├── WXApplication.cs │ ├── WeexDemo.csproj │ └── packages.config ├── Xamarin.Android.CityPickerView ├── App1 │ ├── App1.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── Xamarin.Android.CityPickerView.sln └── Xamarin.Android.CityPickerView │ ├── Additions │ ├── AboutAdditions.txt │ └── CityItemClickListener.cs │ ├── Jars │ └── citypickerview-4.3.2.aar │ ├── Properties │ └── AssemblyInfo.cs │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ ├── Xamarin.Android.CityPickerView.csproj │ └── package.nuspec ├── Xamarin.Android.WeChatOpenSDK ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── wechat-sdk-android-with-mta-5.4.0.jar ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Xamarin.Android.WeChatOpenSDK.csproj ├── package.nuspec └── wechat-sdk-android-with-mta-5.4.0-javadoc │ ├── META-INF │ └── MANIFEST.MF │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ └── tencent │ │ └── mm │ │ └── opensdk │ │ ├── constants │ │ ├── Build.html │ │ ├── ConstantsAPI.AppSupportContentFlag.html │ │ ├── ConstantsAPI.OpenWebviewType.html │ │ ├── ConstantsAPI.Token.html │ │ ├── ConstantsAPI.WXApp.html │ │ ├── ConstantsAPI.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── diffdev │ │ ├── DiffDevOAuthFactory.html │ │ ├── IDiffDevOAuth.html │ │ ├── OAuthErrCode.html │ │ ├── OAuthListener.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── modelbase │ │ ├── BaseReq.html │ │ ├── BaseResp.ErrCode.html │ │ ├── BaseResp.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── modelbiz │ │ ├── AddCardToWXCardPackage.Req.html │ │ ├── AddCardToWXCardPackage.Resp.html │ │ ├── AddCardToWXCardPackage.WXCardItem.html │ │ ├── AddCardToWXCardPackage.html │ │ ├── ChooseCardFromWXCardPackage.Req.html │ │ ├── ChooseCardFromWXCardPackage.Resp.html │ │ ├── ChooseCardFromWXCardPackage.html │ │ ├── CreateChatroom.Req.html │ │ ├── CreateChatroom.Resp.html │ │ ├── CreateChatroom.html │ │ ├── HandleScanResult.Req.html │ │ ├── HandleScanResult.Resp.html │ │ ├── HandleScanResult.html │ │ ├── JoinChatroom.Req.html │ │ ├── JoinChatroom.Resp.html │ │ ├── JoinChatroom.html │ │ ├── JumpToBizProfile.Req.html │ │ ├── JumpToBizProfile.html │ │ ├── JumpToBizTempSession.Req.html │ │ ├── JumpToBizTempSession.html │ │ ├── JumpToBizWebview.Req.html │ │ ├── JumpToBizWebview.html │ │ ├── OpenBusiLuckyMoney.Req.html │ │ ├── OpenBusiLuckyMoney.html │ │ ├── OpenRankList.Req.html │ │ ├── OpenRankList.html │ │ ├── OpenWebview.Req.html │ │ ├── OpenWebview.Resp.html │ │ ├── OpenWebview.html │ │ ├── SubscribeMessage.Req.html │ │ ├── SubscribeMessage.Resp.html │ │ ├── SubscribeMessage.html │ │ ├── SubscribeMiniProgramMsg.Req.html │ │ ├── SubscribeMiniProgramMsg.Resp.html │ │ ├── SubscribeMiniProgramMsg.html │ │ ├── WXInvoiceAuthInsert.Req.html │ │ ├── WXInvoiceAuthInsert.Resp.html │ │ ├── WXInvoiceAuthInsert.html │ │ ├── WXLaunchMiniProgram.Req.html │ │ ├── WXLaunchMiniProgram.Resp.html │ │ ├── WXLaunchMiniProgram.html │ │ ├── WXNontaxPay.Req.html │ │ ├── WXNontaxPay.Resp.html │ │ ├── WXNontaxPay.html │ │ ├── WXOpenBusinessView.Req.html │ │ ├── WXOpenBusinessView.Resp.html │ │ ├── WXOpenBusinessView.html │ │ ├── WXOpenBusinessWebview.Req.html │ │ ├── WXOpenBusinessWebview.Resp.html │ │ ├── WXOpenBusinessWebview.html │ │ ├── WXPayInsurance.Req.html │ │ ├── WXPayInsurance.Resp.html │ │ ├── WXPayInsurance.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── modelmsg │ │ ├── GetMessageFromWX.Req.html │ │ ├── GetMessageFromWX.Resp.html │ │ ├── GetMessageFromWX.html │ │ ├── LaunchFromWX.Req.html │ │ ├── LaunchFromWX.Resp.html │ │ ├── LaunchFromWX.html │ │ ├── SendAuth.Req.html │ │ ├── SendAuth.Resp.html │ │ ├── SendAuth.html │ │ ├── SendMessageToWX.Req.html │ │ ├── SendMessageToWX.Resp.html │ │ ├── SendMessageToWX.html │ │ ├── ShowMessageFromWX.Req.html │ │ ├── ShowMessageFromWX.Resp.html │ │ ├── ShowMessageFromWX.html │ │ ├── WXAppExtendObject.html │ │ ├── WXAppLaunchData.Builder.html │ │ ├── WXAppLaunchData.html │ │ ├── WXDesignerSharedObject.html │ │ ├── WXDynamicVideoMiniProgramObject.html │ │ ├── WXEmojiObject.html │ │ ├── WXEmojiPageSharedObject.html │ │ ├── WXEmojiSharedObject.html │ │ ├── WXEnterpriseCardObject.html │ │ ├── WXFileObject.html │ │ ├── WXGameVideoFileObject.html │ │ ├── WXImageObject.html │ │ ├── WXLocationObject.html │ │ ├── WXMediaMessage.Builder.html │ │ ├── WXMediaMessage.IMediaObject.html │ │ ├── WXMediaMessage.html │ │ ├── WXMiniProgramObject.html │ │ ├── WXMusicObject.html │ │ ├── WXTextObject.html │ │ ├── WXVideoFileObject.html │ │ ├── WXVideoObject.html │ │ ├── WXWeWorkObject.html │ │ ├── WXWebpageObject.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── modelpay │ │ ├── JumpToOfflinePay.Req.html │ │ ├── JumpToOfflinePay.Resp.html │ │ ├── JumpToOfflinePay.html │ │ ├── PayReq.Options.html │ │ ├── PayReq.html │ │ ├── PayResp.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ └── openapi │ │ ├── IWXAPI.html │ │ ├── IWXAPIEventHandler.html │ │ ├── WXAPIFactory.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ └── stylesheet.css ├── Xamarin.IyukfUnicorn.Droid ├── Additions │ └── AboutAdditions.txt ├── Jars │ ├── AboutJars.txt │ └── unicorn-5.3.1.aar ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Xamarin.IyukfUnicorn.Droid.csproj ├── package.nuspec └── unicorn-5.3.1-javadoc │ ├── META-INF │ └── MANIFEST.MF │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── com │ └── qiyukf │ │ └── unicorn │ │ └── api │ │ ├── ConsultSource.html │ │ ├── Diagnosis.html │ │ ├── ImageLoaderListener.html │ │ ├── OnBotEventListener.html │ │ ├── OnMessageItemClickListener.html │ │ ├── ProductDetail.Builder.html │ │ ├── ProductDetail.Tag.html │ │ ├── ProductDetail.html │ │ ├── QiyuTracker.html │ │ ├── QuickEntry.html │ │ ├── QuickEntryListener.html │ │ ├── RequestCallback.html │ │ ├── SavePowerConfig.html │ │ ├── StatusBarNotificationConfig.html │ │ ├── UICustomization.html │ │ ├── Unicorn.html │ │ ├── UnicornGifImageLoader.html │ │ ├── UnicornImageLoader.html │ │ ├── UnreadCountChangeListener.html │ │ ├── YSFOptions.html │ │ ├── YSFUserInfo.html │ │ ├── customization │ │ ├── action │ │ │ ├── AlbumAction.html │ │ │ ├── BaseAction.html │ │ │ ├── CameraAction.html │ │ │ ├── CloseSessionAction.html │ │ │ ├── EvaluationAction.html │ │ │ ├── ImageAction.html │ │ │ ├── LinkClickAction.html │ │ │ ├── TakeVideoAction.html │ │ │ ├── VideoAlbumAction.html │ │ │ ├── WorkOrderAction.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── input │ │ │ ├── ActionListProvider.html │ │ │ ├── ActionPanelOptions.html │ │ │ ├── InputPanelOptions.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── msg_list │ │ │ ├── MessageHandlerFactory.html │ │ │ ├── MsgCustomizationRegistry.html │ │ │ ├── UnicornMessageHandler.html │ │ │ ├── baseviewholder │ │ │ │ ├── CustomMessageViewHolderBase.html │ │ │ │ ├── EvaluationViewHolderBase.html │ │ │ │ ├── ProductViewHolderBase.html │ │ │ │ ├── TextViewHolderBase.html │ │ │ │ ├── TipsViewHolderBase.html │ │ │ │ ├── UnicornMessageViewHolder.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── page_ad │ │ │ ├── AdViewProvider.html │ │ │ ├── IMPageViewConfig.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ └── title_bar │ │ │ ├── OnTitleBarRightBtnClickListener.html │ │ │ ├── TitleBarConfig.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── evaluation │ │ ├── EvaluationApi.OnEvaluationEventListener.html │ │ ├── EvaluationApi.html │ │ ├── entry │ │ │ ├── EvaluationOpenEntry.html │ │ │ ├── EvaluationOptionEntry.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── event │ │ ├── EventCallback.html │ │ ├── EventProcessFactory.html │ │ ├── EventService.html │ │ ├── SDKEvents.html │ │ ├── UnicornEventBase.html │ │ ├── UnicornEventRegistered.html │ │ ├── entry │ │ │ ├── ConnectionStaffResultEntry.html │ │ │ ├── RequestStaffEntry.html │ │ │ ├── TransferCloseResultEntry.html │ │ │ ├── TransferRequestEntry.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── eventcallback │ │ │ ├── TransferCloseResultCallback.html │ │ │ ├── TransferRequestCallback.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── helper │ │ ├── UnicornVideoMsgHelper.VideoMessageHelperListener.html │ │ ├── UnicornVideoMsgHelper.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── lifecycle │ │ ├── SessionLifeCycleListener.html │ │ ├── SessionLifeCycleOptions.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── msg │ │ ├── MessageService.html │ │ ├── MsgStatusEnum.html │ │ ├── MsgTypeEnum.html │ │ ├── OnPushMessageListener.html │ │ ├── ProductReslectOnclickListener.html │ │ ├── PushMessageExtension.Action.html │ │ ├── PushMessageExtension.Sender.html │ │ ├── PushMessageExtension.html │ │ ├── SessionStatusEnum.html │ │ ├── UnicornMessage.html │ │ ├── UnicornMessageBuilder.html │ │ ├── attachment │ │ │ ├── AudioAttachment.html │ │ │ ├── FileAttachment.html │ │ │ ├── ImageAttachment.html │ │ │ ├── MsgAttachment.html │ │ │ ├── ProductAttachment.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── pop │ │ ├── OnSessionListChangedListener.html │ │ ├── OnShopEventListener.html │ │ ├── POPManager.html │ │ ├── Session.html │ │ ├── SessionListEntrance.Builder.html │ │ ├── SessionListEntrance.Position.html │ │ ├── SessionListEntrance.html │ │ ├── ShopEntrance.Builder.html │ │ ├── ShopEntrance.html │ │ ├── ShopInfo.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ ├── serialized-form.html │ └── stylesheet.css ├── Xg-Push └── XinGeDemo │ ├── XgPush.Android │ ├── Jars │ │ ├── Xg_sdk_4.0.5_20190108_1425.jar │ │ ├── Xg_sdk_v3.2.2_20180116_1704.jar │ │ ├── mid-core-sdk-4.0.6.jar │ │ ├── mid-core-sdk-4.0.7.jar │ │ └── wup-1.0.0.E-SNAPSHOT.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ ├── XgPush.Android.csproj │ ├── libs │ │ ├── armeabi-v7a │ │ │ ├── libtpnsSecurity.so │ │ │ └── libxguardian.so │ │ └── armeabi │ │ │ ├── libtpnsSecurity.so │ │ │ └── libxguardian.so │ └── package.nuspec │ ├── XinGeDemo.sln │ └── XinGeDemo │ ├── Assets │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── drawable │ │ └── icon.png │ ├── layout │ │ └── Main.axml │ └── values │ │ └── Strings.xml │ ├── XinGeDemo.csproj │ └── packages.config ├── Youzan ├── Jsbridge │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── AboutJars.txt │ │ └── jsbridge-2.0.2.aar │ ├── Jsbridge.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml ├── SdkAnalytics │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── AboutJars.txt │ │ ├── sdk-analytics-0.4.7.aar │ │ └── sdk-analytics-0.4.7 │ │ │ ├── AndroidManifest.xml │ │ │ ├── R.txt │ │ │ ├── res │ │ │ └── values │ │ │ │ └── values.xml │ │ │ └── sdk-analytics-0.4.7.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SdkAnalytics.csproj │ └── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml ├── Webcache │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── AboutJars.txt │ │ └── webcache-2.2.0.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ └── Webcache.csproj ├── YouZan.Droid │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── AboutJars.txt │ │ └── basic-6.3.5.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ └── YouZan.Droid.csproj ├── YouZanSdk │ ├── Additions │ │ └── AboutAdditions.txt │ ├── Jars │ │ ├── AboutJars.txt │ │ ├── anko-commons-0.10.0.jar │ │ ├── anko-sqlite-0.10.0.jar │ │ ├── gson-2.8.0.jar │ │ ├── okhttp-3.8.1.jar │ │ ├── okio-1.13.0.jar │ │ ├── sdk-analytics-0.4.7.jar │ │ └── youzansdk-6.3.5.aar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ └── YouZanSdk.csproj ├── YouZanXamarin.sln ├── YouZanXamarin │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── MyApplication.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── layout │ │ │ ├── activity_main.axml │ │ │ ├── activity_placeholder.axml │ │ │ └── fragment_youzan.axml │ │ ├── menu │ │ │ └── menu_youzan_share.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── Strings.xml │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── styles.xml │ ├── WebViewFragment.cs │ ├── YouZanXamarin.csproj │ ├── YouzanActivity.cs │ └── YouzanFragment.cs └── YouzanSystemWeb │ ├── Additions │ └── AboutAdditions.txt │ ├── Jars │ ├── AboutJars.txt │ └── systemweb-2.0.9.aar │ ├── Properties │ └── AssemblyInfo.cs │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ └── YouzanSystemWeb.csproj ├── iFlyMSC ├── iFlyMSC.Droid │ ├── Jars │ │ └── Msc.jar │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Transforms │ │ ├── EnumFields.xml │ │ ├── EnumMethods.xml │ │ └── Metadata.xml │ ├── iFlyMSC.Droid.csproj │ ├── libs │ │ ├── arm64-v8a │ │ │ ├── libmsc.so │ │ │ └── libw_ivw.so │ │ └── armeabi-v7a │ │ │ ├── libmsc.so │ │ │ └── libw_ivw.so │ └── package.nuspec ├── iFlyMSC.sln └── iFlyMSC │ ├── Assets │ ├── call.bnf │ ├── grammar_sample.abnf │ ├── iattest.wav │ ├── iflytek │ │ ├── recognize.xml │ │ ├── voice_bg.9.png │ │ ├── voice_empty.png │ │ ├── voice_full.png │ │ ├── waiting.png │ │ └── warning.png │ ├── userwords │ ├── wake.bnf │ └── wake_grammar_sample.abnf │ ├── MainActivity.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── iFlyMSC.csproj ├── iotMiniSdk ├── Demo │ ├── Demo.csproj │ ├── MainActivity.cs │ ├── MainApplication.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── iotMiniSdk.sln └── iotMiniSdk │ ├── Jars │ ├── fastjson-1.2.72.jar │ └── iotMiniSdk-api-2.1.0.20.aar │ ├── Properties │ └── AssemblyInfo.cs │ ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml │ └── iotMiniSdk.Droid.csproj └── rtmp-rtsp-stream-client ├── Demo ├── Assets │ └── AboutAssets.txt ├── Demo.csproj ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs └── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── styles.xml ├── Encoder.Droid ├── Additions │ └── AboutAdditions.txt ├── Encoder.Droid.csproj ├── Jars │ └── encoder-2.1.7.aar ├── Properties │ └── AssemblyInfo.cs └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── RTSPServer.Droid ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── RTSPServer-1.1.7.aar ├── Properties │ └── AssemblyInfo.cs ├── RTSPServer.Droid.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Rtmp.Droid ├── Additions │ └── UserControl.cs ├── Jars │ └── rtmp-2.1.7.aar ├── Properties │ └── AssemblyInfo.cs ├── Rtmp.Droid.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Rtplibrary.Droid ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── rtplibrary-2.1.7.aar ├── Properties │ └── AssemblyInfo.cs ├── Rtplibrary.Droid.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml ├── Rtsp.Droid ├── Additions │ └── AboutAdditions.txt ├── Jars │ └── rtsp-2.1.7.aar ├── Properties │ └── AssemblyInfo.cs ├── Rtsp.Droid.csproj └── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml └── rtmp-rtsp-stream-client.sln /AlivecDemo/AlivecDemo/LiveActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | using Android.App; 7 | using Android.Content; 8 | using Android.OS; 9 | using Android.Runtime; 10 | using Android.Views; 11 | using Android.Widget; 12 | 13 | namespace AlivecDemo 14 | { 15 | 16 | } -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Jars/AliyunPlayer.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AlivecDemo/Aliyun.Player.Droid/Jars/AliyunPlayer.aar -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- 1 |  2 | 9 | 10 | -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/filechooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/filechooser.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/fullscreen.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/function.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/search.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/tbsvideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/tbsvideo.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/tbsweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/tbsweb.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_adrbar_btn_refresh_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_adrbar_btn_refresh_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_menu_btn_quit_fg_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_menu_btn_quit_fg_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_back_fg_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_back_fg_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_cleardata_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_cleardata_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_forward_fg_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_forward_fg_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_home_fg_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_home_fg_normal2.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_menu_fg_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_menu_fg_normal.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_menu_fg_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_menu_fg_pressed.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_openfile_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_openfile_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_testprocesses_fg_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_testprocesses_fg_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_testwebviews_fg_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/theme_toolbar_btn_testwebviews_fg_normal0.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/3b5fda23b12477893e9cc55d3712679a21e51ed8/AppTBS/AppTBS/AppTBS.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 |  2 | 3 |