mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 23:33:34 +00:00
AutoFillServiceDescription
This commit is contained in:
@@ -809,6 +809,9 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Resources\drawable\accessibility_notification_icon.png" />
|
<AndroidResource Include="Resources\drawable\accessibility_notification_icon.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\values\strings.xml" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||||
<Import Project="..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
<Import Project="..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\build\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
|
|||||||
3
src/Android/Resources/Resource.Designer.cs
generated
3
src/Android/Resources/Resource.Designer.cs
generated
@@ -3690,6 +3690,9 @@ namespace Bit.Android
|
|||||||
// aapt resource value: 0x7f080047
|
// aapt resource value: 0x7f080047
|
||||||
public const int ApplicationName = 2131230791;
|
public const int ApplicationName = 2131230791;
|
||||||
|
|
||||||
|
// aapt resource value: 0x7f08008f
|
||||||
|
public const int AutoFillServiceDescription = 2131230863;
|
||||||
|
|
||||||
// aapt resource value: 0x7f080046
|
// aapt resource value: 0x7f080046
|
||||||
public const int Hello = 2131230790;
|
public const int Hello = 2131230790;
|
||||||
|
|
||||||
|
|||||||
8
src/Android/Resources/values/strings.xml
Normal file
8
src/Android/Resources/values/strings.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="AutoFillServiceDescription">
|
||||||
|
The allow bitwarden to auto-fill into other Android apps and on the web through your browser, enable the bitwarden
|
||||||
|
accessibility service by tapping the toggle switch above, then press OK on the confirmation pop-up. You can then press
|
||||||
|
the back button twice to return to the main bitwarden app.
|
||||||
|
</string>
|
||||||
|
</resources>
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
|
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:description="@string/AutoFillServiceDescription"
|
||||||
android:accessibilityEventTypes="typeWindowStateChanged|typeWindowContentChanged"
|
android:accessibilityEventTypes="typeWindowStateChanged|typeWindowContentChanged"
|
||||||
android:accessibilityFeedbackType="feedbackGeneric"
|
android:accessibilityFeedbackType="feedbackGeneric"
|
||||||
android:accessibilityFlags="flagDefault"
|
android:accessibilityFlags="flagDefault"
|
||||||
|
|||||||
Reference in New Issue
Block a user