commit
de23b1a863
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version = "1.0" encoding = "UTF-8" ?>
|
||||||
|
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
xmlns:local="clr-namespace:MVVM"
|
||||||
|
x:Class="MVVM.App">
|
||||||
|
<Application.Resources>
|
||||||
|
<ResourceDictionary>
|
||||||
|
<ResourceDictionary.MergedDictionaries>
|
||||||
|
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
||||||
|
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
||||||
|
</ResourceDictionary.MergedDictionaries>
|
||||||
|
</ResourceDictionary>
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<Shell
|
||||||
|
x:Class="MVVM.AppShell"
|
||||||
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
xmlns:local="clr-namespace:MVVM"
|
||||||
|
Shell.FlyoutBehavior="Disabled">
|
||||||
|
|
||||||
|
<ShellContent
|
||||||
|
Title="Home"
|
||||||
|
ContentTemplate="{DataTemplate local:MainPage}"
|
||||||
|
Route="MainPage" />
|
||||||
|
|
||||||
|
</Shell>
|
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<IsFirstTimeProjectOpen>False</IsFirstTimeProjectOpen>
|
||||||
|
<ActiveDebugFramework>net7.0-windows10.0.19041.0</ActiveDebugFramework>
|
||||||
|
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<MauiXaml Update="App.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="AppShell.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="MainPage.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Platforms\Windows\App.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Styles\Colors.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</MauiXaml>
|
||||||
|
<MauiXaml Update="Resources\Styles\Styles.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</MauiXaml>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Update="Platforms\Windows\Package.appxmanifest">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,41 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||||
|
x:Class="MVVM.MainPage">
|
||||||
|
|
||||||
|
<ScrollView>
|
||||||
|
<VerticalStackLayout
|
||||||
|
Spacing="25"
|
||||||
|
Padding="30,0"
|
||||||
|
VerticalOptions="Center">
|
||||||
|
|
||||||
|
<Image
|
||||||
|
Source="dotnet_bot.png"
|
||||||
|
SemanticProperties.Description="Cute dot net bot waving hi to you!"
|
||||||
|
HeightRequest="200"
|
||||||
|
HorizontalOptions="Center" />
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Hello, World!"
|
||||||
|
SemanticProperties.HeadingLevel="Level1"
|
||||||
|
FontSize="32"
|
||||||
|
HorizontalOptions="Center" />
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Welcome to .NET Multi-platform App UI"
|
||||||
|
SemanticProperties.HeadingLevel="Level2"
|
||||||
|
SemanticProperties.Description="Welcome to dot net Multi platform App U I"
|
||||||
|
FontSize="18"
|
||||||
|
HorizontalOptions="Center" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
x:Name="CounterBtn"
|
||||||
|
Text="Click me"
|
||||||
|
SemanticProperties.Hint="Counts the number of times you click"
|
||||||
|
Clicked="OnCounterClicked"
|
||||||
|
HorizontalOptions="Center" />
|
||||||
|
|
||||||
|
</VerticalStackLayout>
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
|
</ContentPage>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="colorPrimary">#512BD4</color>
|
||||||
|
<color name="colorPrimaryDark">#2B0B98</color>
|
||||||
|
<color name="colorAccent">#2B0B98</color>
|
||||||
|
</resources>
|
@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>UIDeviceFamily</key>
|
||||||
|
<array>
|
||||||
|
<integer>1</integer>
|
||||||
|
<integer>2</integer>
|
||||||
|
</array>
|
||||||
|
<key>UIRequiredDeviceCapabilities</key>
|
||||||
|
<array>
|
||||||
|
<string>arm64</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
</array>
|
||||||
|
<key>XSAppIconAssets</key>
|
||||||
|
<string>Assets.xcassets/appicon.appiconset</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
@ -0,0 +1,17 @@
|
|||||||
|
using Microsoft.Maui;
|
||||||
|
using Microsoft.Maui.Hosting;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace MVVM
|
||||||
|
{
|
||||||
|
internal class Program : MauiApplication
|
||||||
|
{
|
||||||
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
||||||
|
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
var app = new Program();
|
||||||
|
app.Run(args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
<maui:MauiWinUIApplication
|
||||||
|
x:Class="MVVM.WinUI.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:maui="using:Microsoft.Maui"
|
||||||
|
xmlns:local="using:MVVM.WinUI">
|
||||||
|
|
||||||
|
</maui:MauiWinUIApplication>
|
@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Package
|
||||||
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||||
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||||
|
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
||||||
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
||||||
|
IgnorableNamespaces="uap rescap">
|
||||||
|
|
||||||
|
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
|
||||||
|
|
||||||
|
<mp:PhoneIdentity PhoneProductId="0308DB6F-9925-4970-A11E-F776CB47B4A1" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||||
|
|
||||||
|
<Properties>
|
||||||
|
<DisplayName>$placeholder$</DisplayName>
|
||||||
|
<PublisherDisplayName>User Name</PublisherDisplayName>
|
||||||
|
<Logo>$placeholder$.png</Logo>
|
||||||
|
</Properties>
|
||||||
|
|
||||||
|
<Dependencies>
|
||||||
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||||
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
||||||
|
</Dependencies>
|
||||||
|
|
||||||
|
<Resources>
|
||||||
|
<Resource Language="x-generate" />
|
||||||
|
</Resources>
|
||||||
|
|
||||||
|
<Applications>
|
||||||
|
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
|
||||||
|
<uap:VisualElements
|
||||||
|
DisplayName="$placeholder$"
|
||||||
|
Description="$placeholder$"
|
||||||
|
Square150x150Logo="$placeholder$.png"
|
||||||
|
Square44x44Logo="$placeholder$.png"
|
||||||
|
BackgroundColor="transparent">
|
||||||
|
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
|
||||||
|
<uap:SplashScreen Image="$placeholder$.png" />
|
||||||
|
</uap:VisualElements>
|
||||||
|
</Application>
|
||||||
|
</Applications>
|
||||||
|
|
||||||
|
<Capabilities>
|
||||||
|
<rescap:Capability Name="runFullTrust" />
|
||||||
|
</Capabilities>
|
||||||
|
|
||||||
|
</Package>
|
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
|
<assemblyIdentity version="1.0.0.0" name="MVVM.WinUI.app"/>
|
||||||
|
|
||||||
|
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<windowsSettings>
|
||||||
|
<!-- The combination of below two tags have the following effect:
|
||||||
|
1) Per-Monitor for >= Windows 10 Anniversary Update
|
||||||
|
2) System < Windows 10 Anniversary Update
|
||||||
|
-->
|
||||||
|
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
|
||||||
|
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
|
||||||
|
</windowsSettings>
|
||||||
|
</application>
|
||||||
|
</assembly>
|
@ -0,0 +1,32 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>UIDeviceFamily</key>
|
||||||
|
<array>
|
||||||
|
<integer>1</integer>
|
||||||
|
<integer>2</integer>
|
||||||
|
</array>
|
||||||
|
<key>UIRequiredDeviceCapabilities</key>
|
||||||
|
<array>
|
||||||
|
<string>arm64</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
</array>
|
||||||
|
<key>XSAppIconAssets</key>
|
||||||
|
<string>Assets.xcassets/appicon.appiconset</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"profiles": {
|
||||||
|
"Windows Machine": {
|
||||||
|
"commandName": "MsixPackage",
|
||||||
|
"nativeDebugging": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
After Width: | Height: | Size: 228 B |
After Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,15 @@
|
|||||||
|
Any raw assets you want to be deployed with your application can be placed in
|
||||||
|
this directory (and child directories). Deployment of the asset to your application
|
||||||
|
is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
|
||||||
|
|
||||||
|
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" />
|
||||||
|
|
||||||
|
These files will be deployed with you package and will be accessible using Essentials:
|
||||||
|
|
||||||
|
async Task LoadMauiAsset()
|
||||||
|
{
|
||||||
|
using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
|
||||||
|
using var reader = new StreamReader(stream);
|
||||||
|
|
||||||
|
var contents = reader.ReadToEnd();
|
||||||
|
}
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,44 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<?xaml-comp compile="true" ?>
|
||||||
|
<ResourceDictionary
|
||||||
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
||||||
|
|
||||||
|
<Color x:Key="Primary">#512BD4</Color>
|
||||||
|
<Color x:Key="Secondary">#DFD8F7</Color>
|
||||||
|
<Color x:Key="Tertiary">#2B0B98</Color>
|
||||||
|
<Color x:Key="White">White</Color>
|
||||||
|
<Color x:Key="Black">Black</Color>
|
||||||
|
<Color x:Key="Gray100">#E1E1E1</Color>
|
||||||
|
<Color x:Key="Gray200">#C8C8C8</Color>
|
||||||
|
<Color x:Key="Gray300">#ACACAC</Color>
|
||||||
|
<Color x:Key="Gray400">#919191</Color>
|
||||||
|
<Color x:Key="Gray500">#6E6E6E</Color>
|
||||||
|
<Color x:Key="Gray600">#404040</Color>
|
||||||
|
<Color x:Key="Gray900">#212121</Color>
|
||||||
|
<Color x:Key="Gray950">#141414</Color>
|
||||||
|
<SolidColorBrush x:Key="PrimaryBrush" Color="{StaticResource Primary}"/>
|
||||||
|
<SolidColorBrush x:Key="SecondaryBrush" Color="{StaticResource Secondary}"/>
|
||||||
|
<SolidColorBrush x:Key="TertiaryBrush" Color="{StaticResource Tertiary}"/>
|
||||||
|
<SolidColorBrush x:Key="WhiteBrush" Color="{StaticResource White}"/>
|
||||||
|
<SolidColorBrush x:Key="BlackBrush" Color="{StaticResource Black}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray100Brush" Color="{StaticResource Gray100}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray200Brush" Color="{StaticResource Gray200}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray300Brush" Color="{StaticResource Gray300}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray400Brush" Color="{StaticResource Gray400}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray500Brush" Color="{StaticResource Gray500}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray600Brush" Color="{StaticResource Gray600}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray900Brush" Color="{StaticResource Gray900}"/>
|
||||||
|
<SolidColorBrush x:Key="Gray950Brush" Color="{StaticResource Gray950}"/>
|
||||||
|
|
||||||
|
<Color x:Key="Yellow100Accent">#F7B548</Color>
|
||||||
|
<Color x:Key="Yellow200Accent">#FFD590</Color>
|
||||||
|
<Color x:Key="Yellow300Accent">#FFE5B9</Color>
|
||||||
|
<Color x:Key="Cyan100Accent">#28C2D1</Color>
|
||||||
|
<Color x:Key="Cyan200Accent">#7BDDEF</Color>
|
||||||
|
<Color x:Key="Cyan300Accent">#C3F2F4</Color>
|
||||||
|
<Color x:Key="Blue100Accent">#3E8EED</Color>
|
||||||
|
<Color x:Key="Blue200Accent">#72ACF1</Color>
|
||||||
|
<Color x:Key="Blue300Accent">#A7CBF6</Color>
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
@ -0,0 +1,405 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<?xaml-comp compile="true" ?>
|
||||||
|
<ResourceDictionary
|
||||||
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
||||||
|
|
||||||
|
<Style TargetType="ActivityIndicator">
|
||||||
|
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="IndicatorView">
|
||||||
|
<Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"/>
|
||||||
|
<Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Border">
|
||||||
|
<Setter Property="Stroke" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||||
|
<Setter Property="StrokeShape" Value="Rectangle"/>
|
||||||
|
<Setter Property="StrokeThickness" Value="1"/>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="BoxView">
|
||||||
|
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Button">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Primary}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14"/>
|
||||||
|
<Setter Property="CornerRadius" Value="8"/>
|
||||||
|
<Setter Property="Padding" Value="14,10"/>
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="CheckBox">
|
||||||
|
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="DatePicker">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14"/>
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Editor">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Entry">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Frame">
|
||||||
|
<Setter Property="HasShadow" Value="False" />
|
||||||
|
<Setter Property="BorderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
||||||
|
<Setter Property="CornerRadius" Value="8" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="ImageButton">
|
||||||
|
<Setter Property="Opacity" Value="1" />
|
||||||
|
<Setter Property="BorderColor" Value="Transparent"/>
|
||||||
|
<Setter Property="BorderWidth" Value="0"/>
|
||||||
|
<Setter Property="CornerRadius" Value="0"/>
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="Opacity" Value="0.5" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Label">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="ListView">
|
||||||
|
<Setter Property="SeparatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
||||||
|
<Setter Property="RefreshControlColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Picker">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14"/>
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="ProgressBar">
|
||||||
|
<Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="ProgressColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="RadioButton">
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent"/>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14"/>
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="RefreshView">
|
||||||
|
<Setter Property="RefreshColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="SearchBar">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
|
||||||
|
<Setter Property="CancelButtonColor" Value="{StaticResource Gray500}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="SearchHandler">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="PlaceholderColor" Value="{StaticResource Gray500}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent" />
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Shadow">
|
||||||
|
<Setter Property="Radius" Value="15" />
|
||||||
|
<Setter Property="Opacity" Value="0.5" />
|
||||||
|
<Setter Property="Brush" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="Offset" Value="10,10" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Slider">
|
||||||
|
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" />
|
||||||
|
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
||||||
|
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
||||||
|
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/>
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="SwipeItem">
|
||||||
|
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Switch">
|
||||||
|
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="ThumbColor" Value="{StaticResource White}" />
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
<VisualState x:Name="On">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="OnColor" Value="{AppThemeBinding Light={StaticResource Secondary}, Dark={StaticResource Gray200}}" />
|
||||||
|
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
<VisualState x:Name="Off">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray400}, Dark={StaticResource Gray500}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="TimePicker">
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="BackgroundColor" Value="Transparent"/>
|
||||||
|
<Setter Property="FontFamily" Value="OpenSansRegular"/>
|
||||||
|
<Setter Property="FontSize" Value="14"/>
|
||||||
|
<Setter Property="MinimumHeightRequest" Value="44"/>
|
||||||
|
<Setter Property="MinimumWidthRequest" Value="44"/>
|
||||||
|
<Setter Property="VisualStateManager.VisualStateGroups">
|
||||||
|
<VisualStateGroupList>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
<VisualState.Setters>
|
||||||
|
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
||||||
|
</VisualState.Setters>
|
||||||
|
</VisualState>
|
||||||
|
</VisualStateGroup>
|
||||||
|
</VisualStateGroupList>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Page" ApplyToDerivedTypes="True">
|
||||||
|
<Setter Property="Padding" Value="0"/>
|
||||||
|
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="Shell" ApplyToDerivedTypes="True">
|
||||||
|
<Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}" />
|
||||||
|
<Setter Property="Shell.ForegroundColor" Value="{OnPlatform WinUI={StaticResource Primary}, Default={StaticResource White}}" />
|
||||||
|
<Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="Shell.DisabledColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
||||||
|
<Setter Property="Shell.UnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}" />
|
||||||
|
<Setter Property="Shell.NavBarHasShadow" Value="False" />
|
||||||
|
<Setter Property="Shell.TabBarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" />
|
||||||
|
<Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="Shell.TabBarUnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="NavigationPage">
|
||||||
|
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}" />
|
||||||
|
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="IconColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
<Style TargetType="TabbedPage">
|
||||||
|
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}" />
|
||||||
|
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
||||||
|
<Setter Property="UnselectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" />
|
||||||
|
<Setter Property="SelectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
||||||
|
</Style>
|
||||||
|
|
||||||
|
</ResourceDictionary>
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Ce code a été généré par un outil.
|
||||||
|
// Version du runtime :4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
|
||||||
|
// le code est régénéré.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("MVVM")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("MVVM")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("MVVM")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Android33.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Android21.0")]
|
||||||
|
|
||||||
|
// Généré par la classe MSBuild WriteCodeFragment.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
a63076d0c35f09d6fc8053df6dbf6d9ad76a8020
|
@ -0,0 +1,45 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net7.0-android
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization = false
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.EnableAotAnalyzer =
|
||||||
|
build_property.EnableSingleFileAnalyzer = true
|
||||||
|
build_property.EnableTrimAnalyzer = false
|
||||||
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
|
build_property.RootNamespace = MVVM
|
||||||
|
build_property.ProjectDir = C:\Home\Cours\Projet\MVVM\MVVM\MVVM\
|
||||||
|
|
||||||
|
[C:/Home/Cours/Projet/MVVM/MVVM/MVVM/App.xaml]
|
||||||
|
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||||
|
build_metadata.AdditionalFiles.ManifestResourceName = MVVM.App.xaml
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = App.xaml
|
||||||
|
build_metadata.AdditionalFiles.RelativePath = App.xaml
|
||||||
|
|
||||||
|
[C:/Home/Cours/Projet/MVVM/MVVM/MVVM/AppShell.xaml]
|
||||||
|
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||||
|
build_metadata.AdditionalFiles.ManifestResourceName = MVVM.AppShell.xaml
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = AppShell.xaml
|
||||||
|
build_metadata.AdditionalFiles.RelativePath = AppShell.xaml
|
||||||
|
|
||||||
|
[C:/Home/Cours/Projet/MVVM/MVVM/MVVM/MainPage.xaml]
|
||||||
|
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||||
|
build_metadata.AdditionalFiles.ManifestResourceName = MVVM.MainPage.xaml
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = MainPage.xaml
|
||||||
|
build_metadata.AdditionalFiles.RelativePath = MainPage.xaml
|
||||||
|
|
||||||
|
[C:/Home/Cours/Projet/MVVM/MVVM/MVVM/Resources/Styles/Colors.xaml]
|
||||||
|
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||||
|
build_metadata.AdditionalFiles.ManifestResourceName = MVVM.Resources.Styles.Colors.xaml
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml
|
||||||
|
build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml
|
||||||
|
|
||||||
|
[C:/Home/Cours/Projet/MVVM/MVVM/MVVM/Resources/Styles/Styles.xaml]
|
||||||
|
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||||
|
build_metadata.AdditionalFiles.ManifestResourceName = MVVM.Resources.Styles.Styles.xaml
|
||||||
|
build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml
|
||||||
|
build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml
|
@ -0,0 +1,26 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::Microsoft.Extensions.DependencyInjection;
|
||||||
|
global using global::Microsoft.Maui;
|
||||||
|
global using global::Microsoft.Maui.Accessibility;
|
||||||
|
global using global::Microsoft.Maui.ApplicationModel;
|
||||||
|
global using global::Microsoft.Maui.ApplicationModel.Communication;
|
||||||
|
global using global::Microsoft.Maui.ApplicationModel.DataTransfer;
|
||||||
|
global using global::Microsoft.Maui.Authentication;
|
||||||
|
global using global::Microsoft.Maui.Controls;
|
||||||
|
global using global::Microsoft.Maui.Controls.Hosting;
|
||||||
|
global using global::Microsoft.Maui.Controls.Xaml;
|
||||||
|
global using global::Microsoft.Maui.Devices;
|
||||||
|
global using global::Microsoft.Maui.Devices.Sensors;
|
||||||
|
global using global::Microsoft.Maui.Dispatching;
|
||||||
|
global using global::Microsoft.Maui.Graphics;
|
||||||
|
global using global::Microsoft.Maui.Hosting;
|
||||||
|
global using global::Microsoft.Maui.Media;
|
||||||
|
global using global::Microsoft.Maui.Networking;
|
||||||
|
global using global::Microsoft.Maui.Storage;
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,31 @@
|
|||||||
|
bundleassemblies=false
|
||||||
|
aotassemblies=false
|
||||||
|
androidaddkeepalives=
|
||||||
|
androidaotmode=interpreter
|
||||||
|
androidembedprofilers=
|
||||||
|
androidenableprofiledaot=
|
||||||
|
androiddextool=d8
|
||||||
|
androidlinktool=
|
||||||
|
androidlinkresources=
|
||||||
|
androidpackageformat=apk
|
||||||
|
embedassembliesintoapk=false
|
||||||
|
androidlinkmode=none
|
||||||
|
androidlinkskip=
|
||||||
|
androidsdkbuildtoolsversion=32.0.0
|
||||||
|
androidsdkpath=c:\program files (x86)\android\android-sdk\
|
||||||
|
androidndkpath=
|
||||||
|
javasdkpath=c:\program files\microsoft\jdk-11.0.16.101-hotspot\
|
||||||
|
androidsequencepointsmode=none
|
||||||
|
androidnetsdkversion=33.0.68
|
||||||
|
monosymbolarchive=false
|
||||||
|
androiduselatestplatformsdk=false
|
||||||
|
targetframeworkversion=v7.0
|
||||||
|
androidcreatepackageperabi=
|
||||||
|
androidgeneratejnimarshalmethods=false
|
||||||
|
os=windows_nt
|
||||||
|
androidincludedebugsymbols=true
|
||||||
|
androidpackagenamingpolicy=lowercasecrc64
|
||||||
|
_nugetassetstimestamp=
|
||||||
|
typemapkind=strings-asm
|
||||||
|
androidsupportedabis=armeabi-v7a;arm64-v8a;x86;x86_64
|
||||||
|
androidmanifestplaceholders=
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
CFA79138A40BCFB7
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
~ Copyright (C) 2020 The Android Open Source Project
|
||||||
|
~
|
||||||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
~ you may not use this file except in compliance with the License.
|
||||||
|
~ You may obtain a copy of the License at
|
||||||
|
~
|
||||||
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing, software
|
||||||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
~ See the License for the specific language governing permissions and
|
||||||
|
~ limitations under the License.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.tracing" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="31" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,4 @@
|
|||||||
|
aarFormatVersion=1.0
|
||||||
|
aarMetadataVersion=1.0
|
||||||
|
minCompileSdk=31
|
||||||
|
minAndroidGradlePluginVersion=1.0.0
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
</resources>
|
@ -0,0 +1 @@
|
|||||||
|
1D7087BB23B35D5E
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright 2018 The Android Open Source Project
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.savedstate" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="31" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,4 @@
|
|||||||
|
aarFormatVersion=1.0
|
||||||
|
aarMetadataVersion=1.0
|
||||||
|
minCompileSdk=31
|
||||||
|
minAndroidGradlePluginVersion=1.0.0
|
@ -0,0 +1 @@
|
|||||||
|
int id view_tree_saved_state_registry_owner 0x0
|
Binary file not shown.
@ -0,0 +1,17 @@
|
|||||||
|
# Copyright (C) 2019 The Android Open Source Project
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
-keepclassmembers,allowobfuscation class * implements androidx.savedstate.SavedStateRegistry$AutoRecreated {
|
||||||
|
<init>();
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<id name="view_tree_saved_state_registry_owner"/>
|
||||||
|
</resources>
|
@ -0,0 +1 @@
|
|||||||
|
BECBDBEDB54903C5
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2013 The Android Open Source Project
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.recyclerview" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="30" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,2 @@
|
|||||||
|
aarFormatVersion=1.0
|
||||||
|
aarMetadataVersion=1.0
|
@ -0,0 +1,203 @@
|
|||||||
|
int attr alpha 0x0
|
||||||
|
int attr fastScrollEnabled 0x0
|
||||||
|
int attr fastScrollHorizontalThumbDrawable 0x0
|
||||||
|
int attr fastScrollHorizontalTrackDrawable 0x0
|
||||||
|
int attr fastScrollVerticalThumbDrawable 0x0
|
||||||
|
int attr fastScrollVerticalTrackDrawable 0x0
|
||||||
|
int attr font 0x0
|
||||||
|
int attr fontProviderAuthority 0x0
|
||||||
|
int attr fontProviderCerts 0x0
|
||||||
|
int attr fontProviderFetchStrategy 0x0
|
||||||
|
int attr fontProviderFetchTimeout 0x0
|
||||||
|
int attr fontProviderPackage 0x0
|
||||||
|
int attr fontProviderQuery 0x0
|
||||||
|
int attr fontStyle 0x0
|
||||||
|
int attr fontVariationSettings 0x0
|
||||||
|
int attr fontWeight 0x0
|
||||||
|
int attr layoutManager 0x0
|
||||||
|
int attr recyclerViewStyle 0x0
|
||||||
|
int attr reverseLayout 0x0
|
||||||
|
int attr spanCount 0x0
|
||||||
|
int attr stackFromEnd 0x0
|
||||||
|
int attr ttcIndex 0x0
|
||||||
|
int color androidx_core_ripple_material_light 0x0
|
||||||
|
int color androidx_core_secondary_text_default_material_light 0x0
|
||||||
|
int color notification_action_color_filter 0x0
|
||||||
|
int color notification_icon_bg_color 0x0
|
||||||
|
int color ripple_material_light 0x0
|
||||||
|
int color secondary_text_default_material_light 0x0
|
||||||
|
int dimen compat_button_inset_horizontal_material 0x0
|
||||||
|
int dimen compat_button_inset_vertical_material 0x0
|
||||||
|
int dimen compat_button_padding_horizontal_material 0x0
|
||||||
|
int dimen compat_button_padding_vertical_material 0x0
|
||||||
|
int dimen compat_control_corner_material 0x0
|
||||||
|
int dimen compat_notification_large_icon_max_height 0x0
|
||||||
|
int dimen compat_notification_large_icon_max_width 0x0
|
||||||
|
int dimen fastscroll_default_thickness 0x0
|
||||||
|
int dimen fastscroll_margin 0x0
|
||||||
|
int dimen fastscroll_minimum_range 0x0
|
||||||
|
int dimen item_touch_helper_max_drag_scroll_per_frame 0x0
|
||||||
|
int dimen item_touch_helper_swipe_escape_max_velocity 0x0
|
||||||
|
int dimen item_touch_helper_swipe_escape_velocity 0x0
|
||||||
|
int dimen notification_action_icon_size 0x0
|
||||||
|
int dimen notification_action_text_size 0x0
|
||||||
|
int dimen notification_big_circle_margin 0x0
|
||||||
|
int dimen notification_content_margin_start 0x0
|
||||||
|
int dimen notification_large_icon_height 0x0
|
||||||
|
int dimen notification_large_icon_width 0x0
|
||||||
|
int dimen notification_main_column_padding_top 0x0
|
||||||
|
int dimen notification_media_narrow_margin 0x0
|
||||||
|
int dimen notification_right_icon_size 0x0
|
||||||
|
int dimen notification_right_side_padding_top 0x0
|
||||||
|
int dimen notification_small_icon_background_padding 0x0
|
||||||
|
int dimen notification_small_icon_size_as_large 0x0
|
||||||
|
int dimen notification_subtext_size 0x0
|
||||||
|
int dimen notification_top_pad 0x0
|
||||||
|
int dimen notification_top_pad_large_text 0x0
|
||||||
|
int drawable notification_action_background 0x0
|
||||||
|
int drawable notification_bg 0x0
|
||||||
|
int drawable notification_bg_low 0x0
|
||||||
|
int drawable notification_bg_low_normal 0x0
|
||||||
|
int drawable notification_bg_low_pressed 0x0
|
||||||
|
int drawable notification_bg_normal 0x0
|
||||||
|
int drawable notification_bg_normal_pressed 0x0
|
||||||
|
int drawable notification_icon_background 0x0
|
||||||
|
int drawable notification_template_icon_bg 0x0
|
||||||
|
int drawable notification_template_icon_low_bg 0x0
|
||||||
|
int drawable notification_tile_bg 0x0
|
||||||
|
int drawable notify_panel_notification_icon_bg 0x0
|
||||||
|
int id accessibility_action_clickable_span 0x0
|
||||||
|
int id accessibility_custom_action_0 0x0
|
||||||
|
int id accessibility_custom_action_1 0x0
|
||||||
|
int id accessibility_custom_action_10 0x0
|
||||||
|
int id accessibility_custom_action_11 0x0
|
||||||
|
int id accessibility_custom_action_12 0x0
|
||||||
|
int id accessibility_custom_action_13 0x0
|
||||||
|
int id accessibility_custom_action_14 0x0
|
||||||
|
int id accessibility_custom_action_15 0x0
|
||||||
|
int id accessibility_custom_action_16 0x0
|
||||||
|
int id accessibility_custom_action_17 0x0
|
||||||
|
int id accessibility_custom_action_18 0x0
|
||||||
|
int id accessibility_custom_action_19 0x0
|
||||||
|
int id accessibility_custom_action_2 0x0
|
||||||
|
int id accessibility_custom_action_20 0x0
|
||||||
|
int id accessibility_custom_action_21 0x0
|
||||||
|
int id accessibility_custom_action_22 0x0
|
||||||
|
int id accessibility_custom_action_23 0x0
|
||||||
|
int id accessibility_custom_action_24 0x0
|
||||||
|
int id accessibility_custom_action_25 0x0
|
||||||
|
int id accessibility_custom_action_26 0x0
|
||||||
|
int id accessibility_custom_action_27 0x0
|
||||||
|
int id accessibility_custom_action_28 0x0
|
||||||
|
int id accessibility_custom_action_29 0x0
|
||||||
|
int id accessibility_custom_action_3 0x0
|
||||||
|
int id accessibility_custom_action_30 0x0
|
||||||
|
int id accessibility_custom_action_31 0x0
|
||||||
|
int id accessibility_custom_action_4 0x0
|
||||||
|
int id accessibility_custom_action_5 0x0
|
||||||
|
int id accessibility_custom_action_6 0x0
|
||||||
|
int id accessibility_custom_action_7 0x0
|
||||||
|
int id accessibility_custom_action_8 0x0
|
||||||
|
int id accessibility_custom_action_9 0x0
|
||||||
|
int id action_container 0x0
|
||||||
|
int id action_divider 0x0
|
||||||
|
int id action_image 0x0
|
||||||
|
int id action_text 0x0
|
||||||
|
int id actions 0x0
|
||||||
|
int id async 0x0
|
||||||
|
int id blocking 0x0
|
||||||
|
int id chronometer 0x0
|
||||||
|
int id dialog_button 0x0
|
||||||
|
int id forever 0x0
|
||||||
|
int id icon 0x0
|
||||||
|
int id icon_group 0x0
|
||||||
|
int id info 0x0
|
||||||
|
int id italic 0x0
|
||||||
|
int id item_touch_helper_previous_elevation 0x0
|
||||||
|
int id line1 0x0
|
||||||
|
int id line3 0x0
|
||||||
|
int id normal 0x0
|
||||||
|
int id notification_background 0x0
|
||||||
|
int id notification_main_column 0x0
|
||||||
|
int id notification_main_column_container 0x0
|
||||||
|
int id right_icon 0x0
|
||||||
|
int id right_side 0x0
|
||||||
|
int id tag_accessibility_actions 0x0
|
||||||
|
int id tag_accessibility_clickable_spans 0x0
|
||||||
|
int id tag_accessibility_heading 0x0
|
||||||
|
int id tag_accessibility_pane_title 0x0
|
||||||
|
int id tag_screen_reader_focusable 0x0
|
||||||
|
int id tag_transition_group 0x0
|
||||||
|
int id tag_unhandled_key_event_manager 0x0
|
||||||
|
int id tag_unhandled_key_listeners 0x0
|
||||||
|
int id text 0x0
|
||||||
|
int id text2 0x0
|
||||||
|
int id time 0x0
|
||||||
|
int id title 0x0
|
||||||
|
int integer status_bar_notification_info_maxnum 0x0
|
||||||
|
int layout custom_dialog 0x0
|
||||||
|
int layout notification_action 0x0
|
||||||
|
int layout notification_action_tombstone 0x0
|
||||||
|
int layout notification_template_custom_big 0x0
|
||||||
|
int layout notification_template_icon_group 0x0
|
||||||
|
int layout notification_template_part_chronometer 0x0
|
||||||
|
int layout notification_template_part_time 0x0
|
||||||
|
int string status_bar_notification_info_overflow 0x0
|
||||||
|
int style TextAppearance_Compat_Notification 0x0
|
||||||
|
int style TextAppearance_Compat_Notification_Info 0x0
|
||||||
|
int style TextAppearance_Compat_Notification_Line2 0x0
|
||||||
|
int style TextAppearance_Compat_Notification_Time 0x0
|
||||||
|
int style TextAppearance_Compat_Notification_Title 0x0
|
||||||
|
int style Widget_Compat_NotificationActionContainer 0x0
|
||||||
|
int style Widget_Compat_NotificationActionText 0x0
|
||||||
|
int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 }
|
||||||
|
int styleable ColorStateListItem_alpha 0
|
||||||
|
int styleable ColorStateListItem_android_alpha 1
|
||||||
|
int styleable ColorStateListItem_android_color 2
|
||||||
|
int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||||
|
int styleable FontFamily_fontProviderAuthority 0
|
||||||
|
int styleable FontFamily_fontProviderCerts 1
|
||||||
|
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||||
|
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||||
|
int styleable FontFamily_fontProviderPackage 4
|
||||||
|
int styleable FontFamily_fontProviderQuery 5
|
||||||
|
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||||
|
int styleable FontFamilyFont_android_font 0
|
||||||
|
int styleable FontFamilyFont_android_fontStyle 1
|
||||||
|
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||||
|
int styleable FontFamilyFont_android_fontWeight 3
|
||||||
|
int styleable FontFamilyFont_android_ttcIndex 4
|
||||||
|
int styleable FontFamilyFont_font 5
|
||||||
|
int styleable FontFamilyFont_fontStyle 6
|
||||||
|
int styleable FontFamilyFont_fontVariationSettings 7
|
||||||
|
int styleable FontFamilyFont_fontWeight 8
|
||||||
|
int styleable FontFamilyFont_ttcIndex 9
|
||||||
|
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||||
|
int styleable GradientColor_android_centerColor 0
|
||||||
|
int styleable GradientColor_android_centerX 1
|
||||||
|
int styleable GradientColor_android_centerY 2
|
||||||
|
int styleable GradientColor_android_endColor 3
|
||||||
|
int styleable GradientColor_android_endX 4
|
||||||
|
int styleable GradientColor_android_endY 5
|
||||||
|
int styleable GradientColor_android_gradientRadius 6
|
||||||
|
int styleable GradientColor_android_startColor 7
|
||||||
|
int styleable GradientColor_android_startX 8
|
||||||
|
int styleable GradientColor_android_startY 9
|
||||||
|
int styleable GradientColor_android_tileMode 10
|
||||||
|
int styleable GradientColor_android_type 11
|
||||||
|
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||||
|
int styleable GradientColorItem_android_color 0
|
||||||
|
int styleable GradientColorItem_android_offset 1
|
||||||
|
int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
|
||||||
|
int styleable RecyclerView_android_clipToPadding 0
|
||||||
|
int styleable RecyclerView_android_descendantFocusability 1
|
||||||
|
int styleable RecyclerView_android_orientation 2
|
||||||
|
int styleable RecyclerView_fastScrollEnabled 3
|
||||||
|
int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
|
||||||
|
int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
|
||||||
|
int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
|
||||||
|
int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
|
||||||
|
int styleable RecyclerView_layoutManager 8
|
||||||
|
int styleable RecyclerView_reverseLayout 9
|
||||||
|
int styleable RecyclerView_spanCount 10
|
||||||
|
int styleable RecyclerView_stackFromEnd 11
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,25 @@
|
|||||||
|
# Copyright (C) 2015 The Android Open Source Project
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
|
||||||
|
# When layoutManager xml attribute is used, RecyclerView inflates
|
||||||
|
#LayoutManagers' constructors using reflection.
|
||||||
|
-keep public class * extends androidx.recyclerview.widget.RecyclerView$LayoutManager {
|
||||||
|
public <init>(android.content.Context, android.util.AttributeSet, int, int);
|
||||||
|
public <init>();
|
||||||
|
}
|
||||||
|
|
||||||
|
-keepclassmembers class androidx.recyclerview.widget.RecyclerView {
|
||||||
|
public void suppressLayout(boolean);
|
||||||
|
public boolean isLayoutSuppressed();
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
attr fastScrollEnabled
|
||||||
|
attr fastScrollHorizontalThumbDrawable
|
||||||
|
attr fastScrollHorizontalTrackDrawable
|
||||||
|
attr fastScrollVerticalThumbDrawable
|
||||||
|
attr fastScrollVerticalTrackDrawable
|
||||||
|
attr layoutManager
|
||||||
|
attr reverseLayout
|
||||||
|
attr spanCount
|
||||||
|
attr stackFromEnd
|
Binary file not shown.
@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<attr format="reference" name="recyclerViewStyle"/>
|
||||||
|
<dimen name="fastscroll_default_thickness">8dp</dimen>
|
||||||
|
<dimen name="fastscroll_margin">0dp</dimen>
|
||||||
|
<dimen name="fastscroll_minimum_range">50dp</dimen>
|
||||||
|
<dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen>
|
||||||
|
<dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen>
|
||||||
|
<dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen>
|
||||||
|
<item name="item_touch_helper_previous_elevation" type="id"/>
|
||||||
|
<declare-styleable name="RecyclerView">
|
||||||
|
<!-- Class name of the Layout Manager to be used.
|
||||||
|
<p/>
|
||||||
|
The class must ext androidx.recyclerview.widget.RecyclerViewView$LayoutManager
|
||||||
|
and have either a default constructor or constructor with the signature
|
||||||
|
(android.content.Context, android.util.AttributeSet, int, int).
|
||||||
|
<p/>
|
||||||
|
If the name starts with a '.', application package is prefixed.
|
||||||
|
Else, if the name contains a '.', the classname is assumed to be a full class name.
|
||||||
|
Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. -->
|
||||||
|
<attr format="string" name="layoutManager"/>
|
||||||
|
|
||||||
|
<!-- ============================= -->
|
||||||
|
<!-- Attributes for Layout Manager -->
|
||||||
|
<!-- ============================= -->
|
||||||
|
<eat-comment/>
|
||||||
|
|
||||||
|
<attr name="android:orientation"/>
|
||||||
|
<attr name="android:descendantFocusability"/>
|
||||||
|
<attr name="android:clipToPadding"/>
|
||||||
|
<attr format="integer" name="spanCount"/>
|
||||||
|
<attr format="boolean" name="reverseLayout"/>
|
||||||
|
<attr format="boolean" name="stackFromEnd"/>
|
||||||
|
<attr format="boolean" name="fastScrollEnabled"/>
|
||||||
|
<attr format="reference" name="fastScrollVerticalThumbDrawable"/>
|
||||||
|
<attr format="reference" name="fastScrollVerticalTrackDrawable"/>
|
||||||
|
<attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
|
||||||
|
<attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
|
||||||
|
</declare-styleable>
|
||||||
|
</resources>
|
@ -0,0 +1 @@
|
|||||||
|
7D8A2F3B43E63534
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
~ Copyright 2017 The Android Open Source Project
|
||||||
|
~
|
||||||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
~ you may not use this file except in compliance with the License.
|
||||||
|
~ You may obtain a copy of the License at
|
||||||
|
~
|
||||||
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing, software
|
||||||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
~ See the License for the specific language governing permissions and
|
||||||
|
~ limitations under the License.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.lifecycle.viewmodel" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="31" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,4 @@
|
|||||||
|
aarFormatVersion=1.0
|
||||||
|
aarMetadataVersion=1.0
|
||||||
|
minCompileSdk=31
|
||||||
|
minAndroidGradlePluginVersion=1.0.0
|
@ -0,0 +1 @@
|
|||||||
|
int id view_tree_view_model_store_owner 0x0
|
@ -0,0 +1,15 @@
|
|||||||
|
# Baseline profiles for Lifecycle ViewModel
|
||||||
|
|
||||||
|
HSPLandroidx/lifecycle/ViewModel;-><init>()V
|
||||||
|
HSPLandroidx/lifecycle/ViewModelLazy;-><init>(Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)V
|
||||||
|
HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Landroidx/lifecycle/ViewModel;
|
||||||
|
HSPLandroidx/lifecycle/ViewModelLazy;->getValue()Ljava/lang/Object;
|
||||||
|
HSPLandroidx/lifecycle/ViewModelProvider;-><init>(Landroidx/lifecycle/ViewModelStore;Landroidx/lifecycle/ViewModelProvider$Factory;)V
|
||||||
|
HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
|
||||||
|
HSPLandroidx/lifecycle/ViewModelProvider;->get(Ljava/lang/String;Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
|
||||||
|
HSPLandroidx/lifecycle/ViewModelStore;-><init>()V
|
||||||
|
HSPLandroidx/lifecycle/ViewModelStore;->get(Ljava/lang/String;)Landroidx/lifecycle/ViewModel;
|
||||||
|
HSPLandroidx/lifecycle/ViewModelStore;->put(Ljava/lang/String;Landroidx/lifecycle/ViewModel;)V
|
||||||
|
PLandroidx/lifecycle/ViewModel;->clear()V
|
||||||
|
PLandroidx/lifecycle/ViewModel;->onCleared()V
|
||||||
|
PLandroidx/lifecycle/ViewModelStore;->clear()V
|
Binary file not shown.
@ -0,0 +1,7 @@
|
|||||||
|
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
|
||||||
|
<init>();
|
||||||
|
}
|
||||||
|
|
||||||
|
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
|
||||||
|
<init>(android.app.Application);
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<id name="view_tree_view_model_store_owner"/>
|
||||||
|
</resources>
|
@ -0,0 +1 @@
|
|||||||
|
748052E8F148EFBC
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
~ Copyright 2017 The Android Open Source Project
|
||||||
|
~
|
||||||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
~ you may not use this file except in compliance with the License.
|
||||||
|
~ You may obtain a copy of the License at
|
||||||
|
~
|
||||||
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing, software
|
||||||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
~ See the License for the specific language governing permissions and
|
||||||
|
~ limitations under the License.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.lifecycle.livedata.core" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="31" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,4 @@
|
|||||||
|
aarFormatVersion=1.0
|
||||||
|
aarMetadataVersion=1.0
|
||||||
|
minCompileSdk=31
|
||||||
|
minAndroidGradlePluginVersion=1.0.0
|
@ -0,0 +1,40 @@
|
|||||||
|
# Baseline profiles for lifecycle-livedata-core
|
||||||
|
|
||||||
|
HSPLandroidx/lifecycle/LiveData$1;-><init>(Landroidx/lifecycle/LiveData;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$1;->run()V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$AlwaysActiveObserver;->shouldBeActive()Z
|
||||||
|
HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->shouldBeActive()Z
|
||||||
|
HSPLandroidx/lifecycle/LiveData$ObserverWrapper;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->activeStateChanged(Z)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData$ObserverWrapper;->detachObserver()V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;-><clinit>()V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;-><init>()V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->assertMainThread(Ljava/lang/String;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->changeActiveCounter(I)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->considerNotify(Landroidx/lifecycle/LiveData$ObserverWrapper;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->dispatchingValue(Landroidx/lifecycle/LiveData$ObserverWrapper;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->getValue()Ljava/lang/Object;
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->getVersion()I
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->hasActiveObservers()Z
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->observe(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->observeForever(Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->onActive()V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->onInactive()V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->postValue(Ljava/lang/Object;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->removeObserver(Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/LiveData;->setValue(Ljava/lang/Object;)V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData$Source;-><init>(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData$Source;->onChanged(Ljava/lang/Object;)V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData$Source;->plug()V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData$Source;->unplug()V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData;-><init>()V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData;->addSource(Landroidx/lifecycle/LiveData;Landroidx/lifecycle/Observer;)V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData;->onActive()V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData;->onInactive()V
|
||||||
|
HSPLandroidx/lifecycle/MediatorLiveData;->removeSource(Landroidx/lifecycle/LiveData;)V
|
||||||
|
HSPLandroidx/lifecycle/MutableLiveData;-><init>()V
|
||||||
|
HSPLandroidx/lifecycle/MutableLiveData;->setValue(Ljava/lang/Object;)V
|
||||||
|
PLandroidx/lifecycle/LiveData$LifecycleBoundObserver;->detachObserver()V
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
</resources>
|
@ -0,0 +1 @@
|
|||||||
|
109841B2AB535CED
|
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
Copyright (C) 2014 The Android Open Source Project
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.loader" >
|
||||||
|
|
||||||
|
<uses-sdk
|
||||||
|
android:minSdkVersion="14"
|
||||||
|
android:targetSdkVersion="28" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,131 @@
|
|||||||
|
int attr alpha 0x7f040001
|
||||||
|
int attr font 0x7f040002
|
||||||
|
int attr fontProviderAuthority 0x7f040003
|
||||||
|
int attr fontProviderCerts 0x7f040004
|
||||||
|
int attr fontProviderFetchStrategy 0x7f040005
|
||||||
|
int attr fontProviderFetchTimeout 0x7f040006
|
||||||
|
int attr fontProviderPackage 0x7f040007
|
||||||
|
int attr fontProviderQuery 0x7f040008
|
||||||
|
int attr fontStyle 0x7f040009
|
||||||
|
int attr fontVariationSettings 0x7f04000a
|
||||||
|
int attr fontWeight 0x7f04000b
|
||||||
|
int attr ttcIndex 0x7f04000c
|
||||||
|
int color notification_action_color_filter 0x7f060001
|
||||||
|
int color notification_icon_bg_color 0x7f060002
|
||||||
|
int color ripple_material_light 0x7f060003
|
||||||
|
int color secondary_text_default_material_light 0x7f060004
|
||||||
|
int dimen compat_button_inset_horizontal_material 0x7f070001
|
||||||
|
int dimen compat_button_inset_vertical_material 0x7f070002
|
||||||
|
int dimen compat_button_padding_horizontal_material 0x7f070003
|
||||||
|
int dimen compat_button_padding_vertical_material 0x7f070004
|
||||||
|
int dimen compat_control_corner_material 0x7f070005
|
||||||
|
int dimen compat_notification_large_icon_max_height 0x7f070006
|
||||||
|
int dimen compat_notification_large_icon_max_width 0x7f070007
|
||||||
|
int dimen notification_action_icon_size 0x7f070008
|
||||||
|
int dimen notification_action_text_size 0x7f070009
|
||||||
|
int dimen notification_big_circle_margin 0x7f07000a
|
||||||
|
int dimen notification_content_margin_start 0x7f07000b
|
||||||
|
int dimen notification_large_icon_height 0x7f07000c
|
||||||
|
int dimen notification_large_icon_width 0x7f07000d
|
||||||
|
int dimen notification_main_column_padding_top 0x7f07000e
|
||||||
|
int dimen notification_media_narrow_margin 0x7f07000f
|
||||||
|
int dimen notification_right_icon_size 0x7f070010
|
||||||
|
int dimen notification_right_side_padding_top 0x7f070011
|
||||||
|
int dimen notification_small_icon_background_padding 0x7f070012
|
||||||
|
int dimen notification_small_icon_size_as_large 0x7f070013
|
||||||
|
int dimen notification_subtext_size 0x7f070014
|
||||||
|
int dimen notification_top_pad 0x7f070015
|
||||||
|
int dimen notification_top_pad_large_text 0x7f070016
|
||||||
|
int drawable notification_action_background 0x7f080001
|
||||||
|
int drawable notification_bg 0x7f080002
|
||||||
|
int drawable notification_bg_low 0x7f080003
|
||||||
|
int drawable notification_bg_low_normal 0x7f080004
|
||||||
|
int drawable notification_bg_low_pressed 0x7f080005
|
||||||
|
int drawable notification_bg_normal 0x7f080006
|
||||||
|
int drawable notification_bg_normal_pressed 0x7f080007
|
||||||
|
int drawable notification_icon_background 0x7f080008
|
||||||
|
int drawable notification_template_icon_bg 0x7f080009
|
||||||
|
int drawable notification_template_icon_low_bg 0x7f08000a
|
||||||
|
int drawable notification_tile_bg 0x7f08000b
|
||||||
|
int drawable notify_panel_notification_icon_bg 0x7f08000c
|
||||||
|
int id action_container 0x7f0b0001
|
||||||
|
int id action_divider 0x7f0b0002
|
||||||
|
int id action_image 0x7f0b0003
|
||||||
|
int id action_text 0x7f0b0004
|
||||||
|
int id actions 0x7f0b0005
|
||||||
|
int id async 0x7f0b0006
|
||||||
|
int id blocking 0x7f0b0007
|
||||||
|
int id chronometer 0x7f0b0008
|
||||||
|
int id forever 0x7f0b0009
|
||||||
|
int id icon 0x7f0b000a
|
||||||
|
int id icon_group 0x7f0b000b
|
||||||
|
int id info 0x7f0b000c
|
||||||
|
int id italic 0x7f0b000d
|
||||||
|
int id line1 0x7f0b000e
|
||||||
|
int id line3 0x7f0b000f
|
||||||
|
int id normal 0x7f0b0010
|
||||||
|
int id notification_background 0x7f0b0011
|
||||||
|
int id notification_main_column 0x7f0b0012
|
||||||
|
int id notification_main_column_container 0x7f0b0013
|
||||||
|
int id right_icon 0x7f0b0014
|
||||||
|
int id right_side 0x7f0b0015
|
||||||
|
int id tag_transition_group 0x7f0b0016
|
||||||
|
int id tag_unhandled_key_event_manager 0x7f0b0017
|
||||||
|
int id tag_unhandled_key_listeners 0x7f0b0018
|
||||||
|
int id text 0x7f0b0019
|
||||||
|
int id text2 0x7f0b001a
|
||||||
|
int id time 0x7f0b001b
|
||||||
|
int id title 0x7f0b001c
|
||||||
|
int integer status_bar_notification_info_maxnum 0x7f0c0001
|
||||||
|
int layout notification_action 0x7f0e0001
|
||||||
|
int layout notification_action_tombstone 0x7f0e0002
|
||||||
|
int layout notification_template_custom_big 0x7f0e0003
|
||||||
|
int layout notification_template_icon_group 0x7f0e0004
|
||||||
|
int layout notification_template_part_chronometer 0x7f0e0005
|
||||||
|
int layout notification_template_part_time 0x7f0e0006
|
||||||
|
int string status_bar_notification_info_overflow 0x7f140001
|
||||||
|
int style TextAppearance_Compat_Notification 0x7f150001
|
||||||
|
int style TextAppearance_Compat_Notification_Info 0x7f150002
|
||||||
|
int style TextAppearance_Compat_Notification_Line2 0x7f150003
|
||||||
|
int style TextAppearance_Compat_Notification_Time 0x7f150004
|
||||||
|
int style TextAppearance_Compat_Notification_Title 0x7f150005
|
||||||
|
int style Widget_Compat_NotificationActionContainer 0x7f150006
|
||||||
|
int style Widget_Compat_NotificationActionText 0x7f150007
|
||||||
|
int[] styleable ColorStateListItem { 0x7f040001, 0x101031f, 0x10101a5 }
|
||||||
|
int styleable ColorStateListItem_alpha 0
|
||||||
|
int styleable ColorStateListItem_android_alpha 1
|
||||||
|
int styleable ColorStateListItem_android_color 2
|
||||||
|
int[] styleable FontFamily { 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008 }
|
||||||
|
int styleable FontFamily_fontProviderAuthority 0
|
||||||
|
int styleable FontFamily_fontProviderCerts 1
|
||||||
|
int styleable FontFamily_fontProviderFetchStrategy 2
|
||||||
|
int styleable FontFamily_fontProviderFetchTimeout 3
|
||||||
|
int styleable FontFamily_fontProviderPackage 4
|
||||||
|
int styleable FontFamily_fontProviderQuery 5
|
||||||
|
int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040002, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c }
|
||||||
|
int styleable FontFamilyFont_android_font 0
|
||||||
|
int styleable FontFamilyFont_android_fontStyle 1
|
||||||
|
int styleable FontFamilyFont_android_fontVariationSettings 2
|
||||||
|
int styleable FontFamilyFont_android_fontWeight 3
|
||||||
|
int styleable FontFamilyFont_android_ttcIndex 4
|
||||||
|
int styleable FontFamilyFont_font 5
|
||||||
|
int styleable FontFamilyFont_fontStyle 6
|
||||||
|
int styleable FontFamilyFont_fontVariationSettings 7
|
||||||
|
int styleable FontFamilyFont_fontWeight 8
|
||||||
|
int styleable FontFamilyFont_ttcIndex 9
|
||||||
|
int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
|
||||||
|
int styleable GradientColor_android_centerColor 0
|
||||||
|
int styleable GradientColor_android_centerX 1
|
||||||
|
int styleable GradientColor_android_centerY 2
|
||||||
|
int styleable GradientColor_android_endColor 3
|
||||||
|
int styleable GradientColor_android_endX 4
|
||||||
|
int styleable GradientColor_android_endY 5
|
||||||
|
int styleable GradientColor_android_gradientRadius 6
|
||||||
|
int styleable GradientColor_android_startColor 7
|
||||||
|
int styleable GradientColor_android_startX 8
|
||||||
|
int styleable GradientColor_android_startY 9
|
||||||
|
int styleable GradientColor_android_tileMode 10
|
||||||
|
int styleable GradientColor_android_type 11
|
||||||
|
int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
|
||||||
|
int styleable GradientColorItem_android_color 0
|
||||||
|
int styleable GradientColorItem_android_offset 1
|
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
3DC78C2AD58397F7
|
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="androidx.core.ktx" >
|
||||||
|
|
||||||
|
<uses-sdk android:minSdkVersion="14" />
|
||||||
|
|
||||||
|
</manifest>
|
@ -0,0 +1,5 @@
|
|||||||
|
aarFormatVersion=1.0
|
||||||
|
aarMetadataVersion=1.0
|
||||||
|
minCompileSdk=33
|
||||||
|
minCompileSdkExtension=0
|
||||||
|
minAndroidGradlePluginVersion=1.0.0
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue