├── .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 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo.sln -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/AlivecDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/AlivecDemo.csproj -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/LiveActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/LiveActivity.cs -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/MainActivity.cs -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Resources/layout/Main.axml -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /AlivecDemo/AlivecDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/AlivecDemo/packages.config -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Aliyun.Player.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Aliyun.Player.Droid.csproj -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Aliyun.Player.Droid.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Aliyun.Player.Droid.nuspec -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Jars/AliyunPlayer.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Jars/AliyunPlayer.aar -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /AlivecDemo/Aliyun.Player.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AlivecDemo/Aliyun.Player.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /AppTBS/AppTBS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS.sln -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/AppTBS.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/AppTBS.Android.csproj -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Assets/webpage/fileChooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Assets/webpage/fileChooser.html -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Assets/webpage/hitTestResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Assets/webpage/hitTestResult.html -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Assets/webpage/websocket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Assets/webpage/websocket.html -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/BrowserActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/BrowserActivity.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/FilechooserActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/FilechooserActivity.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/MApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/MApplication.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/MainActivity.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/layout/Main.axml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/values/Strings.xml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/WebRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/WebRenderer.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/WebViewJavaScriptFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/WebViewJavaScriptFunction.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.Android/X5WebView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.Android/X5WebView.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/AppTBS.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/AppTBS.iOS.csproj -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Entitlements.plist -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Info.plist -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Main.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Default.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS.iOS/packages.config -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS/App.xaml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS/App.xaml.cs -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS/AppTBS.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS/AppTBS.projitems -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS/AppTBS.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS/AppTBS.shproj -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS/MainPage.xaml -------------------------------------------------------------------------------- /AppTBS/AppTBS/AppTBS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/AppTBS/AppTBS/MainPage.xaml.cs -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Jars/tbssdk-44116.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Jars/tbssdk-44116.jar -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Jars/tbssdk_44199.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Jars/tbssdk_44199.jar -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Jars/tbssdk_44226.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Jars/tbssdk_44226.jar -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/TBS.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/TBS.Droid.csproj -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /AppTBS/TBS.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/AppTBS/TBS.Droid/package.nuspec -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map.sln -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/Additions/ItemizedOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/Additions/ItemizedOverlay.cs -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/BaiduMapSDK_Map.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/BaiduMapSDK_Map.csproj -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/Jars/BaiduMapSDK_Map-7.4.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/Jars/BaiduMapSDK_Map-7.4.0.aar -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /BaiduMapSDK_Map/BaiduMapSDK_Map/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduMapSDK_Map/BaiduMapSDK_Map/Transforms/Metadata.xml -------------------------------------------------------------------------------- /BaiduPush/BaiduPushDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/BaiduPushDemo.sln -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/BaiduPush.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/BaiduPush.csproj -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Jars/AboutJars.txt -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Jars/pushservice-6.7.3.20.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Jars/pushservice-6.7.3.20.jar -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/Transforms/Metadata.xml -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/jniLibs/arm64-v8a/libbdpush_V2_9.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/jniLibs/arm64-v8a/libbdpush_V2_9.so -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/jniLibs/armeabi-v7a/libbdpush_V2_9.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/jniLibs/armeabi-v7a/libbdpush_V2_9.so -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPush/jniLibs/armeabi/libbdpush_V2_9.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPush/jniLibs/armeabi/libbdpush_V2_9.so -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/BaiduPushReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/BaiduPushReceiver.cs -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/MainActivity.cs -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/MainApplication.cs -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/MyPushMessageReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/MyPushMessageReceiver.cs -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /BaiduPush/src/BaiduPushDemo.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/BaiduPush/src/BaiduPushDemo.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Bugly.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Bugly.Droid.csproj -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Jars/bugly_crashreport_upgrade-1.3.4.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Jars/bugly_crashreport_upgrade-1.3.4.aar -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Bugly/Bugly.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/Bugly.Droid/package.nuspec -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo.sln -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/BuglyDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/BuglyDemo.csproj -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/DemoApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/DemoApplication.cs -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/MainActivity.cs -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Bugly/BuglyDemo/BuglyDemo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Bugly/BuglyDemo/BuglyDemo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /CameraDemo/CameraDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo.sln -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/AutoFitTextureView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/AutoFitTextureView.cs -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Camera2BasicFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Camera2BasicFragment.cs -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/CameraActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/CameraActivity.cs -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/CameraDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/CameraDemo.csproj -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/CompareSizesByArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/CompareSizesByArea.cs -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/layout/activity_camera.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/layout/activity_camera.axml -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/values/colors.xml -------------------------------------------------------------------------------- /CameraDemo/CameraDemo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/CameraDemo/CameraDemo/Resources/values/styles.xml -------------------------------------------------------------------------------- /DVMediaSelector/App9.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9.sln -------------------------------------------------------------------------------- /DVMediaSelector/App9/App9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/App9.csproj -------------------------------------------------------------------------------- /DVMediaSelector/App9/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /DVMediaSelector/App9/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/MainActivity.cs -------------------------------------------------------------------------------- /DVMediaSelector/App9/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /DVMediaSelector/App9/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/AboutResources.txt -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/values/colors.xml -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/values/strings.xml -------------------------------------------------------------------------------- /DVMediaSelector/App9/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DVMediaSelector/App9/Resources/values/styles.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Demo.csproj -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/MainActivity.cs -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/values/colors.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/values/strings.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/Demo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/Demo/Resources/values/styles.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid.sln -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/DeviceAPI.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/DeviceAPI.Droid.csproj -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /DeviceAPI.Droid/DeviceAPI.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/DeviceAPI.Droid/DeviceAPI.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Glide.Xamarin/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Glide.Xamarin/Glide.Xamarin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Glide.Xamarin.csproj -------------------------------------------------------------------------------- /Glide.Xamarin/Jars/glide-3.7.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Jars/glide-3.7.0.jar -------------------------------------------------------------------------------- /Glide.Xamarin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Glide.Xamarin/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Glide.Xamarin/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Glide.Xamarin/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Glide.Xamarin/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Glide.Xamarin/package.nuspec -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /JMessage/JCore.Droid/JCore.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/JCore.Droid.csproj -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Jars/jcore-2.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Jars/jcore-2.3.0.aar -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /JMessage/JCore.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JCore.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /JMessage/JG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JG.sln -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/JMessage.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/JMessage.Droid.csproj -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Jars/jmessage-2.9.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Jars/jmessage-2.9.2.aar -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /JMessage/JMessage.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JMessage/JMessage.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /JPush/JPush.Droid/JPush.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/JPush.Droid.csproj -------------------------------------------------------------------------------- /JPush/JPush.Droid/Jars/jcore-android-2.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/Jars/jcore-android-2.3.0.jar -------------------------------------------------------------------------------- /JPush/JPush.Droid/Jars/jpush-android-3.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/Jars/jpush-android-3.5.8.jar -------------------------------------------------------------------------------- /JPush/JPush.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JPush/JPush.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /JPush/JPush.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /JPush/JPush.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /JPush/JPush.Droid/libs/arm64-v8a/libjcore230.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/libs/arm64-v8a/libjcore230.so -------------------------------------------------------------------------------- /JPush/JPush.Droid/libs/armeabi-v7a/libjcore230.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/libs/armeabi-v7a/libjcore230.so -------------------------------------------------------------------------------- /JPush/JPush.Droid/libs/armeabi/libjcore230.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/libs/armeabi/libjcore230.so -------------------------------------------------------------------------------- /JPush/JPush.Droid/libs/mips/libjcore230.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/libs/mips/libjcore230.so -------------------------------------------------------------------------------- /JPush/JPush.Droid/libs/mips64/libjcore230.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/libs/mips64/libjcore230.so -------------------------------------------------------------------------------- /JPush/JPush.Droid/libs/x86_64/libjcore230.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/libs/x86_64/libjcore230.so -------------------------------------------------------------------------------- /JPush/JPush.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.Droid/package.nuspec -------------------------------------------------------------------------------- /JPush/JPush.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush.sln -------------------------------------------------------------------------------- /JPush/JPush/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /JPush/JPush/ExampleApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/ExampleApplication.cs -------------------------------------------------------------------------------- /JPush/JPush/ExampleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/ExampleUtil.cs -------------------------------------------------------------------------------- /JPush/JPush/JPush.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/JPush.csproj -------------------------------------------------------------------------------- /JPush/JPush/LocalBroadcastManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/LocalBroadcastManager.cs -------------------------------------------------------------------------------- /JPush/JPush/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Logger.cs -------------------------------------------------------------------------------- /JPush/JPush/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/MainActivity.cs -------------------------------------------------------------------------------- /JPush/JPush/MyReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/MyReceiver.cs -------------------------------------------------------------------------------- /JPush/JPush/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /JPush/JPush/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JPush/JPush/PushMessageReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/PushMessageReceiver.cs -------------------------------------------------------------------------------- /JPush/JPush/PushService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/PushService.cs -------------------------------------------------------------------------------- /JPush/JPush/PushSetActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/PushSetActivity.cs -------------------------------------------------------------------------------- /JPush/JPush/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/border_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/border_bg.9.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/bottom_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/bottom_bg.9.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/corners_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/corners_bg.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/jpush_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/jpush_notification_icon.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/richpush_btn_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/richpush_btn_selector.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/richpush_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/richpush_progressbar.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/stripes.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/tiledstripes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/tiledstripes.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-hdpi/top_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-hdpi/top_bg.9.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-v24/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-v24/ic_launcher_foreground.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-v24/jpush_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-v24/jpush_notification_icon.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout-v21/push_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout-v21/push_notification.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/customer_notitfication_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/customer_notitfication_layout.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/jpush_popwin_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/jpush_popwin_layout.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/jpush_webview_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/jpush_webview_layout.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/main.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/push_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/push_notification.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/push_set_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/push_set_dialog.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/layout/set_push_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/layout/set_push_time.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /JPush/JPush/Resources/values-zh/jpush_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values-zh/jpush_string.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values/colors.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/values/jpush_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values/jpush_string.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/values/jpush_style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values/jpush_style.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values/strings.xml -------------------------------------------------------------------------------- /JPush/JPush/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/Resources/values/styles.xml -------------------------------------------------------------------------------- /JPush/JPush/SettingActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/SettingActivity.cs -------------------------------------------------------------------------------- /JPush/JPush/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/StringHelper.cs -------------------------------------------------------------------------------- /JPush/JPush/TagAliasOperatorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/TagAliasOperatorHelper.cs -------------------------------------------------------------------------------- /JPush/JPush/TestActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JPush/JPush/TestActivity.cs -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo.sln -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/AppDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/AppDemo.csproj -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/JZMediaIjk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/JZMediaIjk.cs -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/MainActivity.cs -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/values/colors.xml -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/values/strings.xml -------------------------------------------------------------------------------- /JZVideo/AppDemo/AppDemo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/JZVideo/AppDemo/AppDemo/Resources/values/styles.xml -------------------------------------------------------------------------------- /MobIM.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /MobIM.Droid/Jars/MobCommons-2017.1215.1339.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Jars/MobCommons-2017.1215.1339.jar -------------------------------------------------------------------------------- /MobIM.Droid/Jars/MobIM_1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Jars/MobIM_1.0.0.jar -------------------------------------------------------------------------------- /MobIM.Droid/Jars/MobTools-2017.1215.1339.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Jars/MobTools-2017.1215.1339.jar -------------------------------------------------------------------------------- /MobIM.Droid/MobIM.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/MobIM.Droid.csproj -------------------------------------------------------------------------------- /MobIM.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MobIM.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /MobIM.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /MobIM.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /MobIM.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/MobIM.Droid/package.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/README.md -------------------------------------------------------------------------------- /Rongyun/Demo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Rongyun/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Demo.csproj -------------------------------------------------------------------------------- /Rongyun/Demo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/MainActivity.cs -------------------------------------------------------------------------------- /Rongyun/Demo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Rongyun/Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/values/colors.xml -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Rongyun/Demo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Demo/Resources/values/styles.xml -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Jars/Rong_IMLib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Jars/Rong_IMLib.jar -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Rongyun.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Rongyun.Droid.csproj -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Rongyun/Rongyun.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Rongyun/Rongyun.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Rongyun/Rongyun.sln -------------------------------------------------------------------------------- /ScanningCode/BarcodeScanning.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/BarcodeScanning.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScanningCode/BarcodeScanning.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/BarcodeScanning.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /ScanningCode/BarcodeScanning.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/BarcodeScanning.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /ScanningCode/BarcodeScanning.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/BarcodeScanning.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /ScanningCode/CameraCore.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/CameraCore.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /ScanningCode/CameraCore.Droid/CameraCore.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/CameraCore.Droid/CameraCore.Droid.csproj -------------------------------------------------------------------------------- /ScanningCode/CameraCore.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/CameraCore.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScanningCode/CameraCore.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/CameraCore.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /ScanningCode/CameraCore.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/CameraCore.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /ScanningCode/CameraCore.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/CameraCore.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /ScanningCode/ScanningCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode.sln -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/CustomConfigActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/CustomConfigActivity.cs -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/AboutResources.txt -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/drawable-xxhdpi/ic_wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/drawable-xxhdpi/ic_wx.png -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/values/array.xml -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/values/colors.xml -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/values/strings.xml -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/Resources/values/styles.xml -------------------------------------------------------------------------------- /ScanningCode/ScanningCode/ScanningCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/ScanningCode/ScanningCode/ScanningCode.csproj -------------------------------------------------------------------------------- /Screenshot/alivec.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Screenshot/alivec.jpg -------------------------------------------------------------------------------- /Screenshot/xinge-push-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Screenshot/xinge-push-demo.png -------------------------------------------------------------------------------- /Screenshot/youzan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Screenshot/youzan.png -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo.sln -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/MainActivity.cs -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Resources/values/colors.xml -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/Resources/values/styles.xml -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/SerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/SerialPort.cs -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/SerialPortDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/SerialPortDemo.csproj -------------------------------------------------------------------------------- /SerialPortDemo/SerialPortDemo/lib/armeabi/libserial_port.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/SerialPortDemo/lib/armeabi/libserial_port.so -------------------------------------------------------------------------------- /SerialPortDemo/Serialport.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/Serialport.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /SerialPortDemo/Serialport.Droid/Serialport.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/Serialport.Droid/Serialport.Droid.csproj -------------------------------------------------------------------------------- /SerialPortDemo/Serialport.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/Serialport.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /SerialPortDemo/Serialport.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/Serialport.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /SerialPortDemo/Serialport.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/Serialport.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /SerialPortDemo/Serialport.Droid/android-serialport-2.1.3.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/SerialPortDemo/Serialport.Droid/android-serialport-2.1.3.aar -------------------------------------------------------------------------------- /Sofia.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Sofia.Droid/Jars/sofia-1.0.5.3.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Jars/sofia-1.0.5.3.aar -------------------------------------------------------------------------------- /Sofia.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sofia.Droid/Sofia.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Sofia.Droid.csproj -------------------------------------------------------------------------------- /Sofia.Droid/Sofia.Droid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Sofia.Droid.sln -------------------------------------------------------------------------------- /Sofia.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Sofia.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Sofia.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Sofia.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Droid/package.nuspec -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/FitWindowLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/FitWindowLayout.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/HostLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/HostLayout.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/IBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/IBar.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/NavigationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/NavigationView.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Resources/layout/sofia_host_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Resources/layout/sofia_host_layout.xml -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Resources/values/colors.xml -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Sofia.Xamarin.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Sofia.Xamarin.Droid.csproj -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Sofia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Sofia.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/StatusView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/StatusView.cs -------------------------------------------------------------------------------- /Sofia.Xamarin.Droid/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Sofia.Xamarin.Droid/Utils.cs -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Jars/common-1.5.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Jars/common-1.5.4.jar -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Jars/push-5.0.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Jars/push-5.0.2.aar -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Jars/utdid-1.1.5.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Jars/utdid-1.1.5.3.jar -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/Umeng.Push.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/Umeng.Push.Droid.csproj -------------------------------------------------------------------------------- /Umeng/Umeng.Push.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.Push.Droid/package.nuspec -------------------------------------------------------------------------------- /Umeng/Umeng.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng.sln -------------------------------------------------------------------------------- /Umeng/Umeng/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/App.cs -------------------------------------------------------------------------------- /Umeng/Umeng/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Umeng/Umeng/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/MainActivity.cs -------------------------------------------------------------------------------- /Umeng/Umeng/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/values/colors.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Resources/values/styles.xml -------------------------------------------------------------------------------- /Umeng/Umeng/Umeng.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Umeng/Umeng/Umeng.csproj -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/AndroidApp1/AndroidApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/AndroidApp1/AndroidApp1.csproj -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/AndroidApp1/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/AndroidApp1/AndroidManifest.xml -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/AndroidApp1/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/AndroidApp1/MainActivity.cs -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/AndroidApp1/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/AndroidApp1/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/AndroidApp1/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/AndroidApp1/Resources/values/strings.xml -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid.sln -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/WeChat.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/WeChat.Droid.csproj -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/icon64_appwx_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/icon64_appwx_logo.png -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/constant-values.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/help-doc.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/index-all.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/index.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/overview-frame.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/overview-tree.html -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/package-list -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/script.js -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/javadoc/stylesheet.css -------------------------------------------------------------------------------- /Wechat/WeChat.Droid/WeChat.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Wechat/WeChat.Droid/WeChat.Droid/package.nuspec -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Jars/fastjson-1.1.46.android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Jars/fastjson-1.1.46.android.jar -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Jars/weex_sdk-0.18.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Jars/weex_sdk-0.18.0.aar -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/Weex.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/Weex.Android.csproj -------------------------------------------------------------------------------- /Weex/WeexDemo/Weex.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/Weex.Android/packages.config -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo.sln -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Assets/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Assets/hello.js -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Assets/index.js -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Assets/index.weex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Assets/index.weex.js -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Assets/tech_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Assets/tech_list.js -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/MainActivity.cs -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/WXApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/WXApplication.cs -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/WeexDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/WeexDemo.csproj -------------------------------------------------------------------------------- /Weex/WeexDemo/WeexDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Weex/WeexDemo/WeexDemo/packages.config -------------------------------------------------------------------------------- /Xamarin.Android.CityPickerView/App1/App1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.CityPickerView/App1/App1.csproj -------------------------------------------------------------------------------- /Xamarin.Android.CityPickerView/App1/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.CityPickerView/App1/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Xamarin.Android.CityPickerView/App1/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.CityPickerView/App1/MainActivity.cs -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.WeChatOpenSDK/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.WeChatOpenSDK/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.WeChatOpenSDK/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.WeChatOpenSDK/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.WeChatOpenSDK/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.Android.WeChatOpenSDK/package.nuspec -------------------------------------------------------------------------------- /Xamarin.Android.WeChatOpenSDK/wechat-sdk-android-with-mta-5.4.0-javadoc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Jars/unicorn-5.3.1.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Jars/unicorn-5.3.1.aar -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/Xamarin.IyukfUnicorn.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/Xamarin.IyukfUnicorn.Droid.csproj -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/package.nuspec -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/index.html -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/package-list -------------------------------------------------------------------------------- /Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xamarin.IyukfUnicorn.Droid/unicorn-5.3.1-javadoc/script.js -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/Jars/mid-core-sdk-4.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/Jars/mid-core-sdk-4.0.6.jar -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/Jars/mid-core-sdk-4.0.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/Jars/mid-core-sdk-4.0.7.jar -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/XgPush.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/XgPush.Android.csproj -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/libs/armeabi/libxguardian.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/libs/armeabi/libxguardian.so -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XgPush.Android/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XgPush.Android/package.nuspec -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo.sln -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/MainActivity.cs -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Resources/layout/Main.axml -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/XinGeDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/XinGeDemo.csproj -------------------------------------------------------------------------------- /Xg-Push/XinGeDemo/XinGeDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Xg-Push/XinGeDemo/XinGeDemo/packages.config -------------------------------------------------------------------------------- /Youzan/Jsbridge/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Youzan/Jsbridge/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Youzan/Jsbridge/Jars/jsbridge-2.0.2.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Jars/jsbridge-2.0.2.aar -------------------------------------------------------------------------------- /Youzan/Jsbridge/Jsbridge.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Jsbridge.csproj -------------------------------------------------------------------------------- /Youzan/Jsbridge/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/Jsbridge/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Youzan/Jsbridge/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Youzan/Jsbridge/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Jsbridge/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Jars/sdk-analytics-0.4.7.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Jars/sdk-analytics-0.4.7.aar -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Jars/sdk-analytics-0.4.7/R.txt: -------------------------------------------------------------------------------- 1 | int string app_name 0x7f150001 2 | -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/SdkAnalytics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/SdkAnalytics.csproj -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Youzan/SdkAnalytics/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/SdkAnalytics/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Youzan/Webcache/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Youzan/Webcache/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Youzan/Webcache/Jars/webcache-2.2.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Jars/webcache-2.2.0.aar -------------------------------------------------------------------------------- /Youzan/Webcache/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/Webcache/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Youzan/Webcache/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Youzan/Webcache/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Youzan/Webcache/Webcache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/Webcache/Webcache.csproj -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Jars/basic-6.3.5.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Jars/basic-6.3.5.aar -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Youzan/YouZan.Droid/YouZan.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZan.Droid/YouZan.Droid.csproj -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/anko-commons-0.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/anko-commons-0.10.0.jar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/anko-sqlite-0.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/anko-sqlite-0.10.0.jar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/gson-2.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/gson-2.8.0.jar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/okhttp-3.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/okhttp-3.8.1.jar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/okio-1.13.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/okio-1.13.0.jar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/sdk-analytics-0.4.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/sdk-analytics-0.4.7.jar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Jars/youzansdk-6.3.5.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Jars/youzansdk-6.3.5.aar -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Youzan/YouZanSdk/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Youzan/YouZanSdk/YouZanSdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanSdk/YouZanSdk.csproj -------------------------------------------------------------------------------- /Youzan/YouZanXamarin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin.sln -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/MainActivity.cs -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/MyApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/MyApplication.cs -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/layout/activity_main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/layout/activity_main.axml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/layout/fragment_youzan.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/layout/fragment_youzan.axml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/menu/menu_youzan_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/menu/menu_youzan_share.xml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/values/Strings.xml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/values/colors.xml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/Resources/values/styles.xml -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/WebViewFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/WebViewFragment.cs -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/YouZanXamarin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/YouZanXamarin.csproj -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/YouzanActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/YouzanActivity.cs -------------------------------------------------------------------------------- /Youzan/YouZanXamarin/YouzanFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouZanXamarin/YouzanFragment.cs -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Additions/AboutAdditions.txt -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Jars/AboutJars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Jars/AboutJars.txt -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Jars/systemweb-2.0.9.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Jars/systemweb-2.0.9.aar -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/Transforms/Metadata.xml -------------------------------------------------------------------------------- /Youzan/YouzanSystemWeb/YouzanSystemWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/Youzan/YouzanSystemWeb/YouzanSystemWeb.csproj -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/Jars/Msc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/Jars/Msc.jar -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/iFlyMSC.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/iFlyMSC.Droid.csproj -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/libs/arm64-v8a/libmsc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/libs/arm64-v8a/libmsc.so -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/libs/arm64-v8a/libw_ivw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/libs/arm64-v8a/libw_ivw.so -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/libs/armeabi-v7a/libmsc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/libs/armeabi-v7a/libmsc.so -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/libs/armeabi-v7a/libw_ivw.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/libs/armeabi-v7a/libw_ivw.so -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.Droid/package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.Droid/package.nuspec -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC.sln -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/call.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/call.bnf -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/grammar_sample.abnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/grammar_sample.abnf -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iattest.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iattest.wav -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iflytek/recognize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iflytek/recognize.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iflytek/voice_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iflytek/voice_bg.9.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iflytek/voice_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iflytek/voice_empty.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iflytek/voice_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iflytek/voice_full.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iflytek/waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iflytek/waiting.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/iflytek/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/iflytek/warning.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/userwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/userwords -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/wake.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/wake.bnf -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Assets/wake_grammar_sample.abnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Assets/wake_grammar_sample.abnf -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/MainActivity.cs -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/AboutResources.txt -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/values/colors.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/values/strings.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/Resources/values/styles.xml -------------------------------------------------------------------------------- /iFlyMSC/iFlyMSC/iFlyMSC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iFlyMSC/iFlyMSC/iFlyMSC.csproj -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Demo.csproj -------------------------------------------------------------------------------- /iotMiniSdk/Demo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/MainActivity.cs -------------------------------------------------------------------------------- /iotMiniSdk/Demo/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/MainApplication.cs -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/values/colors.xml -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/values/strings.xml -------------------------------------------------------------------------------- /iotMiniSdk/Demo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/Demo/Resources/values/styles.xml -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk.sln -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/Jars/fastjson-1.2.72.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/Jars/fastjson-1.2.72.jar -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/Jars/iotMiniSdk-api-2.1.0.20.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/Jars/iotMiniSdk-api-2.1.0.20.aar -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/Transforms/Metadata.xml -------------------------------------------------------------------------------- /iotMiniSdk/iotMiniSdk/iotMiniSdk.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/iotMiniSdk/iotMiniSdk/iotMiniSdk.Droid.csproj -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Demo.csproj -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/MainActivity.cs -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Resources/values/colors.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Resources/values/strings.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Demo/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Demo/Resources/values/styles.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Encoder.Droid/Encoder.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Encoder.Droid/Encoder.Droid.csproj -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Encoder.Droid/Jars/encoder-2.1.7.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Encoder.Droid/Jars/encoder-2.1.7.aar -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Encoder.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Encoder.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Additions/UserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Additions/UserControl.cs -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Jars/rtmp-2.1.7.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Jars/rtmp-2.1.7.aar -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Rtmp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Rtmp.Droid.csproj -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtmp.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtmp.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtsp.Droid/Jars/rtsp-2.1.7.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtsp.Droid/Jars/rtsp-2.1.7.aar -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtsp.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtsp.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtsp.Droid/Rtsp.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtsp.Droid/Rtsp.Droid.csproj -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtsp.Droid/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtsp.Droid/Transforms/EnumFields.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtsp.Droid/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtsp.Droid/Transforms/EnumMethods.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/Rtsp.Droid/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/Rtsp.Droid/Transforms/Metadata.xml -------------------------------------------------------------------------------- /rtmp-rtsp-stream-client/rtmp-rtsp-stream-client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaceDeng/XamarinAndroidLibrary/HEAD/rtmp-rtsp-stream-client/rtmp-rtsp-stream-client.sln --------------------------------------------------------------------------------