parent
b417aef65d
commit
4df6f8996a
Binary file not shown.
Binary file not shown.
@ -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:GameAtlas"
|
||||
x:Class="GameAtlas.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="GameAtlas.AppShell"
|
||||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:GameAtlas"
|
||||
Shell.FlyoutBehavior="Disabled">
|
||||
|
||||
<ShellContent
|
||||
Title="Home"
|
||||
ContentTemplate="{DataTemplate local:MainPage}"
|
||||
Route="MainPage" />
|
||||
|
||||
</Shell>
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
</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="GameAtlas.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,16 @@
|
||||
using System;
|
||||
using Microsoft.Maui;
|
||||
using Microsoft.Maui.Hosting;
|
||||
|
||||
namespace GameAtlas;
|
||||
|
||||
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="GameAtlas.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:GameAtlas.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="E5F8A2DD-A345-4B99-9B6C-F7203A431F65" 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="GameAtlas.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: 231 B |
After Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 13 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,384 @@
|
||||
<?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="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="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="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="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="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="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="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="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="Background" 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="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="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="Background" 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="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=v6.0", FrameworkDisplayName = ".NET 6.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("GameAtlas")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("GameAtlas")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("GameAtlas")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Android31.0")]
|
||||
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Android21.0")]
|
||||
|
||||
// Généré par la classe MSBuild WriteCodeFragment.
|
||||
|
@ -0,0 +1 @@
|
||||
0e70832dc8717b14c8644faf4e2afe41b2d7179c
|
@ -0,0 +1,41 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.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.RootNamespace = GameAtlas
|
||||
build_property.ProjectDir = C:\Users\relavergne\source\repos\SAE2.01-IHM\GameAtlas\GameAtlas\
|
||||
|
||||
[C:/Users/relavergne/source/repos/SAE2.01-IHM/GameAtlas/GameAtlas/App.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = GameAtlas.App.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = App.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = App.xaml
|
||||
|
||||
[C:/Users/relavergne/source/repos/SAE2.01-IHM/GameAtlas/GameAtlas/AppShell.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = GameAtlas.AppShell.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = AppShell.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = AppShell.xaml
|
||||
|
||||
[C:/Users/relavergne/source/repos/SAE2.01-IHM/GameAtlas/GameAtlas/MainPage.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = GameAtlas.MainPage.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = MainPage.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = MainPage.xaml
|
||||
|
||||
[C:/Users/relavergne/source/repos/SAE2.01-IHM/GameAtlas/GameAtlas/Resources/Styles/Colors.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = GameAtlas.Resources.Styles.Colors.xaml
|
||||
build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml
|
||||
build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml
|
||||
|
||||
[C:/Users/relavergne/source/repos/SAE2.01-IHM/GameAtlas/GameAtlas/Resources/Styles/Styles.xaml]
|
||||
build_metadata.AdditionalFiles.GenKind = Xaml
|
||||
build_metadata.AdditionalFiles.ManifestResourceName = GameAtlas.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=32.0.485
|
||||
monosymbolarchive=false
|
||||
androiduselatestplatformsdk=false
|
||||
targetframeworkversion=v6.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 @@
|
||||
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 @@
|
||||
891B41A04552A097
|
@ -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.lifecycle.viewmodel.savedstate" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
android:targetSdkVersion="31" />
|
||||
|
||||
</manifest>
|
@ -0,0 +1,3 @@
|
||||
aarFormatVersion=1.0
|
||||
aarMetadataVersion=1.0
|
||||
minCompileSdk=31
|
Binary file not shown.
@ -0,0 +1,7 @@
|
||||
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.ViewModel {
|
||||
<init>(androidx.lifecycle.SavedStateHandle);
|
||||
}
|
||||
|
||||
-keepclassmembers,allowobfuscation class * extends androidx.lifecycle.AndroidViewModel {
|
||||
<init>(android.app.Application,androidx.lifecycle.SavedStateHandle);
|
||||
}
|
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
</resources>
|
@ -0,0 +1 @@
|
||||
CAF70776103C27C8
|
@ -0,0 +1,9 @@
|
||||
<?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"
|
||||
android:targetSdkVersion="31" />
|
||||
|
||||
</manifest>
|
@ -0,0 +1,3 @@
|
||||
aarFormatVersion=1.0
|
||||
aarMetadataVersion=1.0
|
||||
minCompileSdk=31
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
</resources>
|
@ -0,0 +1 @@
|
||||
BB86AB41EBF50729
|
@ -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.activity" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
android:targetSdkVersion="31" />
|
||||
|
||||
</manifest>
|
@ -0,0 +1,3 @@
|
||||
aarFormatVersion=1.0
|
||||
aarMetadataVersion=1.0
|
||||
minCompileSdk=31
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
</resources>
|
@ -0,0 +1 @@
|
||||
C34273368E4F57EE
|
@ -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.fragment" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
android:targetSdkVersion="31" />
|
||||
|
||||
</manifest>
|
@ -0,0 +1,3 @@
|
||||
aarFormatVersion=1.0
|
||||
aarMetadataVersion=1.0
|
||||
minCompileSdk=31
|
@ -0,0 +1,17 @@
|
||||
int anim fragment_fast_out_extra_slow_in 0x0
|
||||
int animator fragment_close_enter 0x0
|
||||
int animator fragment_close_exit 0x0
|
||||
int animator fragment_fade_enter 0x0
|
||||
int animator fragment_fade_exit 0x0
|
||||
int animator fragment_open_enter 0x0
|
||||
int animator fragment_open_exit 0x0
|
||||
int id fragment_container_view_tag 0x0
|
||||
int id special_effects_controller_view_tag 0x0
|
||||
int id visible_removing_fragment_view_tag 0x0
|
||||
int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 }
|
||||
int styleable Fragment_android_id 0
|
||||
int styleable Fragment_android_name 1
|
||||
int styleable Fragment_android_tag 2
|
||||
int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 }
|
||||
int styleable FragmentContainerView_android_name 0
|
||||
int styleable FragmentContainerView_android_tag 1
|
Binary file not shown.
@ -0,0 +1,477 @@
|
||||
# Baseline profiles for androidx.fragment
|
||||
|
||||
HSPLandroidx/fragment/R$styleable;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->bumpBackStackNesting(I)V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->commit()I
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->commitInternal(Z)I
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->executeOps()V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->expandOps(Ljava/util/ArrayList;Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->generateOps(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->runOnCommitRunnables()V
|
||||
HSPLandroidx/fragment/app/BackStackRecord;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/DefaultSpecialEffectsController;-><init>(Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/Fragment$1;-><init>(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment$4;-><init>(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment$4;->onFindViewById(I)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment$4;->onHasView()Z
|
||||
HSPLandroidx/fragment/app/Fragment$5;-><init>(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment$5;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/fragment/app/Fragment$AnimationInfo;-><init>()V
|
||||
HSPLandroidx/fragment/app/Fragment;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/Fragment;-><init>()V
|
||||
HSPLandroidx/fragment/app/Fragment;->createFragmentContainer()Landroidx/fragment/app/FragmentContainer;
|
||||
HSPLandroidx/fragment/app/Fragment;->ensureAnimationInfo()Landroidx/fragment/app/Fragment$AnimationInfo;
|
||||
HSPLandroidx/fragment/app/Fragment;->equals(Ljava/lang/Object;)Z
|
||||
HSPLandroidx/fragment/app/Fragment;->getActivity()Landroidx/fragment/app/FragmentActivity;
|
||||
HSPLandroidx/fragment/app/Fragment;->getChildFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/Fragment;->getContext()Landroid/content/Context;
|
||||
HSPLandroidx/fragment/app/Fragment;->getFocusedView()Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment;->getId()I
|
||||
HSPLandroidx/fragment/app/Fragment;->getLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/Fragment;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/fragment/app/Fragment;->getMinimumMaxLifecycleState()I
|
||||
HSPLandroidx/fragment/app/Fragment;->getParentFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/Fragment;->getParentFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/Fragment;->getPostOnViewCreatedAlpha()F
|
||||
HSPLandroidx/fragment/app/Fragment;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/fragment/app/Fragment;->getTag()Ljava/lang/String;
|
||||
HSPLandroidx/fragment/app/Fragment;->getView()Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwner()Landroidx/lifecycle/LifecycleOwner;
|
||||
HSPLandroidx/fragment/app/Fragment;->getViewLifecycleOwnerLiveData()Landroidx/lifecycle/LiveData;
|
||||
HSPLandroidx/fragment/app/Fragment;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/Fragment;->initLifecycle()V
|
||||
HSPLandroidx/fragment/app/Fragment;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/Fragment;->isAdded()Z
|
||||
HSPLandroidx/fragment/app/Fragment;->isMenuVisible()Z
|
||||
HSPLandroidx/fragment/app/Fragment;->noteStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/Fragment;->onActivityCreated(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/app/Activity;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onAttach(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onAttachFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/app/Activity;Landroid/util/AttributeSet;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onInflate(Landroid/content/Context;Landroid/util/AttributeSet;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onPrimaryNavigationFragmentChanged(Z)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onResume()V
|
||||
HSPLandroidx/fragment/app/Fragment;->onStart()V
|
||||
HSPLandroidx/fragment/app/Fragment;->onViewCreated(Landroid/view/View;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->onViewStateRestored(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performActivityCreated(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performAttach()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
|
||||
HSPLandroidx/fragment/app/Fragment;->performCreateView(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->performGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/Fragment;->performPrepareOptionsMenu(Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/Fragment;->performPrimaryNavigationFragmentChanged()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performResume()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performStart()V
|
||||
HSPLandroidx/fragment/app/Fragment;->performViewCreated()V
|
||||
HSPLandroidx/fragment/app/Fragment;->requireContext()Landroid/content/Context;
|
||||
HSPLandroidx/fragment/app/Fragment;->requireView()Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/Fragment;->restoreChildFragmentState(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->restoreViewState()V
|
||||
HSPLandroidx/fragment/app/Fragment;->restoreViewState(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setAnimations(IIII)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setArguments(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setFocusedView(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setNextTransition(I)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setPopDirection(Z)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setPostOnViewCreatedAlpha(F)V
|
||||
HSPLandroidx/fragment/app/Fragment;->setSharedElementNames(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
|
||||
HSPLandroidx/fragment/app/Fragment;->toString()Ljava/lang/String;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;->onContextAvailable(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getActivityResultRegistry()Landroidx/activity/result/ActivityResultRegistry;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getOnBackPressedDispatcher()Landroidx/activity/OnBackPressedDispatcher;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->getViewModelStore()Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetLayoutInflater()Landroid/view/LayoutInflater;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->dispatchFragmentsOnCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->init()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->lambda$init$1$androidx-fragment-app-FragmentActivity(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onAttachFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreate(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreatePanelMenu(ILandroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onCreateView(Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onPostResume()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onPrepareOptionsPanel(Landroid/view/View;Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onPreparePanel(ILandroid/view/View;Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onResume()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onResumeFragments()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onStart()V
|
||||
HSPLandroidx/fragment/app/FragmentActivity;->onStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/FragmentContainer;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentContainer;->instantiate(Landroid/content/Context;Ljava/lang/String;Landroid/os/Bundle;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;-><init>(Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;->addView(Landroid/view/View;ILandroid/view/ViewGroup$LayoutParams;)V
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;->dispatchDraw(Landroid/graphics/Canvas;)V
|
||||
HSPLandroidx/fragment/app/FragmentContainerView;->drawChild(Landroid/graphics/Canvas;Landroid/view/View;J)Z
|
||||
HSPLandroidx/fragment/app/FragmentController;-><init>(Landroidx/fragment/app/FragmentHostCallback;)V
|
||||
HSPLandroidx/fragment/app/FragmentController;->attachHost(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentController;->createController(Landroidx/fragment/app/FragmentHostCallback;)Landroidx/fragment/app/FragmentController;
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchActivityCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchCreate()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchResume()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->dispatchStart()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->execPendingActions()Z
|
||||
HSPLandroidx/fragment/app/FragmentController;->getSupportFragmentManager()Landroidx/fragment/app/FragmentManager;
|
||||
HSPLandroidx/fragment/app/FragmentController;->noteStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/FragmentController;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentFactory;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentFactory;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentFactory;->isFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Z
|
||||
HSPLandroidx/fragment/app/FragmentFactory;->loadClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;
|
||||
HSPLandroidx/fragment/app/FragmentFactory;->loadFragmentClass(Ljava/lang/ClassLoader;Ljava/lang/String;)Ljava/lang/Class;
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;-><init>(Landroid/app/Activity;Landroid/content/Context;Landroid/os/Handler;I)V
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;-><init>(Landroidx/fragment/app/FragmentActivity;)V
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;->getActivity()Landroid/app/Activity;
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;->getContext()Landroid/content/Context;
|
||||
HSPLandroidx/fragment/app/FragmentHostCallback;->getHandler()Landroid/os/Handler;
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;-><init>(Landroidx/fragment/app/FragmentLayoutInflaterFactory;Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewAttachedToWindow(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentLayoutInflaterFactory;->onCreateView(Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;-><init>(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentActivityCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentAttached(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreAttached(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPreCreated(Landroidx/fragment/app/Fragment;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentResumed(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStarted(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewCreated(Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$1;-><init>(Landroidx/fragment/app/FragmentManager;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$2;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$2;->instantiate(Ljava/lang/ClassLoader;Ljava/lang/String;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager$3;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$3;->createController(Landroid/view/ViewGroup;)Landroidx/fragment/app/SpecialEffectsController;
|
||||
HSPLandroidx/fragment/app/FragmentManager$4;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$6;-><init>(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$6;->onAttachFragment(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$7;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$8;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$9;-><init>(Landroidx/fragment/app/FragmentManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentActivityCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreAttached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/content/Context;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPreCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentResumed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStarted(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewCreated(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;Landroid/view/View;Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->addFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->addFragmentOnAttachListener(Landroidx/fragment/app/FragmentOnAttachListener;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->attachController(Landroidx/fragment/app/FragmentHostCallback;Landroidx/fragment/app/FragmentContainer;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->checkForMenus()Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->checkStateLoss()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->cleanupExec()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->collectAllSpecialEffectsController()Ljava/util/Set;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->collectChangedControllers(Ljava/util/ArrayList;II)Ljava/util/Set;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->createOrGetFragmentStateManager(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentStateManager;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchActivityCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchAttach()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchCreate()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchCreateOptionsMenu(Landroid/view/Menu;Landroid/view/MenuInflater;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchOnAttachFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchParentPrimaryNavigationFragmentChanged(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchPrepareOptionsMenu(Landroid/view/Menu;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchPrimaryNavigationFragmentChanged()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchResume()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchStart()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchStateChange(I)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->dispatchViewCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->doPendingDeferredStart()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->enqueueAction(Landroidx/fragment/app/FragmentManager$OpGenerator;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->ensureExecReady(Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->execPendingActions(Z)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->executeOps(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->executeOpsTogether(Ljava/util/ArrayList;Ljava/util/ArrayList;II)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->findFragmentById(I)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->generateOpsForPendingActions(Ljava/util/ArrayList;Ljava/util/ArrayList;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getBackStackEntryCount()I
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getContainer()Landroidx/fragment/app/FragmentContainer;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getFragmentContainer(Landroidx/fragment/app/Fragment;)Landroid/view/ViewGroup;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getFragmentFactory()Landroidx/fragment/app/FragmentFactory;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getHost()Landroidx/fragment/app/FragmentHostCallback;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getLayoutInflaterFactory()Landroid/view/LayoutInflater$Factory2;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getLifecycleCallbacksDispatcher()Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getParent()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getPrimaryNavigationFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getSpecialEffectsControllerFactory()Landroidx/fragment/app/SpecialEffectsControllerFactory;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getStrictModePolicy()Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getViewFragment(Landroid/view/View;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isLoggingEnabled(I)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isMenuAvailable(Landroidx/fragment/app/Fragment;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isParentMenuVisible(Landroidx/fragment/app/Fragment;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isPrimaryNavigation(Landroidx/fragment/app/Fragment;)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isStateAtLeast(I)Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->isStateSaved()Z
|
||||
HSPLandroidx/fragment/app/FragmentManager;->moveToState(IZ)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->noteStateNotSaved()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->performPendingDeferredStart(Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->registerFragmentLifecycleCallbacks(Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->removeRedundantOperationsAndExecute(Ljava/util/ArrayList;Ljava/util/ArrayList;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->scheduleCommit()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->setExitAnimationOrder(Landroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->startPendingDeferredFragments()V
|
||||
HSPLandroidx/fragment/app/FragmentManager;->updateOnBackPressedCallbackEnabled()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerImpl;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel$1;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel$1;->create(Ljava/lang/Class;)Landroidx/lifecycle/ViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;-><init>(Z)V
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->getChildNonConfig(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->getInstance(Landroidx/lifecycle/ViewModelStore;)Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->getViewModelStore(Landroidx/fragment/app/Fragment;)Landroidx/lifecycle/ViewModelStore;
|
||||
HSPLandroidx/fragment/app/FragmentManagerViewModel;->setIsStateSaved(Z)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager$1;-><init>(Landroidx/fragment/app/FragmentStateManager;Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager$1;->onViewAttachedToWindow(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager$2;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;-><init>(Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;Landroidx/fragment/app/FragmentStore;Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->activityCreated()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->addViewToContainer()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->attach()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->computeExpectedState()I
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->create()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->createView()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->ensureInflatedView()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->getFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->moveToExpectedState()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->restoreState(Ljava/lang/ClassLoader;)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->resume()V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->setFragmentManagerState(I)V
|
||||
HSPLandroidx/fragment/app/FragmentStateManager;->start()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;-><init>()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->addFragment(Landroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->burpActive()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->containsActiveFragment(Ljava/lang/String;)Z
|
||||
HSPLandroidx/fragment/app/FragmentStore;->dispatchStateChange(I)V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->findActiveFragment(Ljava/lang/String;)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->findFragmentById(I)Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->findFragmentIndexInContainer(Landroidx/fragment/app/Fragment;)I
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getActiveFragmentStateManagers()Ljava/util/List;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getActiveFragments()Ljava/util/List;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getFragmentStateManager(Ljava/lang/String;)Landroidx/fragment/app/FragmentStateManager;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->getFragments()Ljava/util/List;
|
||||
HSPLandroidx/fragment/app/FragmentStore;->makeActive(Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->moveToExpectedState()V
|
||||
HSPLandroidx/fragment/app/FragmentStore;->setNonConfig(Landroidx/fragment/app/FragmentManagerViewModel;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction$Op;-><init>(ILandroidx/fragment/app/Fragment;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction$Op;-><init>(ILandroidx/fragment/app/Fragment;Z)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;-><init>(Landroidx/fragment/app/FragmentFactory;Ljava/lang/ClassLoader;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->addOp(Landroidx/fragment/app/FragmentTransaction$Op;)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->doAddOp(ILandroidx/fragment/app/Fragment;Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->replace(ILandroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->setPrimaryNavigationFragment(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentTransaction;->setReorderingAllowed(Z)Landroidx/fragment/app/FragmentTransaction;
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;-><init>(Landroidx/fragment/app/Fragment;Landroidx/lifecycle/ViewModelStore;)V
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getLifecycle()Landroidx/lifecycle/Lifecycle;
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->getSavedStateRegistry()Landroidx/savedstate/SavedStateRegistry;
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->initialize()V
|
||||
HSPLandroidx/fragment/app/FragmentViewLifecycleOwner;->performRestore(Landroid/os/Bundle;)V
|
||||
HSPLandroidx/fragment/app/FragmentViewModelLazyKt;->createViewModelLazy(Landroidx/fragment/app/Fragment;Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;Lkotlin/jvm/functions/Function0;)Lkotlin/Lazy;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$1;-><init>(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$1;->run()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$2;-><init>(Landroidx/fragment/app/SpecialEffectsController;Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$2;->run()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$3;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;Landroidx/core/os/CancellationSignal;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->complete()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;->onStart()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$1;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->applyState(Landroid/view/View;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->from(I)Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation$State;->values()[Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;-><init>(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/Fragment;Landroidx/core/os/CancellationSignal;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->addCompletionListener(Ljava/lang/Runnable;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->cancel()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->complete()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFinalState()Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getFragment()Landroidx/fragment/app/Fragment;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->getLifecycleImpact()Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->isCanceled()Z
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController$Operation;->mergeWith(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;-><init>(Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->enqueue(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->enqueueAdd(Landroidx/fragment/app/SpecialEffectsController$Operation$State;Landroidx/fragment/app/FragmentStateManager;)V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->executePendingOperations()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->findPendingOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->findRunningOperation(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/SpecialEffectsController$Operation;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->forceCompleteAllOperations()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->getAwaitingCompletionLifecycleImpact(Landroidx/fragment/app/FragmentStateManager;)Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/FragmentManager;)Landroidx/fragment/app/SpecialEffectsController;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->getOrCreateController(Landroid/view/ViewGroup;Landroidx/fragment/app/SpecialEffectsControllerFactory;)Landroidx/fragment/app/SpecialEffectsController;
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->markPostponedState()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->updateFinalState()V
|
||||
HSPLandroidx/fragment/app/SpecialEffectsController;->updateOperationDirection(Z)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;->$values()[Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag;
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Flag;-><init>(Ljava/lang/String;I)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;-><init>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;-><init>(Lkotlin/jvm/internal/DefaultConstructorMarker;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;-><init>(Ljava/util/Set;Landroidx/fragment/app/strictmode/FragmentStrictMode$OnViolationListener;Ljava/util/Map;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode$Policy;->getFlags$fragment_release()Ljava/util/Set;
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;-><clinit>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;-><init>()V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->getNearestPolicy(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->logIfDebuggingEnabled(Landroidx/fragment/app/strictmode/Violation;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentStrictMode;->onFragmentTagUsage(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/strictmode/FragmentTagUsageViolation;-><init>(Landroidx/fragment/app/Fragment;Landroid/view/ViewGroup;)V
|
||||
HSPLandroidx/fragment/app/strictmode/Violation;-><init>(Landroidx/fragment/app/Fragment;Ljava/lang/String;)V
|
||||
Landroidx/fragment/R$id;
|
||||
Landroidx/fragment/R$styleable;
|
||||
Landroidx/fragment/app/BackStackRecord;
|
||||
Landroidx/fragment/app/DefaultSpecialEffectsController;
|
||||
Landroidx/fragment/app/Fragment$1;
|
||||
Landroidx/fragment/app/Fragment$4;
|
||||
Landroidx/fragment/app/Fragment$5;
|
||||
Landroidx/fragment/app/Fragment$AnimationInfo;
|
||||
Landroidx/fragment/app/Fragment;
|
||||
Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda0;
|
||||
Landroidx/fragment/app/FragmentActivity$$ExternalSyntheticLambda1;
|
||||
Landroidx/fragment/app/FragmentActivity$HostCallbacks;
|
||||
Landroidx/fragment/app/FragmentActivity;
|
||||
Landroidx/fragment/app/FragmentContainer;
|
||||
Landroidx/fragment/app/FragmentContainerView;
|
||||
Landroidx/fragment/app/FragmentController;
|
||||
Landroidx/fragment/app/FragmentFactory;
|
||||
Landroidx/fragment/app/FragmentHostCallback;
|
||||
Landroidx/fragment/app/FragmentLayoutInflaterFactory$1;
|
||||
Landroidx/fragment/app/FragmentLayoutInflaterFactory;
|
||||
Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher$FragmentLifecycleCallbacksHolder;
|
||||
Landroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;
|
||||
Landroidx/fragment/app/FragmentManager$$ExternalSyntheticLambda0;
|
||||
Landroidx/fragment/app/FragmentManager$1;
|
||||
Landroidx/fragment/app/FragmentManager$2;
|
||||
Landroidx/fragment/app/FragmentManager$3;
|
||||
Landroidx/fragment/app/FragmentManager$4;
|
||||
Landroidx/fragment/app/FragmentManager$6;
|
||||
Landroidx/fragment/app/FragmentManager$7;
|
||||
Landroidx/fragment/app/FragmentManager$8;
|
||||
Landroidx/fragment/app/FragmentManager$9;
|
||||
Landroidx/fragment/app/FragmentManager$BackStackEntry;
|
||||
Landroidx/fragment/app/FragmentManager$FragmentIntentSenderContract;
|
||||
Landroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;
|
||||
Landroidx/fragment/app/FragmentManager$OpGenerator;
|
||||
Landroidx/fragment/app/FragmentManager;
|
||||
Landroidx/fragment/app/FragmentManagerImpl;
|
||||
Landroidx/fragment/app/FragmentManagerViewModel$1;
|
||||
Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
Landroidx/fragment/app/FragmentOnAttachListener;
|
||||
Landroidx/fragment/app/FragmentResultOwner;
|
||||
Landroidx/fragment/app/FragmentStateManager$1;
|
||||
Landroidx/fragment/app/FragmentStateManager$2;
|
||||
Landroidx/fragment/app/FragmentStateManager;
|
||||
Landroidx/fragment/app/FragmentStore;
|
||||
Landroidx/fragment/app/FragmentTransaction$Op;
|
||||
Landroidx/fragment/app/FragmentTransaction;
|
||||
Landroidx/fragment/app/FragmentViewLifecycleOwner;
|
||||
Landroidx/fragment/app/FragmentViewModelLazyKt;
|
||||
Landroidx/fragment/app/SpecialEffectsController$1;
|
||||
Landroidx/fragment/app/SpecialEffectsController$2;
|
||||
Landroidx/fragment/app/SpecialEffectsController$3;
|
||||
Landroidx/fragment/app/SpecialEffectsController$FragmentStateManagerOperation;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation$1;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation$LifecycleImpact;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation$State;
|
||||
Landroidx/fragment/app/SpecialEffectsController$Operation;
|
||||
Landroidx/fragment/app/SpecialEffectsController;
|
||||
Landroidx/fragment/app/SpecialEffectsControllerFactory;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode$Flag;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy$Companion;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode$Policy;
|
||||
Landroidx/fragment/app/strictmode/FragmentStrictMode;
|
||||
Landroidx/fragment/app/strictmode/FragmentTagUsageViolation;
|
||||
Landroidx/fragment/app/strictmode/Violation;
|
||||
PLandroidx/fragment/app/Fragment$Api19Impl;->cancelPendingInputEvents(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/Fragment;->getHost()Ljava/lang/Object;
|
||||
PLandroidx/fragment/app/Fragment;->initState()V
|
||||
PLandroidx/fragment/app/Fragment;->onDestroy()V
|
||||
PLandroidx/fragment/app/Fragment;->onDestroyView()V
|
||||
PLandroidx/fragment/app/Fragment;->onDetach()V
|
||||
PLandroidx/fragment/app/Fragment;->onPause()V
|
||||
PLandroidx/fragment/app/Fragment;->onStop()V
|
||||
PLandroidx/fragment/app/Fragment;->performDestroy()V
|
||||
PLandroidx/fragment/app/Fragment;->performDestroyView()V
|
||||
PLandroidx/fragment/app/Fragment;->performDetach()V
|
||||
PLandroidx/fragment/app/Fragment;->performPause()V
|
||||
PLandroidx/fragment/app/Fragment;->performStop()V
|
||||
PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Landroidx/fragment/app/FragmentActivity;
|
||||
PLandroidx/fragment/app/FragmentActivity$HostCallbacks;->onGetHost()Ljava/lang/Object;
|
||||
PLandroidx/fragment/app/FragmentActivity;->markFragmentsCreated()V
|
||||
PLandroidx/fragment/app/FragmentActivity;->markState(Landroidx/fragment/app/FragmentManager;Landroidx/lifecycle/Lifecycle$State;)Z
|
||||
PLandroidx/fragment/app/FragmentActivity;->onDestroy()V
|
||||
PLandroidx/fragment/app/FragmentActivity;->onPause()V
|
||||
PLandroidx/fragment/app/FragmentActivity;->onStop()V
|
||||
PLandroidx/fragment/app/FragmentContainerView;->addDisappearingFragmentView(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/FragmentContainerView;->removeView(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/FragmentController;->dispatchDestroy()V
|
||||
PLandroidx/fragment/app/FragmentController;->dispatchPause()V
|
||||
PLandroidx/fragment/app/FragmentController;->dispatchStop()V
|
||||
PLandroidx/fragment/app/FragmentLayoutInflaterFactory$1;->onViewDetachedFromWindow(Landroid/view/View;)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDestroyed(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentDetached(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentPaused(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentStopped(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentLifecycleCallbacksDispatcher;->dispatchOnFragmentViewDestroyed(Landroidx/fragment/app/Fragment;Z)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentDetached(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentPaused(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentStopped(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager$FragmentLifecycleCallbacks;->onFragmentViewDestroyed(Landroidx/fragment/app/FragmentManager;Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManager;->clearBackStackStateViewModels()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchDestroy()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchDestroyView()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchPause()V
|
||||
PLandroidx/fragment/app/FragmentManager;->dispatchStop()V
|
||||
PLandroidx/fragment/app/FragmentManager;->endAnimatingAwayFragments()V
|
||||
PLandroidx/fragment/app/FragmentManager;->getFragments()Ljava/util/List;
|
||||
PLandroidx/fragment/app/FragmentManager;->isDestroyed()Z
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigState(Landroidx/fragment/app/Fragment;)V
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->clearNonConfigStateInternal(Ljava/lang/String;)V
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->isCleared()Z
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->onCleared()V
|
||||
PLandroidx/fragment/app/FragmentManagerViewModel;->shouldDestroy(Landroidx/fragment/app/Fragment;)Z
|
||||
PLandroidx/fragment/app/FragmentStateManager;->destroy()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->destroyFragmentView()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->detach()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->pause()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->saveViewState()V
|
||||
PLandroidx/fragment/app/FragmentStateManager;->stop()V
|
||||
PLandroidx/fragment/app/FragmentStore;->getNonConfig()Landroidx/fragment/app/FragmentManagerViewModel;
|
||||
PLandroidx/fragment/app/FragmentStore;->makeInactive(Landroidx/fragment/app/FragmentStateManager;)V
|
||||
PLandroidx/fragment/app/FragmentViewLifecycleOwner;->performSave(Landroid/os/Bundle;)V
|
||||
PLandroidx/fragment/app/FragmentViewLifecycleOwner;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V
|
||||
PLandroidx/fragment/app/SpecialEffectsController;->enqueueRemove(Landroidx/fragment/app/FragmentStateManager;)V
|
Binary file not shown.
@ -0,0 +1,19 @@
|
||||
# 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.
|
||||
|
||||
# The default FragmentFactory creates Fragment instances using reflection
|
||||
-if public class ** extends androidx.fragment.app.Fragment
|
||||
-keepclasseswithmembers,allowobfuscation public class <1> {
|
||||
public <init>();
|
||||
}
|
Binary file not shown.
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<!--Taken from https://googleplex-android.googlesource.com/platform/frameworks/base/+/HEAD/core/res/res/interpolator/fast_out_extra_slow_in.xml-->
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:pathData="M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1"/>
|
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<!--Taken from https://googleplex-android.googlesource.com/platform/frameworks/base/+/HEAD/core/res/res/interpolator/decelerate_quad.xml-->
|
||||
<decelerateInterpolator/>
|
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="0.0" android:valueTo="0.0"
|
||||
android:duration="66" />
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="0.0" android:valueTo="1.0"
|
||||
android:duration="50"/>
|
||||
</set>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleX"
|
||||
android:valueFrom="1.1" android:valueTo="1.0"
|
||||
android:duration="300"/>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleY"
|
||||
android:valueFrom="1.1" android:valueTo="1.0"
|
||||
android:duration="300"/>
|
||||
</set>
|
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="1.0" android:valueTo="1.0"
|
||||
android:duration="66" />
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="1.0" android:valueTo="0.0"
|
||||
android:duration="50"/>
|
||||
</set>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleX"
|
||||
android:valueFrom="1.0" android:valueTo="0.9"
|
||||
android:duration="300"/>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleY"
|
||||
android:valueFrom="1.0" android:valueTo="0.9"
|
||||
android:duration="300"/>
|
||||
</set>
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="0.0" android:valueTo="1.0"
|
||||
android:duration="150" />
|
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="1.0" android:valueTo="0.0"
|
||||
android:duration="150" />
|
@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="0.0" android:valueTo="0.0"
|
||||
android:duration="50" />
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="0.0" android:valueTo="1.0"
|
||||
android:duration="50"/>
|
||||
</set>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleX"
|
||||
android:valueFrom="0.85" android:valueTo="1.0"
|
||||
android:duration="300"/>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleY"
|
||||
android:valueFrom="0.85" android:valueTo="1.0"
|
||||
android:duration="300"/>
|
||||
|
||||
</set>
|
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright 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.
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="1.0" android:valueTo="1.0"
|
||||
android:duration="50" />
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@android:anim/linear_interpolator"
|
||||
android:propertyName="alpha"
|
||||
android:valueFrom="1.0" android:valueTo="0.0"
|
||||
android:duration="50"/>
|
||||
</set>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleX"
|
||||
android:valueFrom="1.0" android:valueTo="1.15"
|
||||
android:duration="300"/>
|
||||
|
||||
<objectAnimator
|
||||
android:interpolator="@anim/fragment_fast_out_extra_slow_in"
|
||||
android:propertyName="scaleY"
|
||||
android:valueFrom="1.0" android:valueTo="1.15"
|
||||
android:duration="300"/>
|
||||
</set>
|
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<item name="fragment_container_view_tag" type="id"/>
|
||||
<item name="special_effects_controller_view_tag" type="id"/>
|
||||
<item name="visible_removing_fragment_view_tag" type="id"/>
|
||||
<declare-styleable name="Fragment">
|
||||
<attr name="android:name"/>
|
||||
<attr name="android:id"/>
|
||||
<attr name="android:tag"/>
|
||||
</declare-styleable>
|
||||
<declare-styleable name="FragmentContainerView">
|
||||
<attr name="android:name"/>
|
||||
<attr name="android:tag"/>
|
||||
</declare-styleable>
|
||||
</resources>
|
@ -0,0 +1 @@
|
||||
ADC14C1279024346
|
@ -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.viewpager2" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
android:targetSdkVersion="28" />
|
||||
|
||||
</manifest>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue