You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hub/android/wsa/index.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,18 @@ ms.author: mattwoj
6
6
ms.reviewer: mousma
7
7
manager: jken
8
8
ms.topic: article
9
-
ms.date: 06/06/2023
9
+
ms.date: 03/05/2024
10
10
---
11
11
12
12
# Windows Subsystem for Android™️
13
13
14
14
Windows Subsystem for Android™️ enables your Windows 11 device to run Android applications that are available in the Amazon Appstore. Android is a trademark of Google LLC. If you're a developer interested in targeting Windows desktop devices and optimizing for the Windows operating system, this guide is for you.
15
15
16
+
> [!IMPORTANT]
17
+
> Microsoft is ending support for the Windows Subsystem for Android™️ (WSA). As a result, the Amazon Appstore on Windows and all applications and games dependent on WSA will no longer be supported beginning **March 5, 2025**. Until then, technical support will remain available to customers.
18
+
> Customers that have installed the Amazon Appstore or Android apps prior to March 5, 2024, will continue to have access to those apps through the deprecation date of March 5, 2025. Please reach out to our support team for further questions at [support.microsoft.com](https://support.microsoft.com).
19
+
> We are grateful for the support of our developer community and remain committed to listening to feedback as we evolve experiences.
20
+
16
21
To make your Android app available on Windows 11 devices, you must:
17
22
18
23
-[Submit your app to the Amazon Appstore](https://developer.amazon.com/apps-and-games/appstore-on-windows-11).
Copy file name to clipboardExpand all lines: hub/android/wsa/preview-program.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,14 @@ ms.author: mousma
6
6
ms.reviewer: mattwojo
7
7
manager: aleader
8
8
ms.topic: article
9
-
ms.date: 03/07/2022
9
+
ms.date: 03/05/2024
10
10
---
11
11
12
12
# Windows Subsystem for Android™️ Preview Program
13
13
14
+
> [!IMPORTANT]
15
+
> Windows Subsystem for Android™️ and the Amazon Appstore will no longer be available in the Microsoft Store after March 5, 2025. [Learn more](index.md).
16
+
14
17
The Windows Subsystem for Android™️ Preview Program allows users to receive early-preview builds of the Windows Subsystem for Android™ and Amazon Appstore on Windows. Installing the Amazon Appstore on Windows automatically installs Windows Subsystem for Android™️. Learn more about [installing the Amazon Appstore](https://support.microsoft.com/en-us/windows/install-mobile-apps-and-the-amazon-appstore-f8d0abb5-44ad-47d8-b9fb-ad6b1459ff6c).
Copy file name to clipboardExpand all lines: hub/android/wsa/release-notes.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,14 @@ ms.author: mattwoj
6
6
ms.reviewer: mousma
7
7
manager: jken
8
8
ms.topic: article
9
-
ms.date: 03/15/2023
9
+
ms.date: 03/05/2024
10
10
---
11
11
12
12
# Release Notes for Windows Subsystem for Android™️
13
13
14
+
> [!IMPORTANT]
15
+
> Windows Subsystem for Android™️ and the Amazon Appstore will no longer be available in the Microsoft Store after March 5, 2025. [Learn more](index.md).
16
+
14
17
These release notes are based on updates to the Windows Subsystem for Android™️. For basic information on how to install and run Android™️ apps on Windows, see the Support article: [Installing the Amazon Appstore and Android™️ Apps](https://support.microsoft.com/windows/mobile-apps-and-the-windows-subsystem-for-android-f8d0abb5-44ad-47d8-b9fb-ad6b1459ff6c).
Copy file name to clipboardExpand all lines: hub/apps/design/controls/command-bar-flyout.md
+20-15Lines changed: 20 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.custom: RS5
13
13
14
14
The command bar flyout lets you provide users with easy access to common tasks by showing commands in a floating toolbar related to an element on your UI canvas.
15
15
16
-

16
+

17
17
18
18
Like [CommandBar](command-bar.md), CommandBarFlyout has **PrimaryCommands** and **SecondaryCommands** properties you can use to add commands. You can place commands in either collection, or both. When and how the primary and secondary commands are displayed depends on the display mode.
19
19
@@ -79,18 +79,19 @@ This example shows how to create a command bar flyout and use it both proactivel
Here's the command bar flyout in its collapsed state.
114
115
115
-

116
+

116
117
117
118
Here's the same command bar flyout in its expanded state showing secondary commands.
118
119
119
-

120
+

120
121
121
122
### Show commands proactively
122
123
@@ -164,7 +165,11 @@ You can populate the PrimaryCommands and SecondaryCommands directly with [AppBar
164
165
165
166
The app bar button controls are characterized by an icon and text label. These controls are optimized for use in a command bar, and their appearance changes depending on whether the control is shown in the command bar or the overflow menu.
166
167
167
-
- App bar buttons used as primary commands are shown in the command bar with only their icon; the text label is not shown. We recommend that you use a [tooltip](tooltips.md) to show a text description of the command, as shown here.
168
+
-**In Windows App SDK 1.5 and later:** App bar buttons used as primary commands are shown in the command bar with both the text label and icon (if both are set).
169
+
```xaml
170
+
<AppBarButtonIcon="Copy"Label="Copy"/>
171
+
```
172
+
- **In Windows App SDK 1.4 and earlier:** App bar buttons used as primary commands are shown in the command bar with only their icon; the text label is not shown. We recommend that you use a [tooltip](tooltips.md) to show a text description of the command, as shown here.
@@ -186,7 +191,7 @@ You can add other controls to a command bar flyout by wrapping them in an AppBar
186
191
187
192
In order to be added to the primary or secondary command collections of a command bar flyout, an element must implement the [ICommandBarElement](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.icommandbarelement) interface. [AppBarElementContainer](/windows/windows-app-sdk/api/winrt/microsoft.ui.xaml.controls.appbarelementcontainer) is a wrapper that implements this interface so you can add an element to a command bar even if it doesn't implement the interface itself.
188
193
189
-
Here, an AppBarElementContainer is used to add extra elements to a command bar flyout. A SplitButton is added to the primary commands to allow selection of colors. A StackPanel is added to the secondary commands to allow a more complex layout for zoom controls.
194
+
Here, an AppBarElementContainer is used to add extra elements to a command bar flyout. A SplitButton is added to the primary commands to enable text alignment. A StackPanel is added to the secondary commands to allow a more complex layout for zoom controls.
190
195
191
196
> [!TIP]
192
197
> By default, elements designed for the app canvas might not look right in a command bar. When you add an element using AppBarElementContainer, there are some steps you should take to make the element match other command bar elements:
@@ -200,9 +205,9 @@ Here, an AppBarElementContainer is used to add extra elements to a command bar f
0 commit comments