All Projects → chsword → xamarin-bugly

chsword / xamarin-bugly

Licence: BSD-2-Clause license
A bugly SDK for Xamarin Android Bindings

Programming Languages

java
68154 projects - #9 most used programming language
C#
18002 projects

Projects that are alternatives of or similar to xamarin-bugly

Xamarin.forms.breadcrumb
This is a breadcrumb navigation control that is complete automatic and uses the Navigation stack and page titles to generate the breadcrumbs.
Stars: ✭ 130 (+490.91%)
Mutual labels:  xamarin, nuget
Sharpcaster
Chromecast C# SDK for Windows, Windows Phone, .NET 4.5.1, Xamarin.iOS and Xamarin.Android platforms.
Stars: ✭ 245 (+1013.64%)
Mutual labels:  xamarin, nuget
Bingmapsresttoolkit
This is a portable class library which makes it easy to access the Bing Maps REST services from .NET.
Stars: ✭ 136 (+518.18%)
Mutual labels:  xamarin, nuget
Xamarin.plugins
Cross-platform Native API Access from Shared Code!
Stars: ✭ 1,176 (+5245.45%)
Mutual labels:  xamarin, nuget
BingMapsSDSToolkit
This toolkit makes it easy to use the Bing Maps Spatial Data Services (SDS) in .NET
Stars: ✭ 39 (+77.27%)
Mutual labels:  xamarin, nuget
Latestversionplugin
LatestVersion Plugin for Xamarin and Windows apps
Stars: ✭ 99 (+350%)
Mutual labels:  xamarin, nuget
Megaapiclient
MegaApiClient is a C# .Net library to access http://mega.co.nz / http://mega.nz cloud storage and file hosting service.
Stars: ✭ 151 (+586.36%)
Mutual labels:  xamarin, nuget
Xamarin.forms.inputkit
CheckBox, Radio Button, Labeled Slider, Dropdowns etc.
Stars: ✭ 372 (+1590.91%)
Mutual labels:  xamarin, nuget
Xamarin-iOS
PSPDFKit for iOS wrapper for the Xamarin platform.
Stars: ✭ 14 (-36.36%)
Mutual labels:  xamarin, dll
XamarinHosting
Xamarin Forms Generic Host implementation for Microsoft.Extensions.Hosting.
Stars: ✭ 19 (-13.64%)
Mutual labels:  xamarin, nuget
Xxamarin
Repositório com ✨ 141 Exemplos de Implementações e 📦 13 Pacotes de Xamarin
Stars: ✭ 68 (+209.09%)
Mutual labels:  xamarin, nuget
Xamarin-Sidebar
A slideout navigation control for Xamarin.iOS
Stars: ✭ 113 (+413.64%)
Mutual labels:  xamarin, nuget
Xamarinmediamanager
Cross platform Xamarin plugin to play and control Audio and Video
Stars: ✭ 647 (+2840.91%)
Mutual labels:  xamarin, nuget
Exoplayerxamarin
Xamarin bindings library for the Google ExoPlayer library
Stars: ✭ 124 (+463.64%)
Mutual labels:  xamarin, nuget
32feet
Personal Area Networking for .NET
Stars: ✭ 395 (+1695.45%)
Mutual labels:  xamarin, nuget
Plugin.audiorecorder
Audio Recorder plugin for Xamarin and Windows
Stars: ✭ 140 (+536.36%)
Mutual labels:  xamarin, nuget
ButtonCirclePlugin
Circle Buttons with icon for your Xamarin.Forms Applications
Stars: ✭ 96 (+336.36%)
Mutual labels:  xamarin, nuget
Mvvmcross
The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac.
Stars: ✭ 3,594 (+16236.36%)
Mutual labels:  xamarin, nuget
Krypton-Toolkit-Suite-Extended-NET-5.470
An extension to the Krypton Toolkit suite of controls for .NET framework 4.7
Stars: ✭ 51 (+131.82%)
Mutual labels:  dll, nuget
Xamarin.iOS.DGActivityIndicatorView
🔰 DGActivityIndicatorView is a collection of nice loading animations for Xamarin.iOS.
Stars: ✭ 28 (+27.27%)
Mutual labels:  xamarin, nuget

xamarin-bugly for android

install from nuget release Build status

  • 已经打包为 DLL 内部已经集成 aar 包,无需再次引用
  • 当前 Upgrade 版本 : v.1.3.1
  • 当前 Buly 版本 : v3.1.3.2

使用方法

  1. 引用 DLL

    通过 Nuget

    Install-Package Bugly
  2. 为 Mono Android 项目添加一个 Application 类

        [Application]
        public class AndroidApplication : Application
        {
            public AndroidApplication(IntPtr handle, JniHandleOwnership ownerShip) : base(handle, ownerShip)
            {
            }
            public override void OnCreate()
            {
                base.OnCreate();
                Com.Chteam.Agent.BuglyAgentHelper.Init(this.ApplicationContext, "appId");
            }
        }
  3. 如果需要使用升级推送功能,请配置AndroidManifest.xml文件中加入

    <activity
    android:name="com.tencent.bugly.beta.ui.BetaActivity"
    android:configChanges="keyboardHidden|orientation|screenSize|locale"
    android:theme="@android:style/Theme.Translucent" />

    检查更新代码

    Com.Chteam.Agent.BuglyAgentHelper.CheckUpgrade();

Release Note

v3.1.3.1

  • 2017-06-30
  • upgrade 1.3.1 版本
  • 更新Tinker版本至1.7.11,支持360加固
  • aar内置权限、activity、fileProvider配置,无须手动配置
  • 对应tinker-support 1.0.8
  • 集成Bugly 2.6.5版本

v2.3.0.0

  • 2016-10-11
  • 适配Android 7.0文件权限
  • 优化弹窗展示
  • 性能优化并修复若干bug
  • 集成Bugly2.3.0版本

v2.1.44

  • 2016-08-21
  • 优化策略和DB;
  • 集成bugly最新2.2.2版本。

v2.1.33

  • 支持 upgrade 1.1.3
  • 优化UpgradeLisetner回调时机;
  • 更新弹窗的黑白名单支持继承关系;
  • 集成bugly最新2.2.0版本。

v2.1.32.0

  • 支持 upgrade 1.1.2
  • 支持 bugly 2.1.9

v2.1.31.1

  • 支持 upgrade 1.1.1

v2.1.31

  • 支持 upgrade 1.1.0 / bugly 2.1.7
    • 新增自定义更新弹窗样式功能;
    • 新增弹窗黑名单功能;
    • 优化弹窗逻辑;
    • 修复部分BUG。

v2.1.30

  • 支持 bugly_crash_upgrade_1.0.2.jar
    • 开放Beta.checkUpgrade(boolean isManual, boolean isSilence)接口;
    • 更新Bugly Android SDK包 v2.1.3 版本功能。
    • 优化Native异常合并逻辑;
    • 优化上报流量控制;
    • 优化运营数据上报逻辑;
    • 修复小概率数据重复上报问题。

v2.1.12

  • 支持 bugly_crash_upgrade_1.0.1.jar

v2.1.11

  • 支持 bugly_crash_upgrade_1.0.1-beta2.jar

v2.1.10

  • 支持应用内升级提醒功能
  • 修改为支持 bugly_crash_upgrade_1.0.0.jar
  • 增加 checkUpgrade 及 getUpgradeInfo 方法的支持
  • 增加 Nuget发布
  • 增加 appveyor 集成支持

v2.1

已支持方法:

CrashReport.setUserSceneTag

BuglyAgentHelper.setUserSceneTag

CrashReport.putUserData

BuglyAgentHelper.putUserData

v1.0

已支持方法: CrashReport.initCrashReport

BuglyAgentHelper.init

CrashReport.setUserId

BuglyAgentHelper.setUserId

CrashReport.testJavaCrash

BuglyAgentHelper.testJavaCrash

CrashReport.postCatchedException

BuglyAgentHelper.postCatchedException

命名空间:

Com.Chteam.Agent

关于 Bugly

Bugly官网 http://bugly.qq.com/

Bugly说明

官方使用文档

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].