├── Chapter10 └── AppLifecycle │ ├── .vs │ └── AppLifecycle │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo │ ├── AppLifecycle.sln │ └── AppLifecycle │ ├── AppLifecycle.Android │ ├── AppLifecycle.Android.csproj │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ ├── Tabbar.xml │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml │ ├── AppLifecycle.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppLifecycle.UWP.csproj │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── AppLifecycle.iOS │ ├── AppDelegate.cs │ ├── AppLifecycle.iOS.csproj │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── AppLifecycle │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppLifecycle.csproj │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ └── MainPage.xaml.cs ├── Chapter4 ├── .vs │ └── Layouts │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── Layouts.sln └── Layouts │ ├── Layouts.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── Layouts.Android.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ ├── Tabbar.xml │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml │ ├── Layouts.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── Layouts.UWP.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Layouts.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Layouts.iOS.csproj │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── Layouts │ ├── AbsoluteLayoutExample.xaml │ ├── AbsoluteLayoutExample.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── ContentViewExample.xaml │ ├── ContentViewExample.xaml.cs │ ├── FlexLayoutExample.xaml │ ├── FlexLayoutExample.xaml.cs │ ├── FrameExample.xaml │ ├── FrameExample.xaml.cs │ ├── GridExamplePage.xaml │ ├── GridExamplePage.xaml.cs │ ├── Layouts.csproj │ ├── Layouts.csproj.user │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── RelativeLayoutExample.xaml │ ├── RelativeLayoutExample.xaml.cs │ ├── ScrollViewExample.xaml │ ├── ScrollViewExample.xaml.cs │ ├── StackLayoutExample.xaml │ └── StackLayoutExample.xaml.cs ├── Chapter5 ├── .vs │ └── CommonViews │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo ├── CommonViews.sln ├── CommonViews │ ├── CommonViews.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── CommonViews.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ │ ├── Tabbar.xml │ │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── icon.xml │ │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── icon.png │ │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ └── obj │ │ │ ├── CommonViews.Android.csproj.nuget.dgspec.json │ │ │ ├── CommonViews.Android.csproj.nuget.g.props │ │ │ ├── CommonViews.Android.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ ├── 90 │ │ │ │ ├── CommonViews.Android.csprojAssemblyReference.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── MonoAndroid,Version=v9.0.AssemblyAttributes.cs │ │ │ │ ├── designtime │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ ├── build.props │ │ │ │ │ └── libraryprojectimports.cache │ │ │ │ ├── lp │ │ │ │ │ ├── 0 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ └── formsviewgroup.jar │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ └── android.arch.core.common.jar │ │ │ │ │ ├── 2 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 3 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ └── android.arch.lifecycle.common.jar │ │ │ │ │ ├── 4 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 5 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 6 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 7 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 8 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 9 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ └── com.android.support.support-annotations.jar │ │ │ │ │ ├── 10 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 11 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ └── com.android.support.collections.jar │ │ │ │ │ ├── 12 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ │ └── ResultReceiver.aidl │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ │ │ └── notification_tile_bg.xml │ │ │ │ │ │ │ ├── layout-v16 │ │ │ │ │ │ │ └── notification_template_custom_big.xml │ │ │ │ │ │ │ ├── layout-v21 │ │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ │ └── notification_template_part_time.xml │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 13 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 14 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 15 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 16 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 17 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── browser_actions_context_menu_page.xml │ │ │ │ │ │ │ └── browser_actions_context_menu_row.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 18 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 19 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ └── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ ├── design_snackbar_in.xml │ │ │ │ │ │ │ └── design_snackbar_out.xml │ │ │ │ │ │ │ ├── animator-v21 │ │ │ │ │ │ │ └── design_appbar_state_list_animator.xml │ │ │ │ │ │ │ ├── animator │ │ │ │ │ │ │ ├── design_fab_hide_motion_spec.xml │ │ │ │ │ │ │ ├── design_fab_show_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_btn_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_btn_unelevated_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_chip_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_fab_hide_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_fab_show_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_fab_transformation_sheet_collapse_spec.xml │ │ │ │ │ │ │ └── mtrl_fab_transformation_sheet_expand_spec.xml │ │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ └── design_tint_password_toggle.xml │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ ├── design_error.xml │ │ │ │ │ │ │ ├── design_tint_password_toggle.xml │ │ │ │ │ │ │ ├── mtrl_bottom_nav_colored_item_tint.xml │ │ │ │ │ │ │ ├── mtrl_bottom_nav_item_tint.xml │ │ │ │ │ │ │ ├── mtrl_btn_bg_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_btn_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_btn_stroke_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_btn_text_btn_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_btn_text_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_chip_background_color.xml │ │ │ │ │ │ │ ├── mtrl_chip_close_icon_tint.xml │ │ │ │ │ │ │ ├── mtrl_chip_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_chip_text_color.xml │ │ │ │ │ │ │ ├── mtrl_fab_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_tabs_colored_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector_colored.xml │ │ │ │ │ │ │ ├── mtrl_tabs_legacy_text_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_tabs_ripple_color.xml │ │ │ │ │ │ │ └── mtrl_text_btn_text_color_selector.xml │ │ │ │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ │ │ │ ├── design_ic_visibility.xml │ │ │ │ │ │ │ └── design_ic_visibility_off.xml │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── avd_hide_password.xml │ │ │ │ │ │ │ ├── avd_show_password.xml │ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ │ └── design_password_eye.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ │ ├── design_fab_background.xml │ │ │ │ │ │ │ ├── design_password_eye.xml │ │ │ │ │ │ │ ├── design_snackbar_background.xml │ │ │ │ │ │ │ ├── ic_mtrl_chip_checked_black.xml │ │ │ │ │ │ │ ├── ic_mtrl_chip_checked_circle.xml │ │ │ │ │ │ │ ├── ic_mtrl_chip_close_circle.xml │ │ │ │ │ │ │ ├── mtrl_snackbar_background.xml │ │ │ │ │ │ │ ├── mtrl_tabs_default_indicator.xml │ │ │ │ │ │ │ └── navigation_empty_icon.xml │ │ │ │ │ │ │ ├── interpolator-v21 │ │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ │ ├── interpolator │ │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ │ ├── mtrl_linear.xml │ │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ │ └── mtrl_layout_snackbar.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── design_bottom_navigation_item.xml │ │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml │ │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ │ ├── design_layout_snackbar_include.xml │ │ │ │ │ │ │ ├── design_layout_tab_icon.xml │ │ │ │ │ │ │ ├── design_layout_tab_text.xml │ │ │ │ │ │ │ ├── design_menu_item_action_area.xml │ │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ │ ├── design_navigation_menu_item.xml │ │ │ │ │ │ │ ├── design_text_input_password_icon.xml │ │ │ │ │ │ │ ├── mtrl_layout_snackbar.xml │ │ │ │ │ │ │ └── mtrl_layout_snackbar_include.xml │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 20 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 21 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 22 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 23 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 24 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 25 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 26 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ │ ├── MediaDescriptionCompat.aidl │ │ │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml │ │ │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ │ └── notification_template_media_custom.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 27 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 28 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 29 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 30 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 31 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 32 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ │ │ ├── abc_tooltip_enter.xml │ │ │ │ │ │ │ └── abc_tooltip_exit.xml │ │ │ │ │ │ │ ├── color-v21 │ │ │ │ │ │ │ └── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ └── abc_list_divider_material.xml │ │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ │ ├── drawable-watch-v20 │ │ │ │ │ │ │ └── abc_dialog_material_background.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_divider_material.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ │ ├── abc_vector_test.xml │ │ │ │ │ │ │ ├── tooltip_frame_dark.xml │ │ │ │ │ │ │ └── tooltip_frame_light.xml │ │ │ │ │ │ │ ├── layout-v26 │ │ │ │ │ │ │ └── abc_screen_toolbar.xml │ │ │ │ │ │ │ ├── layout-watch-v20 │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ └── abc_alert_dialog_title_material.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ │ │ ├── abc_cascading_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ │ ├── abc_tooltip.xml │ │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 33 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 34 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 35 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 36 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── androidx │ │ │ │ │ │ │ │ └── versionedparcelable │ │ │ │ │ │ │ │ └── ParcelImpl.aidl │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 37 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 38 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ │ ├── compiled.flata │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ └── xamarin_essentials_fileprovider_file_paths.xml │ │ │ │ │ ├── 39 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── enterfromleft.xml │ │ │ │ │ │ │ ├── enterfromright.xml │ │ │ │ │ │ │ ├── exittoleft.xml │ │ │ │ │ │ │ └── exittoright.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── bottomtablayout.xml │ │ │ │ │ │ │ ├── flyoutcontent.xml │ │ │ │ │ │ │ ├── rootlayout.xml │ │ │ │ │ │ │ └── shellcontent.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── attrs.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── 0.stamp │ │ │ │ │ ├── 1.stamp │ │ │ │ │ ├── 10.stamp │ │ │ │ │ ├── 11.stamp │ │ │ │ │ ├── 12.stamp │ │ │ │ │ ├── 13.stamp │ │ │ │ │ ├── 14.stamp │ │ │ │ │ ├── 15.stamp │ │ │ │ │ ├── 16.stamp │ │ │ │ │ ├── 17.stamp │ │ │ │ │ ├── 18.stamp │ │ │ │ │ ├── 19.stamp │ │ │ │ │ ├── 2.stamp │ │ │ │ │ ├── 20.stamp │ │ │ │ │ ├── 21.stamp │ │ │ │ │ ├── 22.stamp │ │ │ │ │ ├── 23.stamp │ │ │ │ │ ├── 24.stamp │ │ │ │ │ ├── 25.stamp │ │ │ │ │ ├── 26.stamp │ │ │ │ │ ├── 27.stamp │ │ │ │ │ ├── 28.stamp │ │ │ │ │ ├── 29.stamp │ │ │ │ │ ├── 3.stamp │ │ │ │ │ ├── 30.stamp │ │ │ │ │ ├── 31.stamp │ │ │ │ │ ├── 32.stamp │ │ │ │ │ ├── 33.stamp │ │ │ │ │ ├── 34.stamp │ │ │ │ │ ├── 35.stamp │ │ │ │ │ ├── 36.stamp │ │ │ │ │ ├── 37.stamp │ │ │ │ │ ├── 38.stamp │ │ │ │ │ ├── 39.stamp │ │ │ │ │ ├── 4.stamp │ │ │ │ │ ├── 5.stamp │ │ │ │ │ ├── 6.stamp │ │ │ │ │ ├── 7.stamp │ │ │ │ │ ├── 8.stamp │ │ │ │ │ ├── 9.stamp │ │ │ │ │ └── map.cache │ │ │ │ └── stamp │ │ │ │ │ └── _ResolveLibraryProjectImports.stamp │ │ │ └── 100 │ │ │ │ ├── CommonViews.Android.csproj.FileListAbsolute.txt │ │ │ │ ├── CommonViews.Android.csprojAssemblyReference.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── MonoAndroid,Version=v10.0.AssemblyAttributes.cs │ │ │ │ ├── build.force │ │ │ │ ├── designtime │ │ │ │ ├── Resource.designer.cs │ │ │ │ ├── build.props │ │ │ │ └── libraryprojectimports.cache │ │ │ │ ├── lp │ │ │ │ ├── 0 │ │ │ │ │ └── jl │ │ │ │ │ │ └── formsviewgroup.jar │ │ │ │ ├── 43 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── xamarin_essentials_fileprovider_file_paths.xml │ │ │ │ ├── 44 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── enterfromleft.xml │ │ │ │ │ │ ├── enterfromright.xml │ │ │ │ │ │ ├── exittoleft.xml │ │ │ │ │ │ └── exittoright.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── bottomtablayout.xml │ │ │ │ │ │ ├── fallbacktabbardonotuse.xml │ │ │ │ │ │ ├── fallbacktoolbardonotuse.xml │ │ │ │ │ │ ├── flyoutcontent.xml │ │ │ │ │ │ ├── rootlayout.xml │ │ │ │ │ │ ├── shellcontent.xml │ │ │ │ │ │ ├── tabbar.xml │ │ │ │ │ │ └── toolbar.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── attrs.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ ├── 48 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ └── androidx │ │ │ │ │ │ │ └── versionedparcelable │ │ │ │ │ │ │ └── ParcelImpl.aidl │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── 49 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── 50 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ └── ResultReceiver.aidl │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ │ └── notification_tile_bg.xml │ │ │ │ │ │ ├── layout-v16 │ │ │ │ │ │ └── notification_template_custom_big.xml │ │ │ │ │ │ ├── layout-v21 │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── custom_dialog.xml │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ └── notification_template_part_time.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 51 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 52 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 53 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 54 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 55 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── 56 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 57 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 58 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 59 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── 60 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 61 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ └── fragment_fast_out_extra_slow_in.xml │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── fragment_close_enter.xml │ │ │ │ │ │ ├── fragment_close_exit.xml │ │ │ │ │ │ ├── fragment_fade_enter.xml │ │ │ │ │ │ ├── fragment_fade_exit.xml │ │ │ │ │ │ ├── fragment_fast_out_extra_slow_in.xml │ │ │ │ │ │ ├── fragment_open_enter.xml │ │ │ │ │ │ └── fragment_open_exit.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 62 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 63 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 64 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 65 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── proguard.txt │ │ │ │ ├── 66 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 67 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 68 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 69 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 70 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 71 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── abc_vector_test.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 72 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ │ ├── abc_tooltip_enter.xml │ │ │ │ │ │ ├── abc_tooltip_exit.xml │ │ │ │ │ │ ├── btn_checkbox_to_checked_box_inner_merged_animation.xml │ │ │ │ │ │ ├── btn_checkbox_to_checked_box_outer_merged_animation.xml │ │ │ │ │ │ ├── btn_checkbox_to_checked_icon_null_animation.xml │ │ │ │ │ │ ├── btn_checkbox_to_unchecked_box_inner_merged_animation.xml │ │ │ │ │ │ ├── btn_checkbox_to_unchecked_check_path_merged_animation.xml │ │ │ │ │ │ ├── btn_checkbox_to_unchecked_icon_null_animation.xml │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_dot_group_animation.xml │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_ring_outer_animation.xml │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_ring_outer_path_animation.xml │ │ │ │ │ │ ├── btn_radio_to_on_mtrl_dot_group_animation.xml │ │ │ │ │ │ ├── btn_radio_to_on_mtrl_ring_outer_animation.xml │ │ │ │ │ │ └── btn_radio_to_on_mtrl_ring_outer_path_animation.xml │ │ │ │ │ │ ├── color-v21 │ │ │ │ │ │ └── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ └── abc_list_divider_material.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-watch-v20 │ │ │ │ │ │ └── abc_dialog_material_background.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ ├── abc_btn_check_material_anim.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ ├── abc_btn_radio_material_anim.xml │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ ├── abc_list_divider_material.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ ├── btn_checkbox_checked_mtrl.xml │ │ │ │ │ │ ├── btn_checkbox_checked_to_unchecked_mtrl_animation.xml │ │ │ │ │ │ ├── btn_checkbox_unchecked_mtrl.xml │ │ │ │ │ │ ├── btn_checkbox_unchecked_to_checked_mtrl_animation.xml │ │ │ │ │ │ ├── btn_radio_off_mtrl.xml │ │ │ │ │ │ ├── btn_radio_off_to_on_mtrl_animation.xml │ │ │ │ │ │ ├── btn_radio_on_mtrl.xml │ │ │ │ │ │ ├── btn_radio_on_to_off_mtrl_animation.xml │ │ │ │ │ │ ├── tooltip_frame_dark.xml │ │ │ │ │ │ └── tooltip_frame_light.xml │ │ │ │ │ │ ├── interpolator │ │ │ │ │ │ ├── btn_checkbox_checked_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ ├── btn_checkbox_checked_mtrl_animation_interpolator_1.xml │ │ │ │ │ │ ├── btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ ├── btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ ├── btn_radio_to_on_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ └── fast_out_slow_in.xml │ │ │ │ │ │ ├── layout-v26 │ │ │ │ │ │ └── abc_screen_toolbar.xml │ │ │ │ │ │ ├── layout-watch-v20 │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ └── abc_alert_dialog_title_material.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ │ ├── abc_cascading_menu_item_layout.xml │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ ├── abc_tooltip.xml │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 73 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ ├── mtrl_bottom_sheet_slide_in.xml │ │ │ │ │ │ └── mtrl_bottom_sheet_slide_out.xml │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ ├── design_snackbar_in.xml │ │ │ │ │ │ ├── design_snackbar_out.xml │ │ │ │ │ │ ├── mtrl_bottom_sheet_slide_in.xml │ │ │ │ │ │ ├── mtrl_bottom_sheet_slide_out.xml │ │ │ │ │ │ └── mtrl_card_lowers_interpolator.xml │ │ │ │ │ │ ├── animator-v21 │ │ │ │ │ │ └── design_appbar_state_list_animator.xml │ │ │ │ │ │ ├── animator │ │ │ │ │ │ ├── design_fab_hide_motion_spec.xml │ │ │ │ │ │ ├── design_fab_show_motion_spec.xml │ │ │ │ │ │ ├── mtrl_btn_state_list_anim.xml │ │ │ │ │ │ ├── mtrl_btn_unelevated_state_list_anim.xml │ │ │ │ │ │ ├── mtrl_card_state_list_anim.xml │ │ │ │ │ │ ├── mtrl_chip_state_list_anim.xml │ │ │ │ │ │ ├── mtrl_extended_fab_change_size_motion_spec.xml │ │ │ │ │ │ ├── mtrl_extended_fab_hide_motion_spec.xml │ │ │ │ │ │ ├── mtrl_extended_fab_show_motion_spec.xml │ │ │ │ │ │ ├── mtrl_extended_fab_state_list_animator.xml │ │ │ │ │ │ ├── mtrl_fab_hide_motion_spec.xml │ │ │ │ │ │ ├── mtrl_fab_show_motion_spec.xml │ │ │ │ │ │ ├── mtrl_fab_transformation_sheet_collapse_spec.xml │ │ │ │ │ │ └── mtrl_fab_transformation_sheet_expand_spec.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── checkbox_themeable_attribute_color.xml │ │ │ │ │ │ ├── design_box_stroke_color.xml │ │ │ │ │ │ ├── design_error.xml │ │ │ │ │ │ ├── design_icon_tint.xml │ │ │ │ │ │ ├── material_on_background_disabled.xml │ │ │ │ │ │ ├── material_on_background_emphasis_high_type.xml │ │ │ │ │ │ ├── material_on_background_emphasis_medium.xml │ │ │ │ │ │ ├── material_on_primary_disabled.xml │ │ │ │ │ │ ├── material_on_primary_emphasis_high_type.xml │ │ │ │ │ │ ├── material_on_primary_emphasis_medium.xml │ │ │ │ │ │ ├── material_on_surface_disabled.xml │ │ │ │ │ │ ├── material_on_surface_emphasis_high_type.xml │ │ │ │ │ │ ├── material_on_surface_emphasis_medium.xml │ │ │ │ │ │ ├── mtrl_bottom_nav_colored_item_tint.xml │ │ │ │ │ │ ├── mtrl_bottom_nav_colored_ripple_color.xml │ │ │ │ │ │ ├── mtrl_bottom_nav_item_tint.xml │ │ │ │ │ │ ├── mtrl_bottom_nav_ripple_color.xml │ │ │ │ │ │ ├── mtrl_btn_bg_color_selector.xml │ │ │ │ │ │ ├── mtrl_btn_ripple_color.xml │ │ │ │ │ │ ├── mtrl_btn_stroke_color_selector.xml │ │ │ │ │ │ ├── mtrl_btn_text_btn_bg_color_selector.xml │ │ │ │ │ │ ├── mtrl_btn_text_btn_ripple_color.xml │ │ │ │ │ │ ├── mtrl_btn_text_color_selector.xml │ │ │ │ │ │ ├── mtrl_calendar_item_stroke_color.xml │ │ │ │ │ │ ├── mtrl_calendar_selected_range.xml │ │ │ │ │ │ ├── mtrl_card_view_foreground.xml │ │ │ │ │ │ ├── mtrl_card_view_ripple.xml │ │ │ │ │ │ ├── mtrl_chip_background_color.xml │ │ │ │ │ │ ├── mtrl_chip_close_icon_tint.xml │ │ │ │ │ │ ├── mtrl_chip_ripple_color.xml │ │ │ │ │ │ ├── mtrl_chip_surface_color.xml │ │ │ │ │ │ ├── mtrl_chip_text_color.xml │ │ │ │ │ │ ├── mtrl_choice_chip_background_color.xml │ │ │ │ │ │ ├── mtrl_choice_chip_ripple_color.xml │ │ │ │ │ │ ├── mtrl_choice_chip_text_color.xml │ │ │ │ │ │ ├── mtrl_error.xml │ │ │ │ │ │ ├── mtrl_extended_fab_bg_color_selector.xml │ │ │ │ │ │ ├── mtrl_extended_fab_ripple_color.xml │ │ │ │ │ │ ├── mtrl_extended_fab_text_color_selector.xml │ │ │ │ │ │ ├── mtrl_fab_ripple_color.xml │ │ │ │ │ │ ├── mtrl_filled_background_color.xml │ │ │ │ │ │ ├── mtrl_filled_icon_tint.xml │ │ │ │ │ │ ├── mtrl_filled_stroke_color.xml │ │ │ │ │ │ ├── mtrl_indicator_text_color.xml │ │ │ │ │ │ ├── mtrl_navigation_item_background_color.xml │ │ │ │ │ │ ├── mtrl_navigation_item_icon_tint.xml │ │ │ │ │ │ ├── mtrl_navigation_item_text_color.xml │ │ │ │ │ │ ├── mtrl_on_primary_text_btn_text_color_selector.xml │ │ │ │ │ │ ├── mtrl_outlined_icon_tint.xml │ │ │ │ │ │ ├── mtrl_outlined_stroke_color.xml │ │ │ │ │ │ ├── mtrl_popupmenu_overlay_color.xml │ │ │ │ │ │ ├── mtrl_tabs_colored_ripple_color.xml │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector.xml │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector_colored.xml │ │ │ │ │ │ ├── mtrl_tabs_legacy_text_color_selector.xml │ │ │ │ │ │ ├── mtrl_tabs_ripple_color.xml │ │ │ │ │ │ ├── mtrl_text_btn_text_color_selector.xml │ │ │ │ │ │ ├── test_mtrl_calendar_day.xml │ │ │ │ │ │ └── test_mtrl_calendar_day_selected.xml │ │ │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ │ │ ├── design_ic_visibility.xml │ │ │ │ │ │ └── design_ic_visibility_off.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── avd_hide_password.xml │ │ │ │ │ │ ├── avd_show_password.xml │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ └── design_password_eye.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── mtrl_popupmenu_background_dark.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ ├── design_fab_background.xml │ │ │ │ │ │ ├── design_password_eye.xml │ │ │ │ │ │ ├── design_snackbar_background.xml │ │ │ │ │ │ ├── ic_calendar_black_24dp.xml │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ ├── ic_edit_black_24dp.xml │ │ │ │ │ │ ├── ic_keyboard_arrow_left_black_24dp.xml │ │ │ │ │ │ ├── ic_keyboard_arrow_right_black_24dp.xml │ │ │ │ │ │ ├── ic_menu_arrow_down_black_24dp.xml │ │ │ │ │ │ ├── ic_menu_arrow_up_black_24dp.xml │ │ │ │ │ │ ├── ic_mtrl_checked_circle.xml │ │ │ │ │ │ ├── ic_mtrl_chip_checked_black.xml │ │ │ │ │ │ ├── ic_mtrl_chip_checked_circle.xml │ │ │ │ │ │ ├── ic_mtrl_chip_close_circle.xml │ │ │ │ │ │ ├── mtrl_dialog_background.xml │ │ │ │ │ │ ├── mtrl_dropdown_arrow.xml │ │ │ │ │ │ ├── mtrl_ic_arrow_drop_down.xml │ │ │ │ │ │ ├── mtrl_ic_arrow_drop_up.xml │ │ │ │ │ │ ├── mtrl_ic_cancel.xml │ │ │ │ │ │ ├── mtrl_ic_error.xml │ │ │ │ │ │ ├── mtrl_popupmenu_background.xml │ │ │ │ │ │ ├── mtrl_popupmenu_background_dark.xml │ │ │ │ │ │ ├── mtrl_tabs_default_indicator.xml │ │ │ │ │ │ ├── navigation_empty_icon.xml │ │ │ │ │ │ └── test_custom_background.xml │ │ │ │ │ │ ├── interpolator-v21 │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ ├── interpolator │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ ├── mtrl_linear.xml │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ └── mtrl_picker_header_dialog.xml │ │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ └── mtrl_layout_snackbar.xml │ │ │ │ │ │ ├── layout-v26 │ │ │ │ │ │ └── mtrl_calendar_month.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── design_bottom_navigation_item.xml │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ ├── design_layout_snackbar_include.xml │ │ │ │ │ │ ├── design_layout_tab_icon.xml │ │ │ │ │ │ ├── design_layout_tab_text.xml │ │ │ │ │ │ ├── design_menu_item_action_area.xml │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ ├── design_navigation_menu_item.xml │ │ │ │ │ │ ├── design_text_input_end_icon.xml │ │ │ │ │ │ ├── design_text_input_start_icon.xml │ │ │ │ │ │ ├── mtrl_alert_dialog.xml │ │ │ │ │ │ ├── mtrl_alert_dialog_actions.xml │ │ │ │ │ │ ├── mtrl_alert_dialog_title.xml │ │ │ │ │ │ ├── mtrl_alert_select_dialog_item.xml │ │ │ │ │ │ ├── mtrl_alert_select_dialog_multichoice.xml │ │ │ │ │ │ ├── mtrl_alert_select_dialog_singlechoice.xml │ │ │ │ │ │ ├── mtrl_calendar_day.xml │ │ │ │ │ │ ├── mtrl_calendar_day_of_week.xml │ │ │ │ │ │ ├── mtrl_calendar_days_of_week.xml │ │ │ │ │ │ ├── mtrl_calendar_horizontal.xml │ │ │ │ │ │ ├── mtrl_calendar_month.xml │ │ │ │ │ │ ├── mtrl_calendar_month_labeled.xml │ │ │ │ │ │ ├── mtrl_calendar_month_navigation.xml │ │ │ │ │ │ ├── mtrl_calendar_months.xml │ │ │ │ │ │ ├── mtrl_calendar_vertical.xml │ │ │ │ │ │ ├── mtrl_calendar_year.xml │ │ │ │ │ │ ├── mtrl_layout_snackbar.xml │ │ │ │ │ │ ├── mtrl_layout_snackbar_include.xml │ │ │ │ │ │ ├── mtrl_picker_actions.xml │ │ │ │ │ │ ├── mtrl_picker_dialog.xml │ │ │ │ │ │ ├── mtrl_picker_fullscreen.xml │ │ │ │ │ │ ├── mtrl_picker_header_dialog.xml │ │ │ │ │ │ ├── mtrl_picker_header_fullscreen.xml │ │ │ │ │ │ ├── mtrl_picker_header_selection_text.xml │ │ │ │ │ │ ├── mtrl_picker_header_title_text.xml │ │ │ │ │ │ ├── mtrl_picker_header_toggle.xml │ │ │ │ │ │ ├── mtrl_picker_text_input_date.xml │ │ │ │ │ │ ├── mtrl_picker_text_input_date_range.xml │ │ │ │ │ │ ├── test_action_chip.xml │ │ │ │ │ │ ├── test_design_checkbox.xml │ │ │ │ │ │ ├── test_reflow_chipgroup.xml │ │ │ │ │ │ ├── test_toolbar.xml │ │ │ │ │ │ ├── test_toolbar_custom_background.xml │ │ │ │ │ │ ├── test_toolbar_elevation.xml │ │ │ │ │ │ ├── test_toolbar_surface.xml │ │ │ │ │ │ ├── text_view_with_line_height_from_appearance.xml │ │ │ │ │ │ ├── text_view_with_line_height_from_layout.xml │ │ │ │ │ │ ├── text_view_with_line_height_from_style.xml │ │ │ │ │ │ ├── text_view_with_theme_line_height.xml │ │ │ │ │ │ └── text_view_without_line_height.xml │ │ │ │ │ │ ├── values-h360dp-land-v13 │ │ │ │ │ │ └── values-h360dp-land-v13.xml │ │ │ │ │ │ ├── values-h480dp-land-v13 │ │ │ │ │ │ └── values-h480dp-land-v13.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-small-v4 │ │ │ │ │ │ └── values-small-v4.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ │ ├── values-w360dp-port-v13 │ │ │ │ │ │ └── values-w360dp-port-v13.xml │ │ │ │ │ │ ├── values-w480dp-port-v13 │ │ │ │ │ │ └── values-w480dp-port-v13.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ ├── standalone_badge.xml │ │ │ │ │ │ ├── standalone_badge_gravity_bottom_end.xml │ │ │ │ │ │ ├── standalone_badge_gravity_bottom_start.xml │ │ │ │ │ │ └── standalone_badge_gravity_top_start.xml │ │ │ │ ├── 74 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 75 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 76 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 77 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── build │ │ │ │ │ │ │ └── gradle │ │ │ │ │ │ │ └── aar-metadata.properties │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── MediaDescriptionCompat.aidl │ │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml │ │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ └── notification_template_media_custom.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── 78 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 79 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 80 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 81 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 82 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 83 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 84 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ └── classes.jar │ │ │ │ ├── 85 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ └── build │ │ │ │ │ │ │ └── gradle │ │ │ │ │ │ │ └── aar-metadata.properties │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── browser_actions_context_menu_page.xml │ │ │ │ │ │ └── browser_actions_context_menu_row.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── image_share_filepaths.xml │ │ │ │ ├── 86 │ │ │ │ │ └── jl │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ └── res │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── camerafragment.xml │ │ │ │ ├── 0.stamp │ │ │ │ ├── 43.stamp │ │ │ │ ├── 44.stamp │ │ │ │ ├── 48.stamp │ │ │ │ ├── 49.stamp │ │ │ │ ├── 50.stamp │ │ │ │ ├── 51.stamp │ │ │ │ ├── 52.stamp │ │ │ │ ├── 53.stamp │ │ │ │ ├── 54.stamp │ │ │ │ ├── 55.stamp │ │ │ │ ├── 56.stamp │ │ │ │ ├── 57.stamp │ │ │ │ ├── 58.stamp │ │ │ │ ├── 59.stamp │ │ │ │ ├── 60.stamp │ │ │ │ ├── 61.stamp │ │ │ │ ├── 62.stamp │ │ │ │ ├── 63.stamp │ │ │ │ ├── 64.stamp │ │ │ │ ├── 65.stamp │ │ │ │ ├── 66.stamp │ │ │ │ ├── 67.stamp │ │ │ │ ├── 68.stamp │ │ │ │ ├── 69.stamp │ │ │ │ ├── 70.stamp │ │ │ │ ├── 71.stamp │ │ │ │ ├── 72.stamp │ │ │ │ ├── 73.stamp │ │ │ │ ├── 74.stamp │ │ │ │ ├── 75.stamp │ │ │ │ ├── 76.stamp │ │ │ │ ├── 77.stamp │ │ │ │ ├── 78.stamp │ │ │ │ ├── 79.stamp │ │ │ │ ├── 80.stamp │ │ │ │ ├── 81.stamp │ │ │ │ ├── 82.stamp │ │ │ │ ├── 83.stamp │ │ │ │ ├── 84.stamp │ │ │ │ ├── 85.stamp │ │ │ │ ├── 86.stamp │ │ │ │ └── map.cache │ │ │ │ └── stamp │ │ │ │ └── _ResolveLibraryProjectImports.stamp │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── CommonViews.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.backup.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── CommonViews.UWP.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ ├── CommonViews.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── CommonViews.iOS.csproj │ │ ├── CommonViews.iOS.csproj.user │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── obj │ │ │ ├── CommonViews.iOS.csproj.nuget.dgspec.json │ │ │ ├── CommonViews.iOS.csproj.nuget.g.props │ │ │ ├── CommonViews.iOS.csproj.nuget.g.targets │ │ │ ├── iPhoneSimulator │ │ │ └── Debug │ │ │ │ ├── CommonViews.iOS.csprojAssemblyReference.cache │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ ├── Xamarin.iOS,Version=v1.0.AssemblyAttributes.cs │ │ │ │ └── build.force │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── CommonViews │ │ ├── ActivityIndicatorSample.xaml │ │ ├── ActivityIndicatorSample.xaml.cs │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── CommonViews.csproj │ │ ├── DisplayAlertPage.xaml │ │ ├── DisplayAlertPage.xaml.cs │ │ ├── DisplayingHtmlSample.xaml │ │ ├── DisplayingHtmlSample.xaml.cs │ │ ├── ImageWithGestureRecognizerSample.xaml │ │ ├── ImageWithGestureRecognizerSample.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MediaElementExample.xaml │ │ ├── MediaElementExample.xaml.cs │ │ ├── SearchBarSample.xaml │ │ ├── SearchBarSample.xaml.cs │ │ ├── ValueSelectionSample.xaml │ │ ├── ValueSelectionSample.xaml.cs │ │ ├── WorkingWithDatesAndTime.xaml │ │ ├── WorkingWithDatesAndTime.xaml.cs │ │ ├── WorkingWithText.xaml │ │ ├── WorkingWithText.xaml.cs │ │ └── obj │ │ ├── CommonViews.csproj.nuget.dgspec.json │ │ ├── CommonViews.csproj.nuget.g.props │ │ ├── CommonViews.csproj.nuget.g.targets │ │ ├── Debug │ │ └── netstandard2.0 │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ │ ├── ActivityIndicatorSample.xaml.g.cs │ │ │ ├── App.xaml.g.cs │ │ │ ├── CommonViews.AssemblyInfo.cs │ │ │ ├── CommonViews.AssemblyInfoInputs.cache │ │ │ ├── CommonViews.assets.cache │ │ │ ├── CommonViews.csprojAssemblyReference.cache │ │ │ ├── DisplayAlertPage.xaml.g.cs │ │ │ ├── DisplayingHtmlSample.xaml.g.cs │ │ │ ├── ImageWithGestureRecognizerSample.xaml.g.cs │ │ │ ├── MainPage.xaml.g.cs │ │ │ ├── MediaElementExample.xaml.g.cs │ │ │ ├── SearchBarSample.xaml.g.cs │ │ │ ├── ValueSelectionSample.xaml.g.cs │ │ │ ├── WorkingWithDatesAndTime.xaml.g.cs │ │ │ └── WorkingWithText.xaml.g.cs │ │ ├── project.assets.json │ │ └── project.nuget.cache └── UpgradeLog.htm ├── Chapter6 ├── IntroducingPages │ ├── .vs │ │ └── IntroducingPages │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── IntroducingPages.sln │ ├── IntroducingPages │ │ ├── IntroducingPages.Android │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── IntroducingPages.Android.csproj │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.designer.cs │ │ │ │ ├── layout │ │ │ │ │ ├── Tabbar.xml │ │ │ │ │ └── Toolbar.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── icon.xml │ │ │ │ │ └── icon_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── launcher_foreground.png │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ └── obj │ │ │ │ ├── Debug │ │ │ │ ├── 90 │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── IntroducingPages.Android.csprojAssemblyReference.cache │ │ │ │ │ ├── MonoAndroid,Version=v9.0.AssemblyAttributes.cs │ │ │ │ │ ├── designtime │ │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ │ ├── build.props │ │ │ │ │ │ └── libraryprojectimports.cache │ │ │ │ │ ├── lp │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ └── formsviewgroup.jar │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ └── android.arch.core.common.jar │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ └── android.arch.lifecycle.common.jar │ │ │ │ │ │ ├── 4 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 5 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 6 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ ├── 7 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ ├── 8 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ ├── 9 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ └── com.android.support.support-annotations.jar │ │ │ │ │ │ ├── 10 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 11 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ └── com.android.support.collections.jar │ │ │ │ │ │ ├── 12 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ │ │ └── ResultReceiver.aidl │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ │ │ │ └── notification_tile_bg.xml │ │ │ │ │ │ │ │ ├── layout-v16 │ │ │ │ │ │ │ │ └── notification_template_custom_big.xml │ │ │ │ │ │ │ │ ├── layout-v21 │ │ │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ │ │ └── notification_template_part_time.xml │ │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 13 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 14 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 15 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 16 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 17 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── browser_actions_context_menu_page.xml │ │ │ │ │ │ │ │ └── browser_actions_context_menu_row.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 18 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 19 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ │ └── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ │ ├── design_snackbar_in.xml │ │ │ │ │ │ │ │ └── design_snackbar_out.xml │ │ │ │ │ │ │ │ ├── animator-v21 │ │ │ │ │ │ │ │ └── design_appbar_state_list_animator.xml │ │ │ │ │ │ │ │ ├── animator │ │ │ │ │ │ │ │ ├── design_fab_hide_motion_spec.xml │ │ │ │ │ │ │ │ ├── design_fab_show_motion_spec.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_state_list_anim.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_unelevated_state_list_anim.xml │ │ │ │ │ │ │ │ ├── mtrl_chip_state_list_anim.xml │ │ │ │ │ │ │ │ ├── mtrl_fab_hide_motion_spec.xml │ │ │ │ │ │ │ │ ├── mtrl_fab_show_motion_spec.xml │ │ │ │ │ │ │ │ ├── mtrl_fab_transformation_sheet_collapse_spec.xml │ │ │ │ │ │ │ │ └── mtrl_fab_transformation_sheet_expand_spec.xml │ │ │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ │ └── design_tint_password_toggle.xml │ │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ │ ├── design_error.xml │ │ │ │ │ │ │ │ ├── design_tint_password_toggle.xml │ │ │ │ │ │ │ │ ├── mtrl_bottom_nav_colored_item_tint.xml │ │ │ │ │ │ │ │ ├── mtrl_bottom_nav_item_tint.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_bg_color_selector.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_ripple_color.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_stroke_color_selector.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_text_btn_ripple_color.xml │ │ │ │ │ │ │ │ ├── mtrl_btn_text_color_selector.xml │ │ │ │ │ │ │ │ ├── mtrl_chip_background_color.xml │ │ │ │ │ │ │ │ ├── mtrl_chip_close_icon_tint.xml │ │ │ │ │ │ │ │ ├── mtrl_chip_ripple_color.xml │ │ │ │ │ │ │ │ ├── mtrl_chip_text_color.xml │ │ │ │ │ │ │ │ ├── mtrl_fab_ripple_color.xml │ │ │ │ │ │ │ │ ├── mtrl_tabs_colored_ripple_color.xml │ │ │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector.xml │ │ │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector_colored.xml │ │ │ │ │ │ │ │ ├── mtrl_tabs_legacy_text_color_selector.xml │ │ │ │ │ │ │ │ ├── mtrl_tabs_ripple_color.xml │ │ │ │ │ │ │ │ └── mtrl_text_btn_text_color_selector.xml │ │ │ │ │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ │ │ │ │ ├── design_ic_visibility.xml │ │ │ │ │ │ │ │ └── design_ic_visibility_off.xml │ │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ │ ├── avd_hide_password.xml │ │ │ │ │ │ │ │ ├── avd_show_password.xml │ │ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ │ │ └── design_password_eye.xml │ │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ │ │ ├── design_fab_background.xml │ │ │ │ │ │ │ │ ├── design_password_eye.xml │ │ │ │ │ │ │ │ ├── design_snackbar_background.xml │ │ │ │ │ │ │ │ ├── ic_mtrl_chip_checked_black.xml │ │ │ │ │ │ │ │ ├── ic_mtrl_chip_checked_circle.xml │ │ │ │ │ │ │ │ ├── ic_mtrl_chip_close_circle.xml │ │ │ │ │ │ │ │ ├── mtrl_snackbar_background.xml │ │ │ │ │ │ │ │ ├── mtrl_tabs_default_indicator.xml │ │ │ │ │ │ │ │ └── navigation_empty_icon.xml │ │ │ │ │ │ │ │ ├── interpolator-v21 │ │ │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ │ │ ├── interpolator │ │ │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ │ │ ├── mtrl_linear.xml │ │ │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ │ │ └── mtrl_layout_snackbar.xml │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── design_bottom_navigation_item.xml │ │ │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml │ │ │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ │ │ ├── design_layout_snackbar_include.xml │ │ │ │ │ │ │ │ ├── design_layout_tab_icon.xml │ │ │ │ │ │ │ │ ├── design_layout_tab_text.xml │ │ │ │ │ │ │ │ ├── design_menu_item_action_area.xml │ │ │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ │ │ ├── design_navigation_menu_item.xml │ │ │ │ │ │ │ │ ├── design_text_input_password_icon.xml │ │ │ │ │ │ │ │ ├── mtrl_layout_snackbar.xml │ │ │ │ │ │ │ │ └── mtrl_layout_snackbar_include.xml │ │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 20 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 21 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 22 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 23 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 24 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 25 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 26 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ │ │ ├── MediaDescriptionCompat.aidl │ │ │ │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml │ │ │ │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ │ │ └── notification_template_media_custom.xml │ │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 27 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 28 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 29 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 30 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 31 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ │ │ │ ├── abc_tooltip_enter.xml │ │ │ │ │ │ │ │ └── abc_tooltip_exit.xml │ │ │ │ │ │ │ │ ├── color-v21 │ │ │ │ │ │ │ │ └── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ │ └── abc_list_divider_material.xml │ │ │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ │ │ ├── drawable-watch-v20 │ │ │ │ │ │ │ │ └── abc_dialog_material_background.xml │ │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ │ │ ├── abc_list_divider_material.xml │ │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ │ │ ├── abc_vector_test.xml │ │ │ │ │ │ │ │ ├── tooltip_frame_dark.xml │ │ │ │ │ │ │ │ └── tooltip_frame_light.xml │ │ │ │ │ │ │ │ ├── layout-v26 │ │ │ │ │ │ │ │ └── abc_screen_toolbar.xml │ │ │ │ │ │ │ │ ├── layout-watch-v20 │ │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ │ └── abc_alert_dialog_title_material.xml │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ │ │ │ ├── abc_cascading_menu_item_layout.xml │ │ │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ │ │ ├── abc_tooltip.xml │ │ │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 33 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 34 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ └── public.txt │ │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ ├── 35 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 36 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ │ └── androidx │ │ │ │ │ │ │ │ │ └── versionedparcelable │ │ │ │ │ │ │ │ │ └── ParcelImpl.aidl │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ │ ├── 37 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ ├── 38 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ │ │ ├── compiled.flata │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ │ └── xamarin_essentials_fileprovider_file_paths.xml │ │ │ │ │ │ ├── 39 │ │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ │ ├── enterfromleft.xml │ │ │ │ │ │ │ │ ├── enterfromright.xml │ │ │ │ │ │ │ │ ├── exittoleft.xml │ │ │ │ │ │ │ │ └── exittoright.xml │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── bottomtablayout.xml │ │ │ │ │ │ │ │ ├── flyoutcontent.xml │ │ │ │ │ │ │ │ ├── rootlayout.xml │ │ │ │ │ │ │ │ └── shellcontent.xml │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ ├── attrs.xml │ │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── 0.stamp │ │ │ │ │ │ ├── 1.stamp │ │ │ │ │ │ ├── 10.stamp │ │ │ │ │ │ ├── 11.stamp │ │ │ │ │ │ ├── 12.stamp │ │ │ │ │ │ ├── 13.stamp │ │ │ │ │ │ ├── 14.stamp │ │ │ │ │ │ ├── 15.stamp │ │ │ │ │ │ ├── 16.stamp │ │ │ │ │ │ ├── 17.stamp │ │ │ │ │ │ ├── 18.stamp │ │ │ │ │ │ ├── 19.stamp │ │ │ │ │ │ ├── 2.stamp │ │ │ │ │ │ ├── 20.stamp │ │ │ │ │ │ ├── 21.stamp │ │ │ │ │ │ ├── 22.stamp │ │ │ │ │ │ ├── 23.stamp │ │ │ │ │ │ ├── 24.stamp │ │ │ │ │ │ ├── 25.stamp │ │ │ │ │ │ ├── 26.stamp │ │ │ │ │ │ ├── 27.stamp │ │ │ │ │ │ ├── 28.stamp │ │ │ │ │ │ ├── 29.stamp │ │ │ │ │ │ ├── 3.stamp │ │ │ │ │ │ ├── 30.stamp │ │ │ │ │ │ ├── 31.stamp │ │ │ │ │ │ ├── 32.stamp │ │ │ │ │ │ ├── 33.stamp │ │ │ │ │ │ ├── 34.stamp │ │ │ │ │ │ ├── 35.stamp │ │ │ │ │ │ ├── 36.stamp │ │ │ │ │ │ ├── 37.stamp │ │ │ │ │ │ ├── 38.stamp │ │ │ │ │ │ ├── 39.stamp │ │ │ │ │ │ ├── 4.stamp │ │ │ │ │ │ ├── 5.stamp │ │ │ │ │ │ ├── 6.stamp │ │ │ │ │ │ ├── 7.stamp │ │ │ │ │ │ ├── 8.stamp │ │ │ │ │ │ ├── 9.stamp │ │ │ │ │ │ └── map.cache │ │ │ │ │ └── stamp │ │ │ │ │ │ └── _ResolveLibraryProjectImports.stamp │ │ │ │ └── 100 │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── IntroducingPages.Android.csproj.FileListAbsolute.txt │ │ │ │ │ ├── IntroducingPages.Android.csprojAssemblyReference.cache │ │ │ │ │ ├── MonoAndroid,Version=v10.0.AssemblyAttributes.cs │ │ │ │ │ ├── build.force │ │ │ │ │ ├── designtime │ │ │ │ │ ├── Resource.designer.cs │ │ │ │ │ ├── build.props │ │ │ │ │ └── libraryprojectimports.cache │ │ │ │ │ ├── lp │ │ │ │ │ ├── 0 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ └── formsviewgroup.jar │ │ │ │ │ ├── 43 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ └── xamarin_essentials_fileprovider_file_paths.xml │ │ │ │ │ ├── 44 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── __res_name_case_map.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── enterfromleft.xml │ │ │ │ │ │ │ ├── enterfromright.xml │ │ │ │ │ │ │ ├── exittoleft.xml │ │ │ │ │ │ │ └── exittoright.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── bottomtablayout.xml │ │ │ │ │ │ │ ├── fallbacktabbardonotuse.xml │ │ │ │ │ │ │ ├── fallbacktoolbardonotuse.xml │ │ │ │ │ │ │ ├── flyoutcontent.xml │ │ │ │ │ │ │ ├── rootlayout.xml │ │ │ │ │ │ │ ├── shellcontent.xml │ │ │ │ │ │ │ ├── tabbar.xml │ │ │ │ │ │ │ └── toolbar.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── attrs.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── 48 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── androidx │ │ │ │ │ │ │ │ └── versionedparcelable │ │ │ │ │ │ │ │ └── ParcelImpl.aidl │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 49 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 50 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ │ └── ResultReceiver.aidl │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ │ │ └── notification_tile_bg.xml │ │ │ │ │ │ │ ├── layout-v16 │ │ │ │ │ │ │ └── notification_template_custom_big.xml │ │ │ │ │ │ │ ├── layout-v21 │ │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── custom_dialog.xml │ │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ │ ├── notification_template_icon_group.xml │ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ │ └── notification_template_part_time.xml │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 51 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 52 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 53 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 54 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 55 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 56 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 57 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 58 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 59 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 60 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 61 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ │ └── fragment_fast_out_extra_slow_in.xml │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── fragment_close_enter.xml │ │ │ │ │ │ │ ├── fragment_close_exit.xml │ │ │ │ │ │ │ ├── fragment_fade_enter.xml │ │ │ │ │ │ │ ├── fragment_fade_exit.xml │ │ │ │ │ │ │ ├── fragment_fast_out_extra_slow_in.xml │ │ │ │ │ │ │ ├── fragment_open_enter.xml │ │ │ │ │ │ │ └── fragment_open_exit.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 62 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 63 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 64 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 65 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── proguard.txt │ │ │ │ │ ├── 66 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 67 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 68 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 69 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 70 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 71 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── abc_vector_test.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 72 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ │ │ ├── abc_tooltip_enter.xml │ │ │ │ │ │ │ ├── abc_tooltip_exit.xml │ │ │ │ │ │ │ ├── btn_checkbox_to_checked_box_inner_merged_animation.xml │ │ │ │ │ │ │ ├── btn_checkbox_to_checked_box_outer_merged_animation.xml │ │ │ │ │ │ │ ├── btn_checkbox_to_checked_icon_null_animation.xml │ │ │ │ │ │ │ ├── btn_checkbox_to_unchecked_box_inner_merged_animation.xml │ │ │ │ │ │ │ ├── btn_checkbox_to_unchecked_check_path_merged_animation.xml │ │ │ │ │ │ │ ├── btn_checkbox_to_unchecked_icon_null_animation.xml │ │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_dot_group_animation.xml │ │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_ring_outer_animation.xml │ │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_ring_outer_path_animation.xml │ │ │ │ │ │ │ ├── btn_radio_to_on_mtrl_dot_group_animation.xml │ │ │ │ │ │ │ ├── btn_radio_to_on_mtrl_ring_outer_animation.xml │ │ │ │ │ │ │ └── btn_radio_to_on_mtrl_ring_outer_path_animation.xml │ │ │ │ │ │ │ ├── color-v21 │ │ │ │ │ │ │ └── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ │ └── abc_tint_switch_track.xml │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ └── abc_list_divider_material.xml │ │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ │ ├── drawable-watch-v20 │ │ │ │ │ │ │ └── abc_dialog_material_background.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ │ └── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ │ ├── abc_btn_check_material_anim.xml │ │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ │ ├── abc_btn_radio_material_anim.xml │ │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_divider_material.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ │ ├── btn_checkbox_checked_mtrl.xml │ │ │ │ │ │ │ ├── btn_checkbox_checked_to_unchecked_mtrl_animation.xml │ │ │ │ │ │ │ ├── btn_checkbox_unchecked_mtrl.xml │ │ │ │ │ │ │ ├── btn_checkbox_unchecked_to_checked_mtrl_animation.xml │ │ │ │ │ │ │ ├── btn_radio_off_mtrl.xml │ │ │ │ │ │ │ ├── btn_radio_off_to_on_mtrl_animation.xml │ │ │ │ │ │ │ ├── btn_radio_on_mtrl.xml │ │ │ │ │ │ │ ├── btn_radio_on_to_off_mtrl_animation.xml │ │ │ │ │ │ │ ├── tooltip_frame_dark.xml │ │ │ │ │ │ │ └── tooltip_frame_light.xml │ │ │ │ │ │ │ ├── interpolator │ │ │ │ │ │ │ ├── btn_checkbox_checked_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ │ ├── btn_checkbox_checked_mtrl_animation_interpolator_1.xml │ │ │ │ │ │ │ ├── btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ │ ├── btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml │ │ │ │ │ │ │ ├── btn_radio_to_off_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ │ ├── btn_radio_to_on_mtrl_animation_interpolator_0.xml │ │ │ │ │ │ │ └── fast_out_slow_in.xml │ │ │ │ │ │ │ ├── layout-v26 │ │ │ │ │ │ │ └── abc_screen_toolbar.xml │ │ │ │ │ │ │ ├── layout-watch-v20 │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ └── abc_alert_dialog_title_material.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ │ │ ├── abc_cascading_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ │ ├── abc_tooltip.xml │ │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ │ │ ├── values-v26 │ │ │ │ │ │ │ └── values-v26.xml │ │ │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ ├── values-watch-v20 │ │ │ │ │ │ │ └── values-watch-v20.xml │ │ │ │ │ │ │ ├── values-watch-v21 │ │ │ │ │ │ │ └── values-watch-v21.xml │ │ │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 73 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ ├── mtrl_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ └── mtrl_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ ├── anim │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ ├── design_snackbar_in.xml │ │ │ │ │ │ │ ├── design_snackbar_out.xml │ │ │ │ │ │ │ ├── mtrl_bottom_sheet_slide_in.xml │ │ │ │ │ │ │ ├── mtrl_bottom_sheet_slide_out.xml │ │ │ │ │ │ │ └── mtrl_card_lowers_interpolator.xml │ │ │ │ │ │ │ ├── animator-v21 │ │ │ │ │ │ │ └── design_appbar_state_list_animator.xml │ │ │ │ │ │ │ ├── animator │ │ │ │ │ │ │ ├── design_fab_hide_motion_spec.xml │ │ │ │ │ │ │ ├── design_fab_show_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_btn_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_btn_unelevated_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_card_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_chip_state_list_anim.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_change_size_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_hide_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_show_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_state_list_animator.xml │ │ │ │ │ │ │ ├── mtrl_fab_hide_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_fab_show_motion_spec.xml │ │ │ │ │ │ │ ├── mtrl_fab_transformation_sheet_collapse_spec.xml │ │ │ │ │ │ │ └── mtrl_fab_transformation_sheet_expand_spec.xml │ │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ ├── checkbox_themeable_attribute_color.xml │ │ │ │ │ │ │ ├── design_box_stroke_color.xml │ │ │ │ │ │ │ ├── design_error.xml │ │ │ │ │ │ │ ├── design_icon_tint.xml │ │ │ │ │ │ │ ├── material_on_background_disabled.xml │ │ │ │ │ │ │ ├── material_on_background_emphasis_high_type.xml │ │ │ │ │ │ │ ├── material_on_background_emphasis_medium.xml │ │ │ │ │ │ │ ├── material_on_primary_disabled.xml │ │ │ │ │ │ │ ├── material_on_primary_emphasis_high_type.xml │ │ │ │ │ │ │ ├── material_on_primary_emphasis_medium.xml │ │ │ │ │ │ │ ├── material_on_surface_disabled.xml │ │ │ │ │ │ │ ├── material_on_surface_emphasis_high_type.xml │ │ │ │ │ │ │ ├── material_on_surface_emphasis_medium.xml │ │ │ │ │ │ │ ├── mtrl_bottom_nav_colored_item_tint.xml │ │ │ │ │ │ │ ├── mtrl_bottom_nav_colored_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_bottom_nav_item_tint.xml │ │ │ │ │ │ │ ├── mtrl_bottom_nav_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_btn_bg_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_btn_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_btn_stroke_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_btn_text_btn_bg_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_btn_text_btn_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_btn_text_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_calendar_item_stroke_color.xml │ │ │ │ │ │ │ ├── mtrl_calendar_selected_range.xml │ │ │ │ │ │ │ ├── mtrl_card_view_foreground.xml │ │ │ │ │ │ │ ├── mtrl_card_view_ripple.xml │ │ │ │ │ │ │ ├── mtrl_chip_background_color.xml │ │ │ │ │ │ │ ├── mtrl_chip_close_icon_tint.xml │ │ │ │ │ │ │ ├── mtrl_chip_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_chip_surface_color.xml │ │ │ │ │ │ │ ├── mtrl_chip_text_color.xml │ │ │ │ │ │ │ ├── mtrl_choice_chip_background_color.xml │ │ │ │ │ │ │ ├── mtrl_choice_chip_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_choice_chip_text_color.xml │ │ │ │ │ │ │ ├── mtrl_error.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_bg_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_extended_fab_text_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_fab_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_filled_background_color.xml │ │ │ │ │ │ │ ├── mtrl_filled_icon_tint.xml │ │ │ │ │ │ │ ├── mtrl_filled_stroke_color.xml │ │ │ │ │ │ │ ├── mtrl_indicator_text_color.xml │ │ │ │ │ │ │ ├── mtrl_navigation_item_background_color.xml │ │ │ │ │ │ │ ├── mtrl_navigation_item_icon_tint.xml │ │ │ │ │ │ │ ├── mtrl_navigation_item_text_color.xml │ │ │ │ │ │ │ ├── mtrl_on_primary_text_btn_text_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_outlined_icon_tint.xml │ │ │ │ │ │ │ ├── mtrl_outlined_stroke_color.xml │ │ │ │ │ │ │ ├── mtrl_popupmenu_overlay_color.xml │ │ │ │ │ │ │ ├── mtrl_tabs_colored_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_tabs_icon_color_selector_colored.xml │ │ │ │ │ │ │ ├── mtrl_tabs_legacy_text_color_selector.xml │ │ │ │ │ │ │ ├── mtrl_tabs_ripple_color.xml │ │ │ │ │ │ │ ├── mtrl_text_btn_text_color_selector.xml │ │ │ │ │ │ │ ├── test_mtrl_calendar_day.xml │ │ │ │ │ │ │ └── test_mtrl_calendar_day_selected.xml │ │ │ │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ │ │ │ ├── design_ic_visibility.xml │ │ │ │ │ │ │ └── design_ic_visibility_off.xml │ │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ ├── avd_hide_password.xml │ │ │ │ │ │ │ ├── avd_show_password.xml │ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ │ └── design_password_eye.xml │ │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ │ └── mtrl_popupmenu_background_dark.xml │ │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ │ ├── design_fab_background.xml │ │ │ │ │ │ │ ├── design_password_eye.xml │ │ │ │ │ │ │ ├── design_snackbar_background.xml │ │ │ │ │ │ │ ├── ic_calendar_black_24dp.xml │ │ │ │ │ │ │ ├── ic_clear_black_24dp.xml │ │ │ │ │ │ │ ├── ic_edit_black_24dp.xml │ │ │ │ │ │ │ ├── ic_keyboard_arrow_left_black_24dp.xml │ │ │ │ │ │ │ ├── ic_keyboard_arrow_right_black_24dp.xml │ │ │ │ │ │ │ ├── ic_menu_arrow_down_black_24dp.xml │ │ │ │ │ │ │ ├── ic_menu_arrow_up_black_24dp.xml │ │ │ │ │ │ │ ├── ic_mtrl_checked_circle.xml │ │ │ │ │ │ │ ├── ic_mtrl_chip_checked_black.xml │ │ │ │ │ │ │ ├── ic_mtrl_chip_checked_circle.xml │ │ │ │ │ │ │ ├── ic_mtrl_chip_close_circle.xml │ │ │ │ │ │ │ ├── mtrl_dialog_background.xml │ │ │ │ │ │ │ ├── mtrl_dropdown_arrow.xml │ │ │ │ │ │ │ ├── mtrl_ic_arrow_drop_down.xml │ │ │ │ │ │ │ ├── mtrl_ic_arrow_drop_up.xml │ │ │ │ │ │ │ ├── mtrl_ic_cancel.xml │ │ │ │ │ │ │ ├── mtrl_ic_error.xml │ │ │ │ │ │ │ ├── mtrl_popupmenu_background.xml │ │ │ │ │ │ │ ├── mtrl_popupmenu_background_dark.xml │ │ │ │ │ │ │ ├── mtrl_tabs_default_indicator.xml │ │ │ │ │ │ │ ├── navigation_empty_icon.xml │ │ │ │ │ │ │ └── test_custom_background.xml │ │ │ │ │ │ │ ├── interpolator-v21 │ │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ │ ├── interpolator │ │ │ │ │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ │ │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ │ │ │ │ ├── mtrl_linear.xml │ │ │ │ │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ │ │ │ │ ├── layout-land │ │ │ │ │ │ │ └── mtrl_picker_header_dialog.xml │ │ │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ │ └── mtrl_layout_snackbar.xml │ │ │ │ │ │ │ ├── layout-v26 │ │ │ │ │ │ │ └── mtrl_calendar_month.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── design_bottom_navigation_item.xml │ │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml │ │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ │ ├── design_layout_snackbar_include.xml │ │ │ │ │ │ │ ├── design_layout_tab_icon.xml │ │ │ │ │ │ │ ├── design_layout_tab_text.xml │ │ │ │ │ │ │ ├── design_menu_item_action_area.xml │ │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ │ ├── design_navigation_menu_item.xml │ │ │ │ │ │ │ ├── design_text_input_end_icon.xml │ │ │ │ │ │ │ ├── design_text_input_start_icon.xml │ │ │ │ │ │ │ ├── mtrl_alert_dialog.xml │ │ │ │ │ │ │ ├── mtrl_alert_dialog_actions.xml │ │ │ │ │ │ │ ├── mtrl_alert_dialog_title.xml │ │ │ │ │ │ │ ├── mtrl_alert_select_dialog_item.xml │ │ │ │ │ │ │ ├── mtrl_alert_select_dialog_multichoice.xml │ │ │ │ │ │ │ ├── mtrl_alert_select_dialog_singlechoice.xml │ │ │ │ │ │ │ ├── mtrl_calendar_day.xml │ │ │ │ │ │ │ ├── mtrl_calendar_day_of_week.xml │ │ │ │ │ │ │ ├── mtrl_calendar_days_of_week.xml │ │ │ │ │ │ │ ├── mtrl_calendar_horizontal.xml │ │ │ │ │ │ │ ├── mtrl_calendar_month.xml │ │ │ │ │ │ │ ├── mtrl_calendar_month_labeled.xml │ │ │ │ │ │ │ ├── mtrl_calendar_month_navigation.xml │ │ │ │ │ │ │ ├── mtrl_calendar_months.xml │ │ │ │ │ │ │ ├── mtrl_calendar_vertical.xml │ │ │ │ │ │ │ ├── mtrl_calendar_year.xml │ │ │ │ │ │ │ ├── mtrl_layout_snackbar.xml │ │ │ │ │ │ │ ├── mtrl_layout_snackbar_include.xml │ │ │ │ │ │ │ ├── mtrl_picker_actions.xml │ │ │ │ │ │ │ ├── mtrl_picker_dialog.xml │ │ │ │ │ │ │ ├── mtrl_picker_fullscreen.xml │ │ │ │ │ │ │ ├── mtrl_picker_header_dialog.xml │ │ │ │ │ │ │ ├── mtrl_picker_header_fullscreen.xml │ │ │ │ │ │ │ ├── mtrl_picker_header_selection_text.xml │ │ │ │ │ │ │ ├── mtrl_picker_header_title_text.xml │ │ │ │ │ │ │ ├── mtrl_picker_header_toggle.xml │ │ │ │ │ │ │ ├── mtrl_picker_text_input_date.xml │ │ │ │ │ │ │ ├── mtrl_picker_text_input_date_range.xml │ │ │ │ │ │ │ ├── test_action_chip.xml │ │ │ │ │ │ │ ├── test_design_checkbox.xml │ │ │ │ │ │ │ ├── test_reflow_chipgroup.xml │ │ │ │ │ │ │ ├── test_toolbar.xml │ │ │ │ │ │ │ ├── test_toolbar_custom_background.xml │ │ │ │ │ │ │ ├── test_toolbar_elevation.xml │ │ │ │ │ │ │ ├── test_toolbar_surface.xml │ │ │ │ │ │ │ ├── text_view_with_line_height_from_appearance.xml │ │ │ │ │ │ │ ├── text_view_with_line_height_from_layout.xml │ │ │ │ │ │ │ ├── text_view_with_line_height_from_style.xml │ │ │ │ │ │ │ ├── text_view_with_theme_line_height.xml │ │ │ │ │ │ │ └── text_view_without_line_height.xml │ │ │ │ │ │ │ ├── values-h360dp-land-v13 │ │ │ │ │ │ │ └── values-h360dp-land-v13.xml │ │ │ │ │ │ │ ├── values-h480dp-land-v13 │ │ │ │ │ │ │ └── values-h480dp-land-v13.xml │ │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ │ ├── values-small-v4 │ │ │ │ │ │ │ └── values-small-v4.xml │ │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ │ ├── values-v28 │ │ │ │ │ │ │ └── values-v28.xml │ │ │ │ │ │ │ ├── values-w360dp-port-v13 │ │ │ │ │ │ │ └── values-w360dp-port-v13.xml │ │ │ │ │ │ │ ├── values-w480dp-port-v13 │ │ │ │ │ │ │ └── values-w480dp-port-v13.xml │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── standalone_badge.xml │ │ │ │ │ │ │ ├── standalone_badge_gravity_bottom_end.xml │ │ │ │ │ │ │ ├── standalone_badge_gravity_bottom_start.xml │ │ │ │ │ │ │ └── standalone_badge_gravity_top_start.xml │ │ │ │ │ ├── 74 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 75 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 76 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 77 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ └── build │ │ │ │ │ │ │ │ └── gradle │ │ │ │ │ │ │ │ └── aar-metadata.properties │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ │ └── v4 │ │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ │ ├── MediaDescriptionCompat.aidl │ │ │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ ├── proguard.txt │ │ │ │ │ │ │ ├── public.txt │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml │ │ │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ │ └── notification_template_media_custom.xml │ │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ ├── 78 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 79 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 80 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 81 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 82 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 83 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 84 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ └── classes.jar │ │ │ │ │ ├── 85 │ │ │ │ │ │ └── jl │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ └── build │ │ │ │ │ │ │ │ └── gradle │ │ │ │ │ │ │ │ └── aar-metadata.properties │ │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ │ ├── classes.jar │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── browser_actions_context_menu_page.xml │ │ │ │ │ │ │ └── browser_actions_context_menu_row.xml │ │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ │ ├── values-as │ │ │ │ │ │ │ └── values-as.xml │ │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ │ ├── values-en-rCA │ │ │ │ │ │ │ └── values-en-rCA.xml │ │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ │ ├── values-en-rXC │ │ │ │ │ │ │ └── values-en-rXC.xml │ │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ │ ├── values-or │ │ │ │ │ │ │ └── values-or.xml │ │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ └── image_share_filepaths.xml │ │ │ │ │ ├── 0.stamp │ │ │ │ │ ├── 43.stamp │ │ │ │ │ ├── 44.stamp │ │ │ │ │ ├── 48.stamp │ │ │ │ │ ├── 49.stamp │ │ │ │ │ ├── 50.stamp │ │ │ │ │ ├── 51.stamp │ │ │ │ │ ├── 52.stamp │ │ │ │ │ ├── 53.stamp │ │ │ │ │ ├── 54.stamp │ │ │ │ │ ├── 55.stamp │ │ │ │ │ ├── 56.stamp │ │ │ │ │ ├── 57.stamp │ │ │ │ │ ├── 58.stamp │ │ │ │ │ ├── 59.stamp │ │ │ │ │ ├── 60.stamp │ │ │ │ │ ├── 61.stamp │ │ │ │ │ ├── 62.stamp │ │ │ │ │ ├── 63.stamp │ │ │ │ │ ├── 64.stamp │ │ │ │ │ ├── 65.stamp │ │ │ │ │ ├── 66.stamp │ │ │ │ │ ├── 67.stamp │ │ │ │ │ ├── 68.stamp │ │ │ │ │ ├── 69.stamp │ │ │ │ │ ├── 70.stamp │ │ │ │ │ ├── 71.stamp │ │ │ │ │ ├── 72.stamp │ │ │ │ │ ├── 73.stamp │ │ │ │ │ ├── 74.stamp │ │ │ │ │ ├── 75.stamp │ │ │ │ │ ├── 76.stamp │ │ │ │ │ ├── 77.stamp │ │ │ │ │ ├── 78.stamp │ │ │ │ │ ├── 79.stamp │ │ │ │ │ ├── 80.stamp │ │ │ │ │ ├── 81.stamp │ │ │ │ │ ├── 82.stamp │ │ │ │ │ ├── 83.stamp │ │ │ │ │ ├── 84.stamp │ │ │ │ │ ├── 85.stamp │ │ │ │ │ └── map.cache │ │ │ │ │ └── stamp │ │ │ │ │ └── _ResolveLibraryProjectImports.stamp │ │ │ │ ├── IntroducingPages.Android.csproj.nuget.dgspec.json │ │ │ │ ├── IntroducingPages.Android.csproj.nuget.g.props │ │ │ │ ├── IntroducingPages.Android.csproj.nuget.g.targets │ │ │ │ ├── project.assets.json │ │ │ │ └── project.nuget.cache │ │ ├── IntroducingPages.UWP │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── LargeTile.scale-100.png │ │ │ │ ├── LargeTile.scale-200.png │ │ │ │ ├── LargeTile.scale-400.png │ │ │ │ ├── SmallTile.scale-100.png │ │ │ │ ├── SmallTile.scale-200.png │ │ │ │ ├── SmallTile.scale-400.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── SplashScreen.scale-400.png │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ │ ├── StoreLogo.backup.png │ │ │ │ ├── StoreLogo.scale-100.png │ │ │ │ ├── StoreLogo.scale-200.png │ │ │ │ ├── StoreLogo.scale-400.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ └── Wide310x150Logo.scale-400.png │ │ │ ├── IntroducingPages.UWP.csproj │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ ├── IntroducingPages.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ ├── Icon120.png │ │ │ │ │ ├── Icon152.png │ │ │ │ │ ├── Icon167.png │ │ │ │ │ ├── Icon180.png │ │ │ │ │ ├── Icon20.png │ │ │ │ │ ├── Icon29.png │ │ │ │ │ ├── Icon40.png │ │ │ │ │ ├── Icon58.png │ │ │ │ │ ├── Icon60.png │ │ │ │ │ ├── Icon76.png │ │ │ │ │ ├── Icon80.png │ │ │ │ │ └── Icon87.png │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── IntroducingPages.iOS.csproj │ │ │ ├── IntroducingPages.iOS.csproj.user │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default-Portrait@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ └── LaunchScreen.storyboard │ │ │ └── obj │ │ │ │ ├── IntroducingPages.iOS.csproj.nuget.dgspec.json │ │ │ │ ├── IntroducingPages.iOS.csproj.nuget.g.props │ │ │ │ ├── IntroducingPages.iOS.csproj.nuget.g.targets │ │ │ │ ├── iPhoneSimulator │ │ │ │ └── Debug │ │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ │ ├── IntroducingPages.iOS.csprojAssemblyReference.cache │ │ │ │ │ ├── Xamarin.iOS,Version=v1.0.AssemblyAttributes.cs │ │ │ │ │ └── build.force │ │ │ │ ├── project.assets.json │ │ │ │ └── project.nuget.cache │ │ └── IntroducingPages │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── CarouselPageSample.xaml │ │ │ ├── CarouselPageSample.xaml.cs │ │ │ ├── FlyoutPageSample.xaml │ │ │ ├── FlyoutPageSample.xaml.cs │ │ │ ├── IntroducingPages.csproj │ │ │ ├── IntroducingPages.csproj.user │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── NavigationSample.xaml │ │ │ ├── NavigationSample.xaml.cs │ │ │ ├── SecondaryPage.xaml │ │ │ ├── SecondaryPage.xaml.cs │ │ │ ├── TabbedPageSample.xaml │ │ │ ├── TabbedPageSample.xaml.cs │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── netstandard2.0 │ │ │ │ ├── .NETStandard,Version=v2.0.AssemblyAttributes.cs │ │ │ │ ├── App.xaml.g.cs │ │ │ │ ├── CarouselPageSample.xaml.g.cs │ │ │ │ ├── FlyoutPageSample.xaml.g.cs │ │ │ │ ├── IntroducingPages.AssemblyInfo.cs │ │ │ │ ├── IntroducingPages.AssemblyInfoInputs.cache │ │ │ │ ├── IntroducingPages.assets.cache │ │ │ │ ├── IntroducingPages.csprojAssemblyReference.cache │ │ │ │ ├── MainPage.xaml.g.cs │ │ │ │ ├── MasterDetailPageSample.xaml.g.cs │ │ │ │ ├── NavigationSample.xaml.g.cs │ │ │ │ ├── SecondaryPage.xaml.g.cs │ │ │ │ └── TabbedPageSample.xaml.g.cs │ │ │ ├── IntroducingPages.csproj.nuget.dgspec.json │ │ │ ├── IntroducingPages.csproj.nuget.g.props │ │ │ ├── IntroducingPages.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── UpgradeLog.htm └── ShellDemo │ ├── .vs │ └── ShellDemo │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo │ ├── ShellDemo.sln │ └── ShellDemo │ ├── ShellDemo.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable │ │ │ ├── about.png │ │ │ ├── contact.png │ │ │ ├── home.png │ │ │ ├── tab_feed.png │ │ │ └── xamarin_logo.png │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── ShellDemo.Android.csproj │ └── ShellDemo.Android.csproj.user │ ├── ShellDemo.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── LaunchScreen.storyboard │ │ ├── about.png │ │ ├── about@2x.png │ │ ├── about@3x.png │ │ ├── contact.png │ │ ├── contact@2x.png │ │ ├── contact@3x.png │ │ ├── home.png │ │ ├── home@2x.png │ │ ├── home@3x.png │ │ ├── tab_feed.png │ │ ├── tab_feed@2x.png │ │ ├── tab_feed@3x.png │ │ ├── xamarin_logo.png │ │ ├── xamarin_logo@2x.png │ │ └── xamarin_logo@3x.png │ ├── ShellDemo.iOS.csproj │ └── ShellDemo.iOS.csproj.user │ └── ShellDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppShell.xaml │ ├── AppShell.xaml.cs │ ├── AssemblyInfo.cs │ ├── GettingStarted.txt │ ├── PeopleHandler.cs │ ├── ShellDemo.csproj │ ├── ShellDemo.csproj.user │ └── Views │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── ContactPage.xaml │ ├── ContactPage.xaml.cs │ ├── HomePage.xaml │ └── HomePage.xaml.cs ├── Chapter7 ├── DataBinding │ ├── .vs │ │ └── DataBinding │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── DataBinding.sln │ └── DataBinding │ │ ├── DataBinding.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DataBinding.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── DataBinding.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.backup.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── DataBinding.UWP.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── DataBinding.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── DataBinding.iOS.csproj │ │ ├── DataBinding.iOS.csproj.user │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── DataBinding │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── CarouselViewSample.xaml │ │ ├── CarouselViewSample.xaml.cs │ │ ├── CollectionViewSample.xaml │ │ ├── CollectionViewSample.xaml.cs │ │ ├── ConverterSample.xaml │ │ ├── ConverterSample.xaml.cs │ │ ├── DataBinding.csproj │ │ ├── Fruit.cs │ │ ├── HtmlConverter.cs │ │ ├── HtmlModel.cs │ │ ├── ListViewSample.xaml │ │ ├── ListViewSample.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── People.cs │ │ ├── Person.cs │ │ ├── PickerSample.xaml │ │ ├── PickerSample.xaml.cs │ │ ├── SimpleBindingPage.xaml │ │ ├── SimpleBindingPage.xaml.cs │ │ ├── TableViewSample.xaml │ │ └── TableViewSample.xaml.cs ├── MvvmSample │ ├── .vs │ │ └── MvvmSample │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── MvvmSample.sln │ └── MvvmSample │ │ ├── MvvmSample.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── MvvmSample.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── MvvmSample.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.backup.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MvvmSample.UWP.csproj │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── MvvmSample.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── MvvmSample.iOS.csproj │ │ ├── MvvmSample.iOS.csproj.user │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── MvvmSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── DesignTimeBinding.xaml │ │ ├── DesignTimeBinding.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Model │ │ └── Person.cs │ │ ├── MvvmSample.csproj │ │ └── ViewModel │ │ └── PersonViewModel.cs └── Resources │ ├── .vs │ └── Resources │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo │ ├── Resources.sln │ └── Resources │ ├── Resources.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources.Android.csproj │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ ├── Tabbar.xml │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── icon.xml │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ ├── icon.png │ │ └── launcher_foreground.png │ │ └── values │ │ ├── colors.xml │ │ └── styles.xml │ ├── Resources.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── Resources.UWP.csproj │ ├── Resources.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.iOS.csproj │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── Resources │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ └── Resources.csproj ├── Chapter8 ├── Brushes │ ├── .vs │ │ └── Brushes │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── Brushes.sln │ └── Brushes │ │ ├── Brushes.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Brushes.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── Brushes.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.backup.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── Brushes.UWP.csproj │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Brushes.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── Brushes.iOS.csproj │ │ ├── Brushes.iOS.csproj.user │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── Brushes │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── Brushes.csproj │ │ ├── LinearGradientPage.xaml │ │ ├── LinearGradientPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── RadialGradientPage.xaml │ │ ├── RadialGradientPage.xaml.cs │ │ ├── SolidColorPage.xaml │ │ └── SolidColorPage.xaml.cs └── Shapes │ ├── .vs │ └── Shapes │ │ └── v16 │ │ └── .suo │ ├── Shapes.sln │ └── Shapes │ ├── Shapes.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── Shapes.Android.csproj │ └── Shapes.Android.csproj.user │ ├── Shapes.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── Shapes.UWP.csproj │ ├── Shapes.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── Shapes.iOS.csproj │ └── Shapes │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── PolylinePage.xaml │ ├── PolylinePage.xaml.cs │ └── Shapes.csproj ├── Chapter9 ├── NativeAccess │ ├── .vs │ │ └── NativeAccess │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ ├── NativeAccess.sln │ └── NativeAccess │ │ ├── NativeAccess.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── AutoSelectEntryRenderer.cs │ │ ├── MainActivity.cs │ │ ├── NativeAccess.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.designer.cs │ │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ ├── NativeAccess.UWP │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.backup.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── AutoSelectEntryRenderer.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NativeAccess.UWP.csproj │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── NativeAccess.iOS │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ ├── AutoSelectEntryRenderer.cs │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NativeAccess.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── LaunchScreen.storyboard │ │ └── NativeAccess │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── AutoSelectEntry.cs │ │ ├── CustomRenderersPage.xaml │ │ ├── CustomRenderersPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NativeAccess.csproj │ │ ├── NativeViewsPage.xaml │ │ ├── NativeViewsPage.xaml.cs │ │ ├── PlatformSpecificsPage.xaml │ │ └── PlatformSpecificsPage.xaml.cs └── XamarinEssentials │ ├── .vs │ └── XamarinEssentials │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ └── v16 │ │ └── .suo │ ├── XamarinEssentials.sln │ └── XamarinEssentials │ ├── XamarinEssentials.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── layout │ │ │ ├── Tabbar.xml │ │ │ └── Toolbar.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── icon.xml │ │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── icon.png │ │ │ └── launcher_foreground.png │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── XamarinEssentials.Android.csproj │ ├── XamarinEssentials.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── StoreLogo.backup.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── XamarinEssentials.UWP.csproj │ ├── XamarinEssentials.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── LaunchScreen.storyboard │ └── XamarinEssentials.iOS.csproj │ └── XamarinEssentials │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ └── XamarinEssentials.csproj ├── LICENSE ├── README.md └── cover.png /Chapter10/AppLifecycle/.vs/AppLifecycle/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/.vs/AppLifecycle/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/.vs/AppLifecycle/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/.vs/AppLifecycle/v16/.suo -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle.sln -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/App.xaml -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/App.xaml.cs -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/AppLifecycle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/AppLifecycle.csproj -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/MainPage.xaml -------------------------------------------------------------------------------- /Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter10/AppLifecycle/AppLifecycle/AppLifecycle/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter4/.vs/Layouts/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/.vs/Layouts/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter4/.vs/Layouts/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/.vs/Layouts/v16/.suo -------------------------------------------------------------------------------- /Chapter4/Layouts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts.sln -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Layouts.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Layouts.Android.csproj -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Layouts.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Layouts.UWP.csproj -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Layouts.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Layouts.iOS.csproj -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/AbsoluteLayoutExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/AbsoluteLayoutExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/AbsoluteLayoutExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/AbsoluteLayoutExample.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/App.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/App.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/ContentViewExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/ContentViewExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/ContentViewExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/ContentViewExample.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/FlexLayoutExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/FlexLayoutExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/FlexLayoutExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/FlexLayoutExample.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/FrameExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/FrameExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/FrameExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/FrameExample.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/GridExamplePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/GridExamplePage.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/GridExamplePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/GridExamplePage.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/Layouts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/Layouts.csproj -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/Layouts.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/Layouts.csproj.user -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/MainPage.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/RelativeLayoutExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/RelativeLayoutExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/RelativeLayoutExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/RelativeLayoutExample.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/ScrollViewExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/ScrollViewExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/ScrollViewExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/ScrollViewExample.xaml.cs -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/StackLayoutExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/StackLayoutExample.xaml -------------------------------------------------------------------------------- /Chapter4/Layouts/Layouts/StackLayoutExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter4/Layouts/Layouts/StackLayoutExample.xaml.cs -------------------------------------------------------------------------------- /Chapter5/.vs/CommonViews/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/.vs/CommonViews/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter5/.vs/CommonViews/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/.vs/CommonViews/v16/.suo -------------------------------------------------------------------------------- /Chapter5/CommonViews.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews.sln -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/CommonViews.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/CommonViews.Android.csproj -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/CommonViews.Android.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/0.stamp: -------------------------------------------------------------------------------- 1 | ECBF72E9703955DE -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/43.stamp: -------------------------------------------------------------------------------- 1 | FB0A3D6BDD6665E7 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/44.stamp: -------------------------------------------------------------------------------- 1 | BE5118F60353F810 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/48.stamp: -------------------------------------------------------------------------------- 1 | 799BA2F0BA3F951F -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/48/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/49.stamp: -------------------------------------------------------------------------------- 1 | 6342F4FF688DC436 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/49/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/50.stamp: -------------------------------------------------------------------------------- 1 | DA451F404B22457A -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/50/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/50/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/51.stamp: -------------------------------------------------------------------------------- 1 | E0C2D0D03F1E3B17 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/51/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/51/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/52.stamp: -------------------------------------------------------------------------------- 1 | 78E23953B2E72E7F -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/52/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/52/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/53.stamp: -------------------------------------------------------------------------------- 1 | 6540F6FCF9751076 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/53/jl/R.txt: -------------------------------------------------------------------------------- 1 | int id view_tree_saved_state_registry_owner 0x0 2 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/54.stamp: -------------------------------------------------------------------------------- 1 | 00B2785070AD07DA -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/54/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/54/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/55.stamp: -------------------------------------------------------------------------------- 1 | 066C458BCD391F94 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/55/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/56.stamp: -------------------------------------------------------------------------------- 1 | 8388EB91142F8D82 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/56/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/57.stamp: -------------------------------------------------------------------------------- 1 | 51B460E923D3FD83 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/57/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/58.stamp: -------------------------------------------------------------------------------- 1 | 109841B2AB535CED -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/58/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/58/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/59.stamp: -------------------------------------------------------------------------------- 1 | AEEDE834D121D122 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/59/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/60.stamp: -------------------------------------------------------------------------------- 1 | 4168DB6035D5C427 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/60/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/60/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/61.stamp: -------------------------------------------------------------------------------- 1 | 5C2425CE20ACB6B3 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/61/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/61/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/62.stamp: -------------------------------------------------------------------------------- 1 | ADC14C1279024346 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/62/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/62/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/63.stamp: -------------------------------------------------------------------------------- 1 | 83E628A401FFEFB3 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/63/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/63/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/64.stamp: -------------------------------------------------------------------------------- 1 | EF37D2C4F931DC45 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/64/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/65.stamp: -------------------------------------------------------------------------------- 1 | 6CEF3AA865FDE355 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/65/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/65/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/66.stamp: -------------------------------------------------------------------------------- 1 | A93EA1D695F531B3 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/66/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/66/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/67.stamp: -------------------------------------------------------------------------------- 1 | B291D54196AFF33D -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/67/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/67/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/67/jl/public.txt: -------------------------------------------------------------------------------- 1 | attr drawerLayoutStyle 2 | attr elevation 3 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/68.stamp: -------------------------------------------------------------------------------- 1 | 7BD91A78B0F77C26 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/68/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/69.stamp: -------------------------------------------------------------------------------- 1 | 300FD5ED166C0CAC -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/69/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/69/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/70.stamp: -------------------------------------------------------------------------------- 1 | 327E59BCC5156568 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/70/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/70/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/71.stamp: -------------------------------------------------------------------------------- 1 | BE88B9429A1EB5EC -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/71/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/71/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/72.stamp: -------------------------------------------------------------------------------- 1 | 35E8E15B20203641 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/72/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/72/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/73.stamp: -------------------------------------------------------------------------------- 1 | 08FB1CABE015BA10 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/73/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/73/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/74.stamp: -------------------------------------------------------------------------------- 1 | 4A4C94BB3EA4EB86 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/74/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/74/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/75.stamp: -------------------------------------------------------------------------------- 1 | 73B84191A2455D7D -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/75/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/75/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/76.stamp: -------------------------------------------------------------------------------- 1 | 3613EA5D3AC4382F -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/76/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/77.stamp: -------------------------------------------------------------------------------- 1 | 0DFAD006A76E696C -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/77/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/77/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/78.stamp: -------------------------------------------------------------------------------- 1 | F01D96135B5FA399 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/78/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/79.stamp: -------------------------------------------------------------------------------- 1 | 11CB37DB691B8F33 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/79/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/80.stamp: -------------------------------------------------------------------------------- 1 | B07C0B646B57A727 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/80/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/81.stamp: -------------------------------------------------------------------------------- 1 | 5F83CA210322FEC3 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/81/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/81/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/82.stamp: -------------------------------------------------------------------------------- 1 | 4603CB4CC4CB585F -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/82/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/82/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/83.stamp: -------------------------------------------------------------------------------- 1 | DD7412F1DBFCC773 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/83/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/83/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/84.stamp: -------------------------------------------------------------------------------- 1 | 67DE3B16FA6B9C75 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/84/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/84/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/85.stamp: -------------------------------------------------------------------------------- 1 | 5B601106AEB1C375 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/85/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/85/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/86.stamp: -------------------------------------------------------------------------------- 1 | C4ADDC17A34D0543 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/map.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/lp/map.cache -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/100/stamp/_ResolveLibraryProjectImports.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/0.stamp: -------------------------------------------------------------------------------- 1 | 9124A2CA088DDCBB -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/1.stamp: -------------------------------------------------------------------------------- 1 | 6489474E196E2AE3 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/10.stamp: -------------------------------------------------------------------------------- 1 | 110883BA1A8EA3D8 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/10/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/10/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/11.stamp: -------------------------------------------------------------------------------- 1 | 7AB5B6F9844DCA44 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/12.stamp: -------------------------------------------------------------------------------- 1 | 3C7E0D71B7D2D475 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/12/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/12/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/13.stamp: -------------------------------------------------------------------------------- 1 | 1A788920D1F98334 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/13/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/13/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/14.stamp: -------------------------------------------------------------------------------- 1 | 5FCEFF90A682750C -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/14/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/14/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/15.stamp: -------------------------------------------------------------------------------- 1 | CAC512A4B99316EF -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/15/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/15/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/16.stamp: -------------------------------------------------------------------------------- 1 | E11351252DF4ABDF -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/16/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/16/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/17.stamp: -------------------------------------------------------------------------------- 1 | D48A7CF946B55039 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/17/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/17/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/18.stamp: -------------------------------------------------------------------------------- 1 | 377EFF544D7BF9B9 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/18/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/18/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/19.stamp: -------------------------------------------------------------------------------- 1 | 672EA9AA9469797B -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/19/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/19/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/2.stamp: -------------------------------------------------------------------------------- 1 | C85CF7E0ACCC8347 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/2/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/2/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/20.stamp: -------------------------------------------------------------------------------- 1 | 737B281C18F201B2 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/20/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/20/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/21.stamp: -------------------------------------------------------------------------------- 1 | 448EB73401D8FDD6 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/21/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/21/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/22.stamp: -------------------------------------------------------------------------------- 1 | 2FDAB54A5FECA6FC -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/22/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/22/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/23.stamp: -------------------------------------------------------------------------------- 1 | E1F3FC6D6D04FBAF -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/23/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/23/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/24.stamp: -------------------------------------------------------------------------------- 1 | 4637B5A4EEC532A6 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/24/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/24/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/25.stamp: -------------------------------------------------------------------------------- 1 | 6C2291646ED58F0B -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/25/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/25/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/26.stamp: -------------------------------------------------------------------------------- 1 | 5B7499FB9A5F9A33 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/26/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/26/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/27.stamp: -------------------------------------------------------------------------------- 1 | 5875FC420E453CA5 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/27/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/27/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/28.stamp: -------------------------------------------------------------------------------- 1 | 5141D60E5007C5F7 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/28/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/28/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/29.stamp: -------------------------------------------------------------------------------- 1 | D08DF08D20FBC19F -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/29/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/29/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/3.stamp: -------------------------------------------------------------------------------- 1 | 27F33C895667A273 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/30.stamp: -------------------------------------------------------------------------------- 1 | E534FA855BBBED97 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/30/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/30/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/31.stamp: -------------------------------------------------------------------------------- 1 | 4340BCEEADD38701 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/31/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/31/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/32.stamp: -------------------------------------------------------------------------------- 1 | 223F0CA7EF961C21 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/32/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/32/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/33.stamp: -------------------------------------------------------------------------------- 1 | 6A6F069539684294 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/33/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/33/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/34.stamp: -------------------------------------------------------------------------------- 1 | 10683EFCC4DA8314 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/34/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/34/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/35.stamp: -------------------------------------------------------------------------------- 1 | BF6D5F9D1C03B4F5 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/35/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/35/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/36.stamp: -------------------------------------------------------------------------------- 1 | 349C74A041AF1AC1 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/36/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/36/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/37.stamp: -------------------------------------------------------------------------------- 1 | C3FB3A0E855843E5 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/37/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/37/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/38.stamp: -------------------------------------------------------------------------------- 1 | 1B75B670CEC8AB5F -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/39.stamp: -------------------------------------------------------------------------------- 1 | 9FC75DFBD394B118 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/4.stamp: -------------------------------------------------------------------------------- 1 | 282D28432A5D3EC8 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/4/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/4/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/5.stamp: -------------------------------------------------------------------------------- 1 | 116A00C259C3024A -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/5/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/5/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/6.stamp: -------------------------------------------------------------------------------- 1 | 0A45B9C6F96F4030 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/6/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/6/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/7.stamp: -------------------------------------------------------------------------------- 1 | A8B0AF0068207E10 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/7/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/7/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/7/jl/bin/proguard.txt: -------------------------------------------------------------------------------- 1 | -keep class * extends android.arch.lifecycle.ViewModel { 2 | (); 3 | } -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/7/jl/proguard.txt: -------------------------------------------------------------------------------- 1 | -keep class * extends android.arch.lifecycle.ViewModel { 2 | (); 3 | } -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/8.stamp: -------------------------------------------------------------------------------- 1 | 00699F321A5CE0D5 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/8/jl/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/8/jl/R.txt -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/9.stamp: -------------------------------------------------------------------------------- 1 | 45C591C4A0A48AB7 -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/map.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/lp/map.cache -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/Debug/90/stamp/_ResolveLibraryProjectImports.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/project.assets.json -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.Android/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.Android/obj/project.nuget.cache -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/CommonViews.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/CommonViews.UWP.csproj -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/CommonViews.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/CommonViews.iOS.csproj -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/CommonViews.iOS.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/CommonViews.iOS.csproj.user -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/obj/iPhoneSimulator/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/obj/project.assets.json -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews.iOS/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews.iOS/obj/project.nuget.cache -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/ActivityIndicatorSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/ActivityIndicatorSample.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/ActivityIndicatorSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/ActivityIndicatorSample.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/App.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/App.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/CommonViews.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/CommonViews.csproj -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/DisplayAlertPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/DisplayAlertPage.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/DisplayAlertPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/DisplayAlertPage.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/DisplayingHtmlSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/DisplayingHtmlSample.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/DisplayingHtmlSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/DisplayingHtmlSample.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/ImageWithGestureRecognizerSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/ImageWithGestureRecognizerSample.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/MainPage.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/MediaElementExample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/MediaElementExample.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/MediaElementExample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/MediaElementExample.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/SearchBarSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/SearchBarSample.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/SearchBarSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/SearchBarSample.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/ValueSelectionSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/ValueSelectionSample.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/ValueSelectionSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/ValueSelectionSample.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/WorkingWithDatesAndTime.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/WorkingWithDatesAndTime.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/WorkingWithDatesAndTime.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/WorkingWithDatesAndTime.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/WorkingWithText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/WorkingWithText.xaml -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/WorkingWithText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/WorkingWithText.xaml.cs -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/obj/CommonViews.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/obj/CommonViews.csproj.nuget.g.props -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/obj/Debug/netstandard2.0/CommonViews.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bb945c51f64475a36f33d2dbab492863dd029867 2 | -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/obj/project.assets.json -------------------------------------------------------------------------------- /Chapter5/CommonViews/CommonViews/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/CommonViews/CommonViews/obj/project.nuget.cache -------------------------------------------------------------------------------- /Chapter5/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter5/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/.vs/IntroducingPages/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/IntroducingPages/.vs/IntroducingPages/v16/.suo -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/IntroducingPages/IntroducingPages.sln -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/IntroducingPages.Android.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/0.stamp: -------------------------------------------------------------------------------- 1 | ECBF72E9703955DE -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/43.stamp: -------------------------------------------------------------------------------- 1 | FB0A3D6BDD6665E7 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/44.stamp: -------------------------------------------------------------------------------- 1 | BE5118F60353F810 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/48.stamp: -------------------------------------------------------------------------------- 1 | 799BA2F0BA3F951F -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/48/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/49.stamp: -------------------------------------------------------------------------------- 1 | 6342F4FF688DC436 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/49/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/50.stamp: -------------------------------------------------------------------------------- 1 | DA451F404B22457A -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/51.stamp: -------------------------------------------------------------------------------- 1 | E0C2D0D03F1E3B17 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/52.stamp: -------------------------------------------------------------------------------- 1 | 78E23953B2E72E7F -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/53.stamp: -------------------------------------------------------------------------------- 1 | 6540F6FCF9751076 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/53/jl/R.txt: -------------------------------------------------------------------------------- 1 | int id view_tree_saved_state_registry_owner 0x0 2 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/54.stamp: -------------------------------------------------------------------------------- 1 | 00B2785070AD07DA -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/55.stamp: -------------------------------------------------------------------------------- 1 | 066C458BCD391F94 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/55/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/56.stamp: -------------------------------------------------------------------------------- 1 | 8388EB91142F8D82 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/56/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/57.stamp: -------------------------------------------------------------------------------- 1 | 51B460E923D3FD83 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/57/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/58.stamp: -------------------------------------------------------------------------------- 1 | 109841B2AB535CED -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/59.stamp: -------------------------------------------------------------------------------- 1 | AEEDE834D121D122 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/59/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/60.stamp: -------------------------------------------------------------------------------- 1 | 4168DB6035D5C427 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/61.stamp: -------------------------------------------------------------------------------- 1 | 5C2425CE20ACB6B3 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/62.stamp: -------------------------------------------------------------------------------- 1 | ADC14C1279024346 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/63.stamp: -------------------------------------------------------------------------------- 1 | 83E628A401FFEFB3 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/64.stamp: -------------------------------------------------------------------------------- 1 | EF37D2C4F931DC45 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/64/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/65.stamp: -------------------------------------------------------------------------------- 1 | 6CEF3AA865FDE355 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/66.stamp: -------------------------------------------------------------------------------- 1 | A93EA1D695F531B3 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/67.stamp: -------------------------------------------------------------------------------- 1 | B291D54196AFF33D -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/67/jl/public.txt: -------------------------------------------------------------------------------- 1 | attr drawerLayoutStyle 2 | attr elevation 3 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/68.stamp: -------------------------------------------------------------------------------- 1 | 7BD91A78B0F77C26 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/68/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/69.stamp: -------------------------------------------------------------------------------- 1 | 300FD5ED166C0CAC -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/70.stamp: -------------------------------------------------------------------------------- 1 | 327E59BCC5156568 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/71.stamp: -------------------------------------------------------------------------------- 1 | BE88B9429A1EB5EC -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/72.stamp: -------------------------------------------------------------------------------- 1 | 35E8E15B20203641 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/73.stamp: -------------------------------------------------------------------------------- 1 | 08FB1CABE015BA10 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/74.stamp: -------------------------------------------------------------------------------- 1 | 4A4C94BB3EA4EB86 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/75.stamp: -------------------------------------------------------------------------------- 1 | 73B84191A2455D7D -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/76.stamp: -------------------------------------------------------------------------------- 1 | 3613EA5D3AC4382F -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/76/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/77.stamp: -------------------------------------------------------------------------------- 1 | 0DFAD006A76E696C -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/78.stamp: -------------------------------------------------------------------------------- 1 | F01D96135B5FA399 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/78/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/79.stamp: -------------------------------------------------------------------------------- 1 | 11CB37DB691B8F33 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/79/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/80.stamp: -------------------------------------------------------------------------------- 1 | B07C0B646B57A727 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/80/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/81.stamp: -------------------------------------------------------------------------------- 1 | 5F83CA210322FEC3 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/82.stamp: -------------------------------------------------------------------------------- 1 | 4603CB4CC4CB585F -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/83.stamp: -------------------------------------------------------------------------------- 1 | DD7412F1DBFCC773 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/84.stamp: -------------------------------------------------------------------------------- 1 | 67DE3B16FA6B9C75 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/lp/85.stamp: -------------------------------------------------------------------------------- 1 | 5B601106AEB1C375 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/100/stamp/_ResolveLibraryProjectImports.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/0.stamp: -------------------------------------------------------------------------------- 1 | 9124A2CA088DDCBB -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/1.stamp: -------------------------------------------------------------------------------- 1 | 6489474E196E2AE3 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/10.stamp: -------------------------------------------------------------------------------- 1 | 110883BA1A8EA3D8 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/11.stamp: -------------------------------------------------------------------------------- 1 | 7AB5B6F9844DCA44 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/12.stamp: -------------------------------------------------------------------------------- 1 | 3C7E0D71B7D2D475 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/13.stamp: -------------------------------------------------------------------------------- 1 | 1A788920D1F98334 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/14.stamp: -------------------------------------------------------------------------------- 1 | 5FCEFF90A682750C -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/15.stamp: -------------------------------------------------------------------------------- 1 | CAC512A4B99316EF -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/16.stamp: -------------------------------------------------------------------------------- 1 | E11351252DF4ABDF -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/16/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/16/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/17.stamp: -------------------------------------------------------------------------------- 1 | D48A7CF946B55039 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/18.stamp: -------------------------------------------------------------------------------- 1 | 377EFF544D7BF9B9 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/19.stamp: -------------------------------------------------------------------------------- 1 | 672EA9AA9469797B -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/2.stamp: -------------------------------------------------------------------------------- 1 | C85CF7E0ACCC8347 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/2/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/2/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/20.stamp: -------------------------------------------------------------------------------- 1 | 737B281C18F201B2 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/20/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/20/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/21.stamp: -------------------------------------------------------------------------------- 1 | 448EB73401D8FDD6 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/22.stamp: -------------------------------------------------------------------------------- 1 | 2FDAB54A5FECA6FC -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/23.stamp: -------------------------------------------------------------------------------- 1 | E1F3FC6D6D04FBAF -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/23/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/23/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/24.stamp: -------------------------------------------------------------------------------- 1 | 4637B5A4EEC532A6 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/25.stamp: -------------------------------------------------------------------------------- 1 | 6C2291646ED58F0B -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/25/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/25/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/26.stamp: -------------------------------------------------------------------------------- 1 | 5B7499FB9A5F9A33 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/27.stamp: -------------------------------------------------------------------------------- 1 | 5875FC420E453CA5 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/27/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/27/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/28.stamp: -------------------------------------------------------------------------------- 1 | 5141D60E5007C5F7 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/29.stamp: -------------------------------------------------------------------------------- 1 | D08DF08D20FBC19F -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/3.stamp: -------------------------------------------------------------------------------- 1 | 27F33C895667A273 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/30.stamp: -------------------------------------------------------------------------------- 1 | E534FA855BBBED97 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/31.stamp: -------------------------------------------------------------------------------- 1 | 4340BCEEADD38701 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/32.stamp: -------------------------------------------------------------------------------- 1 | 223F0CA7EF961C21 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/33.stamp: -------------------------------------------------------------------------------- 1 | 6A6F069539684294 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/34.stamp: -------------------------------------------------------------------------------- 1 | 10683EFCC4DA8314 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/35.stamp: -------------------------------------------------------------------------------- 1 | BF6D5F9D1C03B4F5 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/36.stamp: -------------------------------------------------------------------------------- 1 | 349C74A041AF1AC1 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/36/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/36/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/37.stamp: -------------------------------------------------------------------------------- 1 | C3FB3A0E855843E5 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/38.stamp: -------------------------------------------------------------------------------- 1 | 1B75B670CEC8AB5F -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/39.stamp: -------------------------------------------------------------------------------- 1 | 9FC75DFBD394B118 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/4.stamp: -------------------------------------------------------------------------------- 1 | 282D28432A5D3EC8 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/4/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/4/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/5.stamp: -------------------------------------------------------------------------------- 1 | 116A00C259C3024A -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/5/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/5/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/6.stamp: -------------------------------------------------------------------------------- 1 | 0A45B9C6F96F4030 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/6/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/6/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/7.stamp: -------------------------------------------------------------------------------- 1 | A8B0AF0068207E10 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/7/jl/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/7/jl/bin/R.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/7/jl/bin/proguard.txt: -------------------------------------------------------------------------------- 1 | -keep class * extends android.arch.lifecycle.ViewModel { 2 | (); 3 | } -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/7/jl/proguard.txt: -------------------------------------------------------------------------------- 1 | -keep class * extends android.arch.lifecycle.ViewModel { 2 | (); 3 | } -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/8.stamp: -------------------------------------------------------------------------------- 1 | 00699F321A5CE0D5 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/lp/9.stamp: -------------------------------------------------------------------------------- 1 | 45C591C4A0A48AB7 -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.Android/obj/Debug/90/stamp/_ResolveLibraryProjectImports.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages.iOS/obj/iPhoneSimulator/Debug/build.force: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/IntroducingPages/IntroducingPages/IntroducingPages/App.xaml -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/IntroducingPages/IntroducingPages/obj/Debug/netstandard2.0/IntroducingPages.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 96240214b81c3d865edc9c5c99c66bafec78906f 2 | -------------------------------------------------------------------------------- /Chapter6/IntroducingPages/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/IntroducingPages/UpgradeLog.htm -------------------------------------------------------------------------------- /Chapter6/ShellDemo/.vs/ShellDemo/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/.vs/ShellDemo/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter6/ShellDemo/.vs/ShellDemo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/.vs/ShellDemo/v16/.suo -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo.sln -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/about.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/about@2x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/about@3x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/contact.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/contact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/contact@2x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/contact@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/contact@3x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/home.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/home@2x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/home@3x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/tab_feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/tab_feed.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/tab_feed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/tab_feed@2x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/tab_feed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/tab_feed@3x.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/xamarin_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/Resources/xamarin_logo.png -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/ShellDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/ShellDemo.iOS.csproj -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/ShellDemo.iOS.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo.iOS/ShellDemo.iOS.csproj.user -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/App.xaml -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/App.xaml.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/AppShell.xaml -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/AppShell.xaml.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/GettingStarted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/GettingStarted.txt -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/PeopleHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/PeopleHandler.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/ShellDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/ShellDemo.csproj -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/ShellDemo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/ShellDemo.csproj.user -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/AboutPage.xaml -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/ContactPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/ContactPage.xaml -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/ContactPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/ContactPage.xaml.cs -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/HomePage.xaml -------------------------------------------------------------------------------- /Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter6/ShellDemo/ShellDemo/ShellDemo/Views/HomePage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/.vs/DataBinding/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/.vs/DataBinding/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter7/DataBinding/.vs/DataBinding/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/.vs/DataBinding/v16/.suo -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding.sln -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/App.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/App.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/CarouselViewSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/CarouselViewSample.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/CollectionViewSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/CollectionViewSample.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/ConverterSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/ConverterSample.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/ConverterSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/ConverterSample.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/DataBinding.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/DataBinding.csproj -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/Fruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/Fruit.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/HtmlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/HtmlConverter.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/HtmlModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/HtmlModel.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/ListViewSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/ListViewSample.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/ListViewSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/ListViewSample.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/MainPage.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/People.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/People.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/Person.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/PickerSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/PickerSample.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/PickerSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/PickerSample.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/SimpleBindingPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/SimpleBindingPage.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/SimpleBindingPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/SimpleBindingPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/TableViewSample.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/TableViewSample.xaml -------------------------------------------------------------------------------- /Chapter7/DataBinding/DataBinding/DataBinding/TableViewSample.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/DataBinding/DataBinding/DataBinding/TableViewSample.xaml.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/.vs/MvvmSample/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/.vs/MvvmSample/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter7/MvvmSample/.vs/MvvmSample/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/.vs/MvvmSample/v16/.suo -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample.sln -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/MvvmSample.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/MvvmSample.UWP.csproj -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/MvvmSample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/MvvmSample.iOS.csproj -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/App.xaml -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/App.xaml.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/DesignTimeBinding.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/DesignTimeBinding.xaml -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/DesignTimeBinding.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/DesignTimeBinding.xaml.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/MainPage.xaml -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/Model/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/Model/Person.cs -------------------------------------------------------------------------------- /Chapter7/MvvmSample/MvvmSample/MvvmSample/MvvmSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/MvvmSample/MvvmSample/MvvmSample/MvvmSample.csproj -------------------------------------------------------------------------------- /Chapter7/Resources/.vs/Resources/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/.vs/Resources/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter7/Resources/.vs/Resources/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/.vs/Resources/v16/.suo -------------------------------------------------------------------------------- /Chapter7/Resources/Resources.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources.sln -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.UWP/Resources.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.UWP/Resources.UWP.csproj -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/Resources.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/Resources.iOS.csproj -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources/App.xaml -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources/App.xaml.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources/MainPage.xaml -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter7/Resources/Resources/Resources/Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter7/Resources/Resources/Resources/Resources.csproj -------------------------------------------------------------------------------- /Chapter8/Brushes/.vs/Brushes/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/.vs/Brushes/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter8/Brushes/.vs/Brushes/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/.vs/Brushes/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes.sln -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.Android/Brushes.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.Android/Brushes.Android.csproj -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Brushes.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Brushes.UWP.csproj -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Brushes.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Brushes.iOS.csproj -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Brushes.iOS.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Brushes.iOS.csproj.user -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/App.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/App.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/Brushes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/Brushes.csproj -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/LinearGradientPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/LinearGradientPage.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/LinearGradientPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/LinearGradientPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/MainPage.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/RadialGradientPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/RadialGradientPage.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/RadialGradientPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/RadialGradientPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/SolidColorPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/SolidColorPage.xaml -------------------------------------------------------------------------------- /Chapter8/Brushes/Brushes/Brushes/SolidColorPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Brushes/Brushes/Brushes/SolidColorPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/.vs/Shapes/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/.vs/Shapes/v16/.suo -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes.sln -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/MainActivity.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Shapes.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Shapes.Android.csproj -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.Android/Shapes.Android.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.Android/Shapes.Android.csproj.user -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.UWP/Shapes.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.UWP/Shapes.UWP.csproj -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes.iOS/Shapes.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes.iOS/Shapes.iOS.csproj -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/App.xaml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/App.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/MainPage.xaml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/PolylinePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/PolylinePage.xaml -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/PolylinePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/PolylinePage.xaml.cs -------------------------------------------------------------------------------- /Chapter8/Shapes/Shapes/Shapes/Shapes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter8/Shapes/Shapes/Shapes/Shapes.csproj -------------------------------------------------------------------------------- /Chapter9/NativeAccess/.vs/NativeAccess/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/.vs/NativeAccess/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /Chapter9/NativeAccess/.vs/NativeAccess/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/.vs/NativeAccess/v16/.suo -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess.sln -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess.UWP/App.xaml -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess.iOS/Info.plist -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess.iOS/Main.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/App.xaml -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/App.xaml.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/AutoSelectEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/AutoSelectEntry.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/MainPage.xaml -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/MainPage.xaml.cs -------------------------------------------------------------------------------- /Chapter9/NativeAccess/NativeAccess/NativeAccess/NativeAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/NativeAccess/NativeAccess/NativeAccess/NativeAccess.csproj -------------------------------------------------------------------------------- /Chapter9/XamarinEssentials/.vs/XamarinEssentials/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/XamarinEssentials/.vs/XamarinEssentials/v16/.suo -------------------------------------------------------------------------------- /Chapter9/XamarinEssentials/XamarinEssentials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/Chapter9/XamarinEssentials/XamarinEssentials.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/README.md -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyncfusionSuccinctlyE-Books/Xamarin.Forms-Succinctly/HEAD/cover.png --------------------------------------------------------------------------------