Tong
2021-08-28 2e3036055030b211429cbd6edd7c358ac9bb9fd3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
using Android.Content;
using Android.Database;
 
using System;
using Huawei.Agconnect.Config;
 
 
namespace Shared.Droid.JPush
{
    [ContentProvider(new string[] { "Shared.Droid.JPush.HmsContentProvider" })]
    class HmsContentProvider : ContentProvider
    {
        public override int Delete(Android.Net.Uri uri, string selection, string[] selectionArgs)
        {
            throw new NotImplementedException();
        }
 
        public override string GetType(Android.Net.Uri uri)
        {
            throw new NotImplementedException();
        }
 
        public override Android.Net.Uri Insert(Android.Net.Uri uri, ContentValues values)
        {
            throw new NotImplementedException();
        }
 
        public override bool OnCreate()
        {
 
            try
            {
                AGConnectServicesConfig config = AGConnectServicesConfig.FromContext(Context);
                config.OverlayWith(new HmsLazyInputStream(Context));
            }
            catch (Exception e)
            {
 
            }
 
            return false;
        }
 
        public override ICursor Query(Android.Net.Uri uri, string[] projection, string selection, string[] selectionArgs, string sortOrder)
        {
            throw new NotImplementedException();
        }
 
        public override int Update(Android.Net.Uri uri, ContentValues values, string selection, string[] selectionArgs)
        {
            throw new NotImplementedException();
        }
    }
}