Karamunting.Android.Mauker1.MaterialSearchView
1.2.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Karamunting.Android.Mauker1.MaterialSearchView --version 1.2.3
NuGet\Install-Package Karamunting.Android.Mauker1.MaterialSearchView -Version 1.2.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Karamunting.Android.Mauker1.MaterialSearchView" Version="1.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Karamunting.Android.Mauker1.MaterialSearchView --version 1.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Karamunting.Android.Mauker1.MaterialSearchView, 1.2.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Karamunting.Android.Mauker1.MaterialSearchView as a Cake Addin #addin nuget:?package=Karamunting.Android.Mauker1.MaterialSearchView&version=1.2.3 // Install Karamunting.Android.Mauker1.MaterialSearchView as a Cake Tool #tool nuget:?package=Karamunting.Android.Mauker1.MaterialSearchView&version=1.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Notes
- Add
MsvAuthority
class into your project. Don't forget to changeMaterialSearchViewDemo
with yournamespace
.
using Android.Runtime;
namespace MaterialSearchViewDemo
{
[Register("br.com.mauker.MsvAuthority")]
public static class MsvAuthority
{
[Register("CONTENT_AUTHORITY")]
public const string ContentAuthority = "br.com.mauker.materialsearchview.defaultsearchhistorydatabase";
}
}
- Modify your
AndroidManifest.xml
& add<provider>
node inside<application>
node
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="21" />
<application android:allowBackup="true"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:icon="@mipmap/ic_launcher">
<provider android:name="br.com.mauker.materialsearchview.db.HistoryProvider"
android:authorities="br.com.mauker.materialsearchview.defaultsearchhistorydatabase"
android:exported="false"
android:protectionLevel="signature"
android:syncable="true"/>
</application>
</manifest>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid71 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
MonoAndroid 7.1
- Xamarin.Android.Support.v4 (>= 25.4.0.2)
- Xamarin.Android.Support.v7.AppCompat (>= 25.4.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.