实例介绍
使用xamarin.form实现的一个固定资产盘点系统,实现了PDA扫描盘点,盘点记录查询、资产明细信息。后台采用webapi接口实现。
【实例截图】
【核心代码】
10168172-bdc6-43e2-b027-c7e1c1ed1377
└── PdaApp
├── PdaApp
│ ├── PdaApp
│ │ ├── Admin.cs
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ └── netstandard2.0
│ │ │ │ ├── images
│ │ │ │ │ └── resizeApi.png
│ │ │ │ ├── PdaApp.deps.json
│ │ │ │ ├── PdaApp.dll
│ │ │ │ ├── PdaApp.dll.mdb
│ │ │ │ └── PdaApp.pdb
│ │ │ └── Release
│ │ │ └── netstandard2.0
│ │ │ ├── images
│ │ │ │ └── resizeApi.png
│ │ │ ├── PdaApp.deps.json
│ │ │ ├── PdaApp.dll
│ │ │ └── PdaApp.pdb
│ │ ├── Dll
│ │ │ ├── FixedAssetsServer.cs
│ │ │ └── UserServer.cs
│ │ ├── images
│ │ │ └── resizeApi.png
│ │ ├── logo.ico
│ │ ├── Models
│ │ │ ├── FixedAssetsInfoModel.cs
│ │ │ ├── Inventory_LogModel.cs
│ │ │ └── UserModer.cs
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ └── netstandard2.0
│ │ │ │ ├── App.xaml.g.cs
│ │ │ │ ├── Pages
│ │ │ │ │ ├── FixedAssetsInfo.xaml.g.cs
│ │ │ │ │ ├── MainPage.xaml.g.cs
│ │ │ │ │ ├── PagePdResult.xaml.g.cs
│ │ │ │ │ ├── PagePdStart.xaml.g.cs
│ │ │ │ │ ├── PageSetUp.xaml.g.cs
│ │ │ │ │ └── PageZcInfo.xaml.g.cs
│ │ │ │ ├── PdaApp.AssemblyInfo.cs
│ │ │ │ ├── PdaApp.AssemblyInfoInputs.cache
│ │ │ │ ├── PdaApp.assets.cache
│ │ │ │ ├── PdaApp.csprojAssemblyReference.cache
│ │ │ │ ├── PdaApp.csproj.CoreCompileInputs.cache
│ │ │ │ ├── PdaApp.csproj.FileListAbsolute.txt
│ │ │ │ ├── PdaApp.dll
│ │ │ │ ├── PdaApp.pdb
│ │ │ │ └── XamlC.stamp
│ │ │ ├── PdaApp.csproj.nuget.cache
│ │ │ ├── PdaApp.csproj.nuget.g.props
│ │ │ ├── PdaApp.csproj.nuget.g.targets
│ │ │ ├── project.assets.json
│ │ │ └── Release
│ │ │ └── netstandard2.0
│ │ │ ├── App.xaml.g.cs
│ │ │ ├── Pages
│ │ │ │ ├── FixedAssetsInfo.xaml.g.cs
│ │ │ │ ├── MainPage.xaml.g.cs
│ │ │ │ ├── PagePdResult.xaml.g.cs
│ │ │ │ ├── PagePdStart.xaml.g.cs
│ │ │ │ ├── PageSetUp.xaml.g.cs
│ │ │ │ └── PageZcInfo.xaml.g.cs
│ │ │ ├── PdaApp.AssemblyInfo.cs
│ │ │ ├── PdaApp.AssemblyInfoInputs.cache
│ │ │ ├── PdaApp.assets.cache
│ │ │ ├── PdaApp.csprojAssemblyReference.cache
│ │ │ ├── PdaApp.csproj.CoreCompileInputs.cache
│ │ │ ├── PdaApp.csproj.FileListAbsolute.txt
│ │ │ ├── PdaApp.dll
│ │ │ ├── PdaApp.pdb
│ │ │ └── XamlC.stamp
│ │ ├── Pages
│ │ │ ├── FixedAssetsInfo.xaml
│ │ │ ├── FixedAssetsInfo.xaml.cs
│ │ │ ├── MainPage.xaml
│ │ │ ├── MainPage.xaml.cs
│ │ │ ├── PagePdResult.xaml
│ │ │ ├── PagePdResult.xaml.cs
│ │ │ ├── PagePdStart.xaml
│ │ │ ├── PagePdStart.xaml.cs
│ │ │ ├── PageSetUp.xaml
│ │ │ ├── PageSetUp.xaml.cs
│ │ │ ├── PageZcInfo.xaml
│ │ │ └── PageZcInfo.xaml.cs
│ │ └── PdaApp.csproj
│ └── PdaApp.Android
│ ├── Assets
│ │ └── AboutAssets.txt
│ ├── bin
│ │ ├── Debug
│ │ │ ├── com.companyname.apk
│ │ │ ├── com.companyname-arm64-v8a.apk
│ │ │ ├── com.companyname-arm64-v8a-Signed.apk
│ │ │ ├── com.companyname-armeabi.apk
│ │ │ ├── com.companyname-armeabi-Signed.apk
│ │ │ ├── com.companyname-armeabi-v7a.apk
│ │ │ ├── com.companyname-armeabi-v7a-Signed.apk
│ │ │ ├── com.companyname-Signed.apk
│ │ │ ├── com.companyname-x86_64.apk
│ │ │ ├── com.companyname-x86_64-Signed.apk
│ │ │ ├── com.companyname-x86.apk
│ │ │ ├── com.companyname-x86-Signed.apk
│ │ │ ├── FormsViewGroup.pdb
│ │ │ ├── images
│ │ │ │ └── resizeApi.png
│ │ │ ├── Mono.Android.pdb
│ │ │ ├── Mono.Security.pdb
│ │ │ ├── mscorlib.pdb
│ │ │ ├── Newtonsoft.Json.pdb
│ │ │ ├── PdaApp.Android.dll
│ │ │ ├── PdaApp.Android.pdb
│ │ │ ├── PdaApp.dll
│ │ │ ├── PdaApp.dll.mdb
│ │ │ ├── PdaApp.pdb
│ │ │ ├── System.ComponentModel.Composition.pdb
│ │ │ ├── System.Core.pdb
│ │ │ ├── System.Data.pdb
│ │ │ ├── System.IO.Compression.FileSystem.pdb
│ │ │ ├── System.IO.Compression.pdb
│ │ │ ├── System.Net.Http.pdb
│ │ │ ├── System.Numerics.pdb
│ │ │ ├── System.pdb
│ │ │ ├── System.Runtime.Serialization.pdb
│ │ │ ├── System.ServiceModel.Internals.pdb
│ │ │ ├── System.Transactions.pdb
│ │ │ ├── System.Web.Services.pdb
│ │ │ ├── System.Xml.Linq.pdb
│ │ │ ├── System.Xml.pdb
│ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ │ └── Xamarin.Forms.Xaml.pdb
│ │ └── Release
│ │ ├── com.companyname.apk
│ │ ├── com.companyname.apk.mSYM
│ │ │ ├── 0352ea2be4424bca828b7b2bdd1ed296
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── 0687bfa0fe1f4ee0add2491d796ed0a8
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── 0847f11b53c54b2ba71d3a5a7decc65f
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── 0c508f2d6c0d4d96899823437fe0e09a
│ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ └── Xamarin.Forms.Xaml.pdb
│ │ │ ├── 11deede52ccb4b9cb35c7921bffa948d
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 1261954495d34b72acaac10a35c4b2f7
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── 12ad6c5ead7b4fc2984a2d10c2ef114c
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── 14e9f0008ed046f1b06b6421a611f28e
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── 1554e19146e74d9ab5c9f38aacbea413
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── 177efa1e26fb41f7bbaa2acd881f357d
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── 1b201cbc42184db1914d73bef42ef773
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── 1d297cfe46a9445e965564d677efa8b8
│ │ │ │ ├── FormsViewGroup.dll
│ │ │ │ └── FormsViewGroup.pdb
│ │ │ ├── 21248e1f7bd3409abc2fecacbfdf0b9d
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── 2213e65041254f04b27ae6e57d256a86
│ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ └── Xamarin.Forms.Core.pdb
│ │ │ ├── 24531938142c4a528a9a7ffa01c8322a
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── 25395880452d4970867f7e23fdb18f13
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── 26f9fce6220f44bba75f8bd8eb1ca72d
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── 2920a2a19ec14e159fa268f4c3b31806
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── 2bc2b128d674429898dd6facd1a1094c
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── 321ec519bdfc44ff8eb1b755d3af3969
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── 3395614395f34959855d3617854ce181
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── 357374b99a1c4d5fa616f85c99b56cc6
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── 36f21e10a51e4ee28f7b11e5982a8d50
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── 37c5455d618546469c1628d313a7a5b6
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── 3c0e4ddb147e4cad92f1945e4bf0d8f8
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ ├── 3c511f2f5ad84260a876b2b4a3f9ce7d
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── 3ca3154706774c6082454da1aeb11f61
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 3d6daf0132104345a3cbfc3fef1dd51e
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ ├── 3d8630f34bdb4e9da45a050203287964
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── 40aebb2001864d3b865fc6f686e37b98
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── 47b7d53d3df942bea7bc3d961d142801
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── 4a902f48d3614d1ca0ddd9088ecd95f6
│ │ │ │ ├── PdaApp.dll
│ │ │ │ └── PdaApp.pdb
│ │ │ ├── 4c62a586a9ec4027a47d6cc783a2c587
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── 4c9556b4d550414aa8a74f3b5b32386a
│ │ │ │ ├── PdaApp.dll
│ │ │ │ └── PdaApp.pdb
│ │ │ ├── 4cb001fcd2dc43319ec5163b28a9a973
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── 4f5211a873da4c48bb4b8b7c71ecf8a4
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── 4fe79978300a43819cec45b0015037eb
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── 559ef34abf424c0daf64a5b6965dac85
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 590ac91e48ee40a085301ab42376fcd6
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── 5a2258a9c22c44388188c77d40367dde
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── 5a515d50467e4f2482dede70a240135d
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── 5adefe3435184f40921fc7533b8d3294
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── 5d52904ca40f4b58bdb51e4f7bc75074
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 5e4d66b05ffe48869a7a805abd74c4f1
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── 5ec64001134449bb83f909ebb8349358
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 5f190e0ac0a54701b211e1eae2c8304f
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── 63d7b8cffa6a48e1a89ee5787d7f0853
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 654cb0e92f3248459e687814ec0105bf
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── 693579cb356141208456332f2131aa31
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── 71a52623e53f489690206f121c7497da
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── 73ac86b4796f440683342842afea3f7f
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── 75311b1ea5a64c4eaf3212c55a3af903
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── 7561a357255a4a31941a252a2ca715c7
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── 75742e992e3841759322c653b87cfbe8
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── 784d7d21cb4e47c6aed96d29ae13122b
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── 810401cd14a04ecbab467f2627ccaef1
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── 81626d5b2a054a23bc21d192df515fa9
│ │ │ │ ├── Xamarin.Forms.Platform.Android.dll
│ │ │ │ └── Xamarin.Forms.Platform.Android.pdb
│ │ │ ├── 82e4068680c34b4ca6ca9d2a9d540c56
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── 86ffab21bed64d0fac9f7a6d026b96b7
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── 8dac60fdb6f4412888c7bc52e422df35
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ └── Mono.Android.pdb
│ │ │ ├── 953daa3bdd0641129a7f049fc34c8d24
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── 9638ed0ddcaa49b28f210b29d2148514
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── 96bb347b2f774ae6a35d9913556acffe
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── 97e06e6ea9bc48239a4a8d9dfecdf799
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── 97f36f44c98444ad829846da990fdc72
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── 9a51c4dda240471dbd93c53d6f7aa57d
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── 9b90afcc065242f08599bdb73ec765de
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ ├── 9ffd72f78a7748f4aac0737441d918c1
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── a17caa0385ce437abc51bbed7505e2c5
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── a265963afe114ff19a3b9625cb6b6568
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── a355ca2189fa4014899274b475db3c59
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── ab60706ab56e48469955065eb9e5f03a
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── acf22ec6b0e64b009fa1923601698e66
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── ad4c1e98be7a4f1985ac6c0bb1bbcbc0
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ ├── aeeb2bf935d948b094ac39b9899c4bbc
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── b01046bbe91144afb68bdf86449ac730
│ │ │ │ ├── PdaApp.dll
│ │ │ │ └── PdaApp.pdb
│ │ │ ├── b25c9c8f32af4504ae0ee72d18412353
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ ├── b51301d653554193a4b564e3e898512a
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── b970b8afdef54b21a6ddb0f81670123a
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── ba74c301a5044972a5eb859e2b83d77b
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── bb7ef4c8514b4aec9e50194c253002fa
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── bba265709e7b4010858174804e950f80
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ └── System.Xml.Linq.pdb
│ │ │ ├── bbe2e8c1ef9340bc9081104d85df3073
│ │ │ │ ├── System.Core.dll
│ │ │ │ └── System.Core.pdb
│ │ │ ├── be1f534fdf4a47ce9bab131e69f85096
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.dll.mdb
│ │ │ ├── be80ab8b81be48cfb7064a0c7d759afe
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── c30e10d98f2c43e78ddcfaa8b9b4e09e
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ └── System.ServiceModel.Internals.pdb
│ │ │ ├── c3b6337476e9443abbc4d0f246af4e9e
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ └── Newtonsoft.Json.pdb
│ │ │ ├── c51f919443cc47dbb94af88d65eb5a84
│ │ │ │ ├── System.Xml.dll
│ │ │ │ └── System.Xml.pdb
│ │ │ ├── c55228b5d60740f99d1f950f3d09d6af
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── c6cc5551916b4140af5f4edbfe17f5ca
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── c7cfedf3718e484c9a22da4446bdd3a0
│ │ │ │ ├── mscorlib.dll
│ │ │ │ └── mscorlib.pdb
│ │ │ ├── d6e1ba89437e449788d66710b4f6dc19
│ │ │ │ ├── System.Data.dll
│ │ │ │ └── System.Data.pdb
│ │ │ ├── d838d23d1aa5410691561b31470b9313
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ └── System.Net.Http.pdb
│ │ │ ├── dd586b3a521c49d093f048e7f2a19679
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── e3f5dff7d039485b87ba3320fe895e3c
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ └── System.Runtime.Serialization.pdb
│ │ │ ├── eb7dcd716eab4d2a841fb6a8ed879f96
│ │ │ │ ├── PdaApp.dll
│ │ │ │ └── PdaApp.pdb
│ │ │ ├── f371e402881e4cc28d6e3b21876bbf8a
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ └── Mono.Security.pdb
│ │ │ ├── f439f8485f134312822ebd118d07a9f0
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ └── System.Numerics.pdb
│ │ │ ├── f6f0bcf30c9d41d4be548e009cee0466
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ ├── f7490036d7bd4ebd94d0e0d00ba94a5b
│ │ │ │ ├── PdaApp.dll
│ │ │ │ └── PdaApp.pdb
│ │ │ ├── f86f6f53c7eb4a58af7f082884df51fe
│ │ │ │ ├── PdaApp.dll
│ │ │ │ └── PdaApp.pdb
│ │ │ ├── fd2cba7329674c109392eb9f360a6f73
│ │ │ │ ├── System.dll
│ │ │ │ └── System.pdb
│ │ │ └── manifest.xml
│ │ ├── FormsViewGroup.pdb
│ │ ├── images
│ │ │ └── resizeApi.png
│ │ ├── Mono.Android.pdb
│ │ ├── Mono.Security.pdb
│ │ ├── mscorlib.pdb
│ │ ├── Newtonsoft.Json.pdb
│ │ ├── PdaApp.Android.dll
│ │ ├── PdaApp.Android.dll.mdb
│ │ ├── PdaApp.Android.pdb
│ │ ├── PdaApp.dll
│ │ ├── PdaApp.pdb
│ │ ├── System.ComponentModel.Composition.pdb
│ │ ├── System.Core.pdb
│ │ ├── System.Data.pdb
│ │ ├── System.IO.Compression.FileSystem.pdb
│ │ ├── System.IO.Compression.pdb
│ │ ├── System.Net.Http.pdb
│ │ ├── System.Numerics.pdb
│ │ ├── System.pdb
│ │ ├── System.Runtime.Serialization.pdb
│ │ ├── System.ServiceModel.Internals.pdb
│ │ ├── System.Transactions.pdb
│ │ ├── System.Web.Services.pdb
│ │ ├── System.Xml.Linq.pdb
│ │ ├── System.Xml.pdb
│ │ ├── Xamarin.Forms.Core.pdb
│ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ └── Xamarin.Forms.Xaml.pdb
│ ├── MainActivity.cs
│ ├── obj
│ │ ├── Debug
│ │ │ └── 81
│ │ │ ├── 9a8fd0d8.deployment
│ │ │ ├── acw-map.txt
│ │ │ ├── android
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── arm64-v8a
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── armeabi
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── assets
│ │ │ │ │ ├── FormsViewGroup.dll
│ │ │ │ │ ├── FormsViewGroup.pdb
│ │ │ │ │ ├── Java.Interop.dll
│ │ │ │ │ ├── machine.config
│ │ │ │ │ ├── Mono.Android.dll
│ │ │ │ │ ├── Mono.Android.pdb
│ │ │ │ │ ├── Mono.Security.dll
│ │ │ │ │ ├── Mono.Security.pdb
│ │ │ │ │ ├── mscorlib.dll
│ │ │ │ │ ├── mscorlib.pdb
│ │ │ │ │ ├── netstandard.dll
│ │ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ │ ├── PdaApp.Android.pdb
│ │ │ │ │ ├── PdaApp.dll
│ │ │ │ │ ├── PdaApp.dll.mdb
│ │ │ │ │ ├── System.ComponentModel.Composition.dll
│ │ │ │ │ ├── System.ComponentModel.Composition.pdb
│ │ │ │ │ ├── System.Core.dll
│ │ │ │ │ ├── System.Core.pdb
│ │ │ │ │ ├── System.Data.dll
│ │ │ │ │ ├── System.Data.pdb
│ │ │ │ │ ├── System.dll
│ │ │ │ │ ├── System.IO.Compression.dll
│ │ │ │ │ ├── System.IO.Compression.FileSystem.dll
│ │ │ │ │ ├── System.IO.Compression.FileSystem.pdb
│ │ │ │ │ ├── System.IO.Compression.pdb
│ │ │ │ │ ├── System.Net.Http.dll
│ │ │ │ │ ├── System.Net.Http.pdb
│ │ │ │ │ ├── System.Numerics.dll
│ │ │ │ │ ├── System.Numerics.pdb
│ │ │ │ │ ├── System.pdb
│ │ │ │ │ ├── System.Runtime.dll
│ │ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ │ ├── System.Runtime.Serialization.pdb
│ │ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ │ ├── System.ServiceModel.Internals.pdb
│ │ │ │ │ ├── System.Transactions.dll
│ │ │ │ │ ├── System.Transactions.pdb
│ │ │ │ │ ├── System.Web.Services.dll
│ │ │ │ │ ├── System.Web.Services.pdb
│ │ │ │ │ ├── System.Xml.dll
│ │ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ │ ├── System.Xml.Linq.pdb
│ │ │ │ │ ├── System.Xml.pdb
│ │ │ │ │ ├── Xamarin.Android.Arch.Core.Common.dll
│ │ │ │ │ ├── Xamarin.Android.Arch.Lifecycle.Common.dll
│ │ │ │ │ ├── Xamarin.Android.Arch.Lifecycle.Runtime.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Animated.Vector.Drawable.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Annotations.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Compat.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Core.UI.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Core.Utils.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Design.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Fragment.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Media.Compat.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Transition.dll
│ │ │ │ │ ├── Xamarin.Android.Support.v4.dll
│ │ │ │ │ ├── Xamarin.Android.Support.v7.AppCompat.dll
│ │ │ │ │ ├── Xamarin.Android.Support.v7.CardView.dll
│ │ │ │ │ ├── Xamarin.Android.Support.v7.MediaRouter.dll
│ │ │ │ │ ├── Xamarin.Android.Support.v7.Palette.dll
│ │ │ │ │ ├── Xamarin.Android.Support.v7.RecyclerView.dll
│ │ │ │ │ ├── Xamarin.Android.Support.Vector.Drawable.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ │ ├── Xamarin.Forms.Platform.Android.dll
│ │ │ │ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ │ └── Xamarin.Forms.Xaml.pdb
│ │ │ │ ├── bin
│ │ │ │ │ ├── apk_per_abi.flag
│ │ │ │ │ ├── classes
│ │ │ │ │ │ ├── android
│ │ │ │ │ │ │ └── support
│ │ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── design
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ │ └── Snackbar_SnackbarActionClickImplementor.class
│ │ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── transition
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── v7
│ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class
│ │ │ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnClickListenerImplementor.class
│ │ │ │ │ │ │ │ └── AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class
│ │ │ │ │ │ │ ├── appcompat
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── mediarouter
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ ├── recyclerview
│ │ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ └── Toolbar_NavigationOnClickEventDispatcher.class
│ │ │ │ │ │ ├── com
│ │ │ │ │ │ │ └── companyname
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── md50fd46aac8846320f6c54213fa58eada3
│ │ │ │ │ │ │ └── MainActivity.class
│ │ │ │ │ │ ├── md51558244f76c53b6aeda52c8a337f2c37
│ │ │ │ │ │ │ ├── ActionSheetRenderer.class
│ │ │ │ │ │ │ ├── ActivityIndicatorRenderer.class
│ │ │ │ │ │ │ ├── AHorizontalScrollView.class
│ │ │ │ │ │ │ ├── AndroidActivity.class
│ │ │ │ │ │ │ ├── BaseCellView.class
│ │ │ │ │ │ │ ├── BorderDrawable.class
│ │ │ │ │ │ │ ├── BoxRenderer.class
│ │ │ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.class
│ │ │ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.class
│ │ │ │ │ │ │ ├── ButtonRenderer.class
│ │ │ │ │ │ │ ├── CarouselPageAdapter.class
│ │ │ │ │ │ │ ├── CarouselPageRenderer.class
│ │ │ │ │ │ │ ├── CellAdapter.class
│ │ │ │ │ │ │ ├── CellRenderer_RendererHolder.class
│ │ │ │ │ │ │ ├── ConditionalFocusLayout.class
│ │ │ │ │ │ │ ├── DatePickerRenderer.class
│ │ │ │ │ │ │ ├── DatePickerRenderer_TextFieldClickHandler.class
│ │ │ │ │ │ │ ├── EditorEditText.class
│ │ │ │ │ │ │ ├── EditorRenderer.class
│ │ │ │ │ │ │ ├── EntryCellEditText.class
│ │ │ │ │ │ │ ├── EntryCellView.class
│ │ │ │ │ │ │ ├── EntryEditText.class
│ │ │ │ │ │ │ ├── EntryRenderer.class
│ │ │ │ │ │ │ ├── FormattedStringExtensions_FontSpan.class
│ │ │ │ │ │ │ ├── FormattedStringExtensions_LineHeightSpan.class
│ │ │ │ │ │ │ ├── FormattedStringExtensions_TextDecorationSpan.class
│ │ │ │ │ │ │ ├── FormsAppCompatActivity.class
│ │ │ │ │ │ │ ├── FormsApplicationActivity.class
│ │ │ │ │ │ │ ├── FormsEditText.class
│ │ │ │ │ │ │ ├── FormsImageView.class
│ │ │ │ │ │ │ ├── FormsSeekBar.class
│ │ │ │ │ │ │ ├── FormsTextView.class
│ │ │ │ │ │ │ ├── FormsWebChromeClient.class
│ │ │ │ │ │ │ ├── FormsWebViewClient.class
│ │ │ │ │ │ │ ├── FrameRenderer.class
│ │ │ │ │ │ │ ├── FrameRenderer_FrameDrawable.class
│ │ │ │ │ │ │ ├── GenericAnimatorListener.class
│ │ │ │ │ │ │ ├── GenericMenuClickListener.class
│ │ │ │ │ │ │ ├── GestureManager_TapAndPanGestureDetector.class
│ │ │ │ │ │ │ ├── GroupedListViewAdapter.class
│ │ │ │ │ │ │ ├── ImageButtonRenderer.class
│ │ │ │ │ │ │ ├── ImageRenderer.class
│ │ │ │ │ │ │ ├── InnerGestureListener.class
│ │ │ │ │ │ │ ├── InnerScaleListener.class
│ │ │ │ │ │ │ ├── LabelRenderer.class
│ │ │ │ │ │ │ ├── ListViewAdapter.class
│ │ │ │ │ │ │ ├── ListViewRenderer.class
│ │ │ │ │ │ │ ├── ListViewRenderer_Container.class
│ │ │ │ │ │ │ ├── LocalizedDigitsKeyListener.class
│ │ │ │ │ │ │ ├── MasterDetailContainer.class
│ │ │ │ │ │ │ ├── MasterDetailRenderer.class
│ │ │ │ │ │ │ ├── NativeViewWrapperRenderer.class
│ │ │ │ │ │ │ ├── NavigationMenuRenderer.class
│ │ │ │ │ │ │ ├── NavigationMenuRenderer_MenuAdapter.class
│ │ │ │ │ │ │ ├── NavigationMenuRenderer_MenuElementView.class
│ │ │ │ │ │ │ ├── NavigationRenderer.class
│ │ │ │ │ │ │ ├── ObjectJavaBox_1.class
│ │ │ │ │ │ │ ├── OpenGLViewRenderer.class
│ │ │ │ │ │ │ ├── OpenGLViewRenderer_Renderer.class
│ │ │ │ │ │ │ ├── PageContainer.class
│ │ │ │ │ │ │ ├── PageExtensions_EmbeddedFragment.class
│ │ │ │ │ │ │ ├── PageExtensions_EmbeddedSupportFragment.class
│ │ │ │ │ │ │ ├── PageRenderer.class
│ │ │ │ │ │ │ ├── PickerRenderer.class
│ │ │ │ │ │ │ ├── PickerRenderer_PickerListener.class
│ │ │ │ │ │ │ ├── Platform_DefaultRenderer.class
│ │ │ │ │ │ │ ├── PlatformRenderer.class
│ │ │ │ │ │ │ ├── PowerSaveModeBroadcastReceiver.class
│ │ │ │ │ │ │ ├── ProgressBarRenderer.class
│ │ │ │ │ │ │ ├── ScrollViewContainer.class
│ │ │ │ │ │ │ ├── ScrollViewRenderer.class
│ │ │ │ │ │ │ ├── SearchBarRenderer.class
│ │ │ │ │ │ │ ├── SliderRenderer.class
│ │ │ │ │ │ │ ├── StepperRenderer.class
│ │ │ │ │ │ │ ├── StepperRenderer_StepperListener.class
│ │ │ │ │ │ │ ├── SwitchCellView.class
│ │ │ │ │ │ │ ├── SwitchRenderer.class
│ │ │ │ │ │ │ ├── TabbedRenderer.class
│ │ │ │ │ │ │ ├── TableViewModelRenderer.class
│ │ │ │ │ │ │ ├── TableViewRenderer.class
│ │ │ │ │ │ │ ├── TextCellRenderer_TextCellView.class
│ │ │ │ │ │ │ ├── TimePickerRenderer.class
│ │ │ │ │ │ │ ├── TimePickerRenderer_TimePickerListener.class
│ │ │ │ │ │ │ ├── ToolbarButton.class
│ │ │ │ │ │ │ ├── ToolbarImageButton.class
│ │ │ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer.class
│ │ │ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class
│ │ │ │ │ │ │ ├── ViewRenderer_2.class
│ │ │ │ │ │ │ ├── ViewRenderer.class
│ │ │ │ │ │ │ ├── VisualElementRenderer_1.class
│ │ │ │ │ │ │ ├── VisualElementTracker_AttachTracker.class
│ │ │ │ │ │ │ ├── WebViewRenderer.class
│ │ │ │ │ │ │ └── WebViewRenderer_JavascriptResult.class
│ │ │ │ │ │ ├── md58432a647068b097f9637064b8985a5e0
│ │ │ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.class
│ │ │ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.class
│ │ │ │ │ │ │ ├── ButtonRenderer.class
│ │ │ │ │ │ │ ├── CarouselPageRenderer.class
│ │ │ │ │ │ │ ├── FormsFragmentPagerAdapter_1.class
│ │ │ │ │ │ │ ├── FormsViewPager.class
│ │ │ │ │ │ │ ├── FragmentContainer.class
│ │ │ │ │ │ │ ├── FrameRenderer.class
│ │ │ │ │ │ │ ├── MasterDetailContainer.class
│ │ │ │ │ │ │ ├── MasterDetailPageRenderer.class
│ │ │ │ │ │ │ ├── NavigationPageRenderer.class
│ │ │ │ │ │ │ ├── NavigationPageRenderer_ClickListener.class
│ │ │ │ │ │ │ ├── NavigationPageRenderer_Container.class
│ │ │ │ │ │ │ ├── NavigationPageRenderer_DrawerMultiplexedListener.class
│ │ │ │ │ │ │ ├── PickerRenderer.class
│ │ │ │ │ │ │ ├── PickerRenderer_PickerListener.class
│ │ │ │ │ │ │ ├── Platform_ModalContainer.class
│ │ │ │ │ │ │ ├── SwitchRenderer.class
│ │ │ │ │ │ │ ├── TabbedPageRenderer.class
│ │ │ │ │ │ │ └── ViewRenderer_2.class
│ │ │ │ │ │ ├── md5f92e0daf340890c9667469657ee2ece8
│ │ │ │ │ │ │ ├── ButtonRenderer.class
│ │ │ │ │ │ │ ├── FrameRenderer.class
│ │ │ │ │ │ │ ├── ImageRenderer.class
│ │ │ │ │ │ │ └── LabelRenderer.class
│ │ │ │ │ │ └── mono
│ │ │ │ │ │ ├── android
│ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ ├── ApplicationRegistration.class
│ │ │ │ │ │ │ │ └── NotifyTimeZoneChanges.class
│ │ │ │ │ │ │ ├── Seppuku.class
│ │ │ │ │ │ │ └── support
│ │ │ │ │ │ │ ├── design
│ │ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ │ ├── AppBarLayout_OnOffsetChangedListenerImplementor.class
│ │ │ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemReselectedListenerImplementor.class
│ │ │ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemSelectedListenerImplementor.class
│ │ │ │ │ │ │ │ ├── NavigationView_OnNavigationItemSelectedListenerImplementor.class
│ │ │ │ │ │ │ │ ├── SwipeDismissBehavior_OnDismissListenerImplementor.class
│ │ │ │ │ │ │ │ └── TabLayout_OnTabSelectedListenerImplementor.class
│ │ │ │ │ │ │ ├── transition
│ │ │ │ │ │ │ │ └── Transition_TransitionListenerImplementor.class
│ │ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ │ ├── FragmentManager_OnBackStackChangedListenerImplementor.class
│ │ │ │ │ │ │ │ │ └── SharedElementCallback_OnSharedElementsReadyListenerImplementor.class
│ │ │ │ │ │ │ │ ├── content
│ │ │ │ │ │ │ │ │ ├── Loader_OnLoadCanceledListenerImplementor.class
│ │ │ │ │ │ │ │ │ └── Loader_OnLoadCompleteListenerImplementor.class
│ │ │ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ │ │ └── session
│ │ │ │ │ │ │ │ │ └── MediaSessionCompat_OnActiveChangeListenerImplementor.class
│ │ │ │ │ │ │ │ ├── os
│ │ │ │ │ │ │ │ │ └── CancellationSignal_OnCancelListenerImplementor.class
│ │ │ │ │ │ │ │ ├── view
│ │ │ │ │ │ │ │ │ ├── accessibility
│ │ │ │ │ │ │ │ │ │ ├── AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.class
│ │ │ │ │ │ │ │ │ │ └── AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── ActionProvider_SubUiVisibilityListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── ActionProvider_VisibilityListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── AsyncLayoutInflater_OnInflateFinishedListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── MenuItemCompat_OnActionExpandListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── OnApplyWindowInsetsListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── ViewPager_OnAdapterChangeListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── ViewPager_OnPageChangeListenerImplementor.class
│ │ │ │ │ │ │ │ │ ├── ViewPropertyAnimatorListenerImplementor.class
│ │ │ │ │ │ │ │ │ └── ViewPropertyAnimatorUpdateListenerImplementor.class
│ │ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ │ ├── DrawerLayout_DrawerListenerImplementor.class
│ │ │ │ │ │ │ │ ├── NestedScrollView_OnScrollChangeListenerImplementor.class
│ │ │ │ │ │ │ │ ├── SlidingPaneLayout_PanelSlideListenerImplementor.class
│ │ │ │ │ │ │ │ └── SwipeRefreshLayout_OnRefreshListenerImplementor.class
│ │ │ │ │ │ │ └── v7
│ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ ├── ActionBar_OnMenuVisibilityListenerImplementor.class
│ │ │ │ │ │ │ │ ├── ActionBar_OnNavigationListenerImplementor.class
│ │ │ │ │ │ │ │ └── ActionBar_TabListenerImplementor.class
│ │ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ │ └── Palette_PaletteAsyncListenerImplementor.class
│ │ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ │ └── RemotePlaybackClient_OnMessageReceivedListenerImplementor.class
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ ├── ActionMenuView_OnMenuItemClickListenerImplementor.class
│ │ │ │ │ │ │ ├── ContentFrameLayout_OnAttachListenerImplementor.class
│ │ │ │ │ │ │ ├── FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class
│ │ │ │ │ │ │ ├── MenuItemHoverListenerImplementor.class
│ │ │ │ │ │ │ ├── PopupMenu_OnDismissListenerImplementor.class
│ │ │ │ │ │ │ ├── PopupMenu_OnMenuItemClickListenerImplementor.class
│ │ │ │ │ │ │ ├── RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class
│ │ │ │ │ │ │ ├── RecyclerView_OnChildAttachStateChangeListenerImplementor.class
│ │ │ │ │ │ │ ├── RecyclerView_OnItemTouchListenerImplementor.class
│ │ │ │ │ │ │ ├── RecyclerView_RecyclerListenerImplementor.class
│ │ │ │ │ │ │ ├── SearchView_OnCloseListenerImplementor.class
│ │ │ │ │ │ │ ├── SearchView_OnQueryTextListenerImplementor.class
│ │ │ │ │ │ │ ├── SearchView_OnSuggestionListenerImplementor.class
│ │ │ │ │ │ │ ├── ShareActionProvider_OnShareTargetSelectedListenerImplementor.class
│ │ │ │ │ │ │ ├── Toolbar_OnMenuItemClickListenerImplementor.class
│ │ │ │ │ │ │ └── ViewStubCompat_OnInflateListenerImplementor.class
│ │ │ │ │ │ ├── MonoPackageManager.class
│ │ │ │ │ │ ├── MonoPackageManager_Resources.class
│ │ │ │ │ │ └── MonoRuntimeProvider.class
│ │ │ │ │ ├── classes.dex
│ │ │ │ │ ├── classes.zip
│ │ │ │ │ ├── com.companyname.apk
│ │ │ │ │ ├── com.companyname-arm64-v8a.apk
│ │ │ │ │ ├── com.companyname-armeabi.apk
│ │ │ │ │ ├── com.companyname-armeabi-v7a.apk
│ │ │ │ │ ├── com.companyname-x86_64.apk
│ │ │ │ │ ├── com.companyname-x86.apk
│ │ │ │ │ ├── mono.android.jar
│ │ │ │ │ ├── packaged_resources
│ │ │ │ │ ├── packaged_resources-arm64-v8a
│ │ │ │ │ ├── packaged_resources-armeabi
│ │ │ │ │ ├── packaged_resources-armeabi-v7a
│ │ │ │ │ ├── packaged_resources-x86
│ │ │ │ │ └── packaged_resources-x86_64
│ │ │ │ ├── com
│ │ │ │ │ └── companyname
│ │ │ │ │ └── R.java
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── src
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── design
│ │ │ │ │ │ │ ├── R.java
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ └── Snackbar_SnackbarActionClickImplementor.java
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── transition
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java
│ │ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnClickListenerImplementor.java
│ │ │ │ │ │ │ └── AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java
│ │ │ │ │ │ ├── appcompat
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── mediarouter
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ ├── recyclerview
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ └── Toolbar_NavigationOnClickEventDispatcher.java
│ │ │ │ │ ├── com
│ │ │ │ │ │ └── companyname
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── md50fd46aac8846320f6c54213fa58eada3
│ │ │ │ │ │ └── MainActivity.java
│ │ │ │ │ ├── md51558244f76c53b6aeda52c8a337f2c37
│ │ │ │ │ │ ├── ActionSheetRenderer.java
│ │ │ │ │ │ ├── ActivityIndicatorRenderer.java
│ │ │ │ │ │ ├── AHorizontalScrollView.java
│ │ │ │ │ │ ├── AndroidActivity.java
│ │ │ │ │ │ ├── BaseCellView.java
│ │ │ │ │ │ ├── BorderDrawable.java
│ │ │ │ │ │ ├── BoxRenderer.java
│ │ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.java
│ │ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.java
│ │ │ │ │ │ ├── ButtonRenderer.java
│ │ │ │ │ │ ├── CarouselPageAdapter.java
│ │ │ │ │ │ ├── CarouselPageRenderer.java
│ │ │ │ │ │ ├── CellAdapter.java
│ │ │ │ │ │ ├── CellRenderer_RendererHolder.java
│ │ │ │ │ │ ├── ConditionalFocusLayout.java
│ │ │ │ │ │ ├── DatePickerRenderer.java
│ │ │ │ │ │ ├── DatePickerRenderer_TextFieldClickHandler.java
│ │ │ │ │ │ ├── EditorEditText.java
│ │ │ │ │ │ ├── EditorRenderer.java
│ │ │ │ │ │ ├── EntryCellEditText.java
│ │ │ │ │ │ ├── EntryCellView.java
│ │ │ │ │ │ ├── EntryEditText.java
│ │ │ │ │ │ ├── EntryRenderer.java
│ │ │ │ │ │ ├── FormattedStringExtensions_FontSpan.java
│ │ │ │ │ │ ├── FormattedStringExtensions_LineHeightSpan.java
│ │ │ │ │ │ ├── FormattedStringExtensions_TextDecorationSpan.java
│ │ │ │ │ │ ├── FormsAppCompatActivity.java
│ │ │ │ │ │ ├── FormsApplicationActivity.java
│ │ │ │ │ │ ├── FormsEditText.java
│ │ │ │ │ │ ├── FormsImageView.java
│ │ │ │ │ │ ├── FormsSeekBar.java
│ │ │ │ │ │ ├── FormsTextView.java
│ │ │ │ │ │ ├── FormsWebChromeClient.java
│ │ │ │ │ │ ├── FormsWebViewClient.java
│ │ │ │ │ │ ├── FrameRenderer_FrameDrawable.java
│ │ │ │ │ │ ├── FrameRenderer.java
│ │ │ │ │ │ ├── GenericAnimatorListener.java
│ │ │ │ │ │ ├── GenericMenuClickListener.java
│ │ │ │ │ │ ├── GestureManager_TapAndPanGestureDetector.java
│ │ │ │ │ │ ├── GroupedListViewAdapter.java
│ │ │ │ │ │ ├── ImageButtonRenderer.java
│ │ │ │ │ │ ├── ImageRenderer.java
│ │ │ │ │ │ ├── InnerGestureListener.java
│ │ │ │ │ │ ├── InnerScaleListener.java
│ │ │ │ │ │ ├── LabelRenderer.java
│ │ │ │ │ │ ├── ListViewAdapter.java
│ │ │ │ │ │ ├── ListViewRenderer_Container.java
│ │ │ │ │ │ ├── ListViewRenderer.java
│ │ │ │ │ │ ├── LocalizedDigitsKeyListener.java
│ │ │ │ │ │ ├── MasterDetailContainer.java
│ │ │ │ │ │ ├── MasterDetailRenderer.java
│ │ │ │ │ │ ├── NativeViewWrapperRenderer.java
│ │ │ │ │ │ ├── NavigationMenuRenderer.java
│ │ │ │ │ │ ├── NavigationMenuRenderer_MenuAdapter.java
│ │ │ │ │ │ ├── NavigationMenuRenderer_MenuElementView.java
│ │ │ │ │ │ ├── NavigationRenderer.java
│ │ │ │ │ │ ├── ObjectJavaBox_1.java
│ │ │ │ │ │ ├── OpenGLViewRenderer.java
│ │ │ │ │ │ ├── OpenGLViewRenderer_Renderer.java
│ │ │ │ │ │ ├── PageContainer.java
│ │ │ │ │ │ ├── PageExtensions_EmbeddedFragment.java
│ │ │ │ │ │ ├── PageExtensions_EmbeddedSupportFragment.java
│ │ │ │ │ │ ├── PageRenderer.java
│ │ │ │ │ │ ├── PickerRenderer.java
│ │ │ │ │ │ ├── PickerRenderer_PickerListener.java
│ │ │ │ │ │ ├── Platform_DefaultRenderer.java
│ │ │ │ │ │ ├── PlatformRenderer.java
│ │ │ │ │ │ ├── PowerSaveModeBroadcastReceiver.java
│ │ │ │ │ │ ├── ProgressBarRenderer.java
│ │ │ │ │ │ ├── ScrollViewContainer.java
│ │ │ │ │ │ ├── ScrollViewRenderer.java
│ │ │ │ │ │ ├── SearchBarRenderer.java
│ │ │ │ │ │ ├── SliderRenderer.java
│ │ │ │ │ │ ├── StepperRenderer.java
│ │ │ │ │ │ ├── StepperRenderer_StepperListener.java
│ │ │ │ │ │ ├── SwitchCellView.java
│ │ │ │ │ │ ├── SwitchRenderer.java
│ │ │ │ │ │ ├── TabbedRenderer.java
│ │ │ │ │ │ ├── TableViewModelRenderer.java
│ │ │ │ │ │ ├── TableViewRenderer.java
│ │ │ │ │ │ ├── TextCellRenderer_TextCellView.java
│ │ │ │ │ │ ├── TimePickerRenderer.java
│ │ │ │ │ │ ├── TimePickerRenderer_TimePickerListener.java
│ │ │ │ │ │ ├── ToolbarButton.java
│ │ │ │ │ │ ├── ToolbarImageButton.java
│ │ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer.java
│ │ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java
│ │ │ │ │ │ ├── ViewRenderer_2.java
│ │ │ │ │ │ ├── ViewRenderer.java
│ │ │ │ │ │ ├── VisualElementRenderer_1.java
│ │ │ │ │ │ ├── VisualElementTracker_AttachTracker.java
│ │ │ │ │ │ ├── WebViewRenderer.java
│ │ │ │ │ │ └── WebViewRenderer_JavascriptResult.java
│ │ │ │ │ ├── md58432a647068b097f9637064b8985a5e0
│ │ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.java
│ │ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.java
│ │ │ │ │ │ ├── ButtonRenderer.java
│ │ │ │ │ │ ├── CarouselPageRenderer.java
│ │ │ │ │ │ ├── FormsFragmentPagerAdapter_1.java
│ │ │ │ │ │ ├── FormsViewPager.java
│ │ │ │ │ │ ├── FragmentContainer.java
│ │ │ │ │ │ ├── FrameRenderer.java
│ │ │ │ │ │ ├── MasterDetailContainer.java
│ │ │ │ │ │ ├── MasterDetailPageRenderer.java
│ │ │ │ │ │ ├── NavigationPageRenderer_ClickListener.java
│ │ │ │ │ │ ├── NavigationPageRenderer_Container.java
│ │ │ │ │ │ ├── NavigationPageRenderer_DrawerMultiplexedListener.java
│ │ │ │ │ │ ├── NavigationPageRenderer.java
│ │ │ │ │ │ ├── PickerRenderer.java
│ │ │ │ │ │ ├── PickerRenderer_PickerListener.java
│ │ │ │ │ │ ├── Platform_ModalContainer.java
│ │ │ │ │ │ ├── SwitchRenderer.java
│ │ │ │ │ │ ├── TabbedPageRenderer.java
│ │ │ │ │ │ └── ViewRenderer_2.java
│ │ │ │ │ ├── md5f92e0daf340890c9667469657ee2ece8
│ │ │ │ │ │ ├── ButtonRenderer.java
│ │ │ │ │ │ ├── FrameRenderer.java
│ │ │ │ │ │ ├── ImageRenderer.java
│ │ │ │ │ │ └── LabelRenderer.java
│ │ │ │ │ └── mono
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── ApplicationRegistration.java
│ │ │ │ │ │ │ └── NotifyTimeZoneChanges.java
│ │ │ │ │ │ ├── Seppuku.java
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── design
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ ├── AppBarLayout_OnOffsetChangedListenerImplementor.java
│ │ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemReselectedListenerImplementor.java
│ │ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemSelectedListenerImplementor.java
│ │ │ │ │ │ │ ├── NavigationView_OnNavigationItemSelectedListenerImplementor.java
│ │ │ │ │ │ │ ├── SwipeDismissBehavior_OnDismissListenerImplementor.java
│ │ │ │ │ │ │ └── TabLayout_OnTabSelectedListenerImplementor.java
│ │ │ │ │ │ ├── transition
│ │ │ │ │ │ │ └── Transition_TransitionListenerImplementor.java
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ ├── FragmentManager_OnBackStackChangedListenerImplementor.java
│ │ │ │ │ │ │ │ └── SharedElementCallback_OnSharedElementsReadyListenerImplementor.java
│ │ │ │ │ │ │ ├── content
│ │ │ │ │ │ │ │ ├── Loader_OnLoadCanceledListenerImplementor.java
│ │ │ │ │ │ │ │ └── Loader_OnLoadCompleteListenerImplementor.java
│ │ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ │ └── session
│ │ │ │ │ │ │ │ └── MediaSessionCompat_OnActiveChangeListenerImplementor.java
│ │ │ │ │ │ │ ├── os
│ │ │ │ │ │ │ │ └── CancellationSignal_OnCancelListenerImplementor.java
│ │ │ │ │ │ │ ├── view
│ │ │ │ │ │ │ │ ├── accessibility
│ │ │ │ │ │ │ │ │ ├── AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java
│ │ │ │ │ │ │ │ │ └── AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java
│ │ │ │ │ │ │ │ ├── ActionProvider_SubUiVisibilityListenerImplementor.java
│ │ │ │ │ │ │ │ ├── ActionProvider_VisibilityListenerImplementor.java
│ │ │ │ │ │ │ │ ├── AsyncLayoutInflater_OnInflateFinishedListenerImplementor.java
│ │ │ │ │ │ │ │ ├── MenuItemCompat_OnActionExpandListenerImplementor.java
│ │ │ │ │ │ │ │ ├── OnApplyWindowInsetsListenerImplementor.java
│ │ │ │ │ │ │ │ ├── ViewPager_OnAdapterChangeListenerImplementor.java
│ │ │ │ │ │ │ │ ├── ViewPager_OnPageChangeListenerImplementor.java
│ │ │ │ │ │ │ │ ├── ViewPropertyAnimatorListenerImplementor.java
│ │ │ │ │ │ │ │ └── ViewPropertyAnimatorUpdateListenerImplementor.java
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ ├── DrawerLayout_DrawerListenerImplementor.java
│ │ │ │ │ │ │ ├── NestedScrollView_OnScrollChangeListenerImplementor.java
│ │ │ │ │ │ │ ├── SlidingPaneLayout_PanelSlideListenerImplementor.java
│ │ │ │ │ │ │ └── SwipeRefreshLayout_OnRefreshListenerImplementor.java
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── ActionBar_OnMenuVisibilityListenerImplementor.java
│ │ │ │ │ │ │ ├── ActionBar_OnNavigationListenerImplementor.java
│ │ │ │ │ │ │ └── ActionBar_TabListenerImplementor.java
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── Palette_PaletteAsyncListenerImplementor.java
│ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ └── RemotePlaybackClient_OnMessageReceivedListenerImplementor.java
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ ├── ActionMenuView_OnMenuItemClickListenerImplementor.java
│ │ │ │ │ │ ├── ContentFrameLayout_OnAttachListenerImplementor.java
│ │ │ │ │ │ ├── FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java
│ │ │ │ │ │ ├── MenuItemHoverListenerImplementor.java
│ │ │ │ │ │ ├── PopupMenu_OnDismissListenerImplementor.java
│ │ │ │ │ │ ├── PopupMenu_OnMenuItemClickListenerImplementor.java
│ │ │ │ │ │ ├── RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java
│ │ │ │ │ │ ├── RecyclerView_OnChildAttachStateChangeListenerImplementor.java
│ │ │ │ │ │ ├── RecyclerView_OnItemTouchListenerImplementor.java
│ │ │ │ │ │ ├── RecyclerView_RecyclerListenerImplementor.java
│ │ │ │ │ │ ├── SearchView_OnCloseListenerImplementor.java
│ │ │ │ │ │ ├── SearchView_OnQueryTextListenerImplementor.java
│ │ │ │ │ │ ├── SearchView_OnSuggestionListenerImplementor.java
│ │ │ │ │ │ ├── ShareActionProvider_OnShareTargetSelectedListenerImplementor.java
│ │ │ │ │ │ ├── Toolbar_OnMenuItemClickListenerImplementor.java
│ │ │ │ │ │ └── ViewStubCompat_OnInflateListenerImplementor.java
│ │ │ │ │ ├── MonoPackageManager.java
│ │ │ │ │ └── MonoRuntimeProvider.java
│ │ │ │ ├── typemap.jm
│ │ │ │ ├── typemap.mj
│ │ │ │ ├── x86
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── x86_64
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── android_debug_keystore.flag
│ │ │ ├── build.props
│ │ │ ├── Component.R.cs.flag
│ │ │ ├── designtime
│ │ │ │ ├── build.props
│ │ │ │ ├── libraryimports.cache
│ │ │ │ ├── libraryimports.cache.stamp
│ │ │ │ ├── libraryprojectimports.cache
│ │ │ │ └── Resource.designer.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── devices.cache
│ │ │ ├── _dex_stamp
│ │ │ ├── _ErrorCodes
│ │ │ ├── _javac.stamp
│ │ │ ├── _javastubs.stamp
│ │ │ ├── libraryimports.cache
│ │ │ ├── libraryimports.cache.stamp
│ │ │ ├── libraryprojectimports.cache
│ │ │ ├── linkdst
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ └── PdaApp.Android.pdb
│ │ │ ├── link.flag
│ │ │ ├── linksrc
│ │ │ │ ├── FormsViewGroup.dll
│ │ │ │ ├── FormsViewGroup.pdb
│ │ │ │ ├── Java.Interop.dll
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ ├── Mono.Android.pdb
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ ├── Mono.Security.pdb
│ │ │ │ ├── mscorlib.dll
│ │ │ │ ├── mscorlib.pdb
│ │ │ │ ├── netstandard.dll
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ ├── PdaApp.Android.pdb
│ │ │ │ ├── PdaApp.dll
│ │ │ │ ├── PdaApp.dll.mdb
│ │ │ │ ├── System.ComponentModel.Composition.dll
│ │ │ │ ├── System.ComponentModel.Composition.pdb
│ │ │ │ ├── System.Core.dll
│ │ │ │ ├── System.Core.pdb
│ │ │ │ ├── System.Data.dll
│ │ │ │ ├── System.Data.pdb
│ │ │ │ ├── System.dll
│ │ │ │ ├── System.IO.Compression.dll
│ │ │ │ ├── System.IO.Compression.FileSystem.dll
│ │ │ │ ├── System.IO.Compression.FileSystem.pdb
│ │ │ │ ├── System.IO.Compression.pdb
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ ├── System.Net.Http.pdb
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ ├── System.Numerics.pdb
│ │ │ │ ├── System.pdb
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ ├── System.Runtime.Serialization.pdb
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ ├── System.ServiceModel.Internals.pdb
│ │ │ │ ├── System.Transactions.dll
│ │ │ │ ├── System.Transactions.pdb
│ │ │ │ ├── System.Web.Services.dll
│ │ │ │ ├── System.Web.Services.pdb
│ │ │ │ ├── System.Xml.dll
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ ├── System.Xml.Linq.pdb
│ │ │ │ ├── System.Xml.pdb
│ │ │ │ ├── Xamarin.Android.Arch.Core.Common.dll
│ │ │ │ ├── Xamarin.Android.Arch.Lifecycle.Common.dll
│ │ │ │ ├── Xamarin.Android.Arch.Lifecycle.Runtime.dll
│ │ │ │ ├── Xamarin.Android.Support.Animated.Vector.Drawable.dll
│ │ │ │ ├── Xamarin.Android.Support.Annotations.dll
│ │ │ │ ├── Xamarin.Android.Support.Compat.dll
│ │ │ │ ├── Xamarin.Android.Support.Core.UI.dll
│ │ │ │ ├── Xamarin.Android.Support.Core.Utils.dll
│ │ │ │ ├── Xamarin.Android.Support.Design.dll
│ │ │ │ ├── Xamarin.Android.Support.Fragment.dll
│ │ │ │ ├── Xamarin.Android.Support.Media.Compat.dll
│ │ │ │ ├── Xamarin.Android.Support.Transition.dll
│ │ │ │ ├── Xamarin.Android.Support.v4.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.AppCompat.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.CardView.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.MediaRouter.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.Palette.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.RecyclerView.dll
│ │ │ │ ├── Xamarin.Android.Support.Vector.Drawable.dll
│ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ ├── Xamarin.Forms.Platform.Android.dll
│ │ │ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ └── Xamarin.Forms.Xaml.pdb
│ │ │ ├── lp
│ │ │ │ ├── 0
│ │ │ │ │ └── jl
│ │ │ │ │ └── formsviewgroup.jar
│ │ │ │ ├── 0.stamp
│ │ │ │ ├── 10
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 10.stamp
│ │ │ │ ├── 11
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 11.stamp
│ │ │ │ ├── 12
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── anim-v21
│ │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml
│ │ │ │ │ │ │ └── design_bottom_sheet_slide_out.xml
│ │ │ │ │ │ ├── color
│ │ │ │ │ │ │ ├── design_error.xml
│ │ │ │ │ │ │ └── design_tint_password_toggle.xml
│ │ │ │ │ │ ├── color-v23
│ │ │ │ │ │ │ └── design_tint_password_toggle.xml
│ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml
│ │ │ │ │ │ │ ├── design_fab_background.xml
│ │ │ │ │ │ │ ├── design_password_eye.xml
│ │ │ │ │ │ │ ├── design_snackbar_background.xml
│ │ │ │ │ │ │ └── navigation_empty_icon.xml
│ │ │ │ │ │ ├── drawable-anydpi-v21
│ │ │ │ │ │ │ ├── design_ic_visibility_off.xml
│ │ │ │ │ │ │ └── design_ic_visibility.xml
│ │ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ │ └── design_ic_visibility.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_off.png
│ │ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ │ ├── drawable-xxhdpi-v4
│ │ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ │ ├── drawable-xxxhdpi-v4
│ │ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── design_bottom_navigation_item.xml
│ │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml
│ │ │ │ │ │ │ ├── design_layout_snackbar_include.xml
│ │ │ │ │ │ │ ├── design_layout_snackbar.xml
│ │ │ │ │ │ │ ├── design_layout_tab_icon.xml
│ │ │ │ │ │ │ ├── design_layout_tab_text.xml
│ │ │ │ │ │ │ ├── design_menu_item_action_area.xml
│ │ │ │ │ │ │ ├── design_navigation_item_header.xml
│ │ │ │ │ │ │ ├── design_navigation_item_separator.xml
│ │ │ │ │ │ │ ├── design_navigation_item_subheader.xml
│ │ │ │ │ │ │ ├── design_navigation_item.xml
│ │ │ │ │ │ │ ├── design_navigation_menu_item.xml
│ │ │ │ │ │ │ ├── design_navigation_menu.xml
│ │ │ │ │ │ │ └── design_text_input_password_icon.xml
│ │ │ │ │ │ ├── layout-sw600dp-v13
│ │ │ │ │ │ │ └── design_layout_snackbar.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-land
│ │ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ └── values-v26
│ │ │ │ │ │ └── values-v26.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 12.stamp
│ │ │ │ ├── 13
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 13.stamp
│ │ │ │ ├── 14
│ │ │ │ │ └── jl
│ │ │ │ │ ├── aidl
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── v4
│ │ │ │ │ │ └── media
│ │ │ │ │ │ ├── MediaDescriptionCompat.aidl
│ │ │ │ │ │ ├── MediaMetadataCompat.aidl
│ │ │ │ │ │ ├── RatingCompat.aidl
│ │ │ │ │ │ └── session
│ │ │ │ │ │ ├── MediaSessionCompat.aidl
│ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl
│ │ │ │ │ │ └── PlaybackStateCompat.aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── notification_media_action.xml
│ │ │ │ │ │ │ ├── notification_media_cancel_action.xml
│ │ │ │ │ │ │ ├── notification_template_big_media_custom.xml
│ │ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml
│ │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml
│ │ │ │ │ │ │ ├── notification_template_big_media.xml
│ │ │ │ │ │ │ ├── notification_template_lines_media.xml
│ │ │ │ │ │ │ ├── notification_template_media_custom.xml
│ │ │ │ │ │ │ └── notification_template_media.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ └── values-v24
│ │ │ │ │ │ └── values-v24.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 14.stamp
│ │ │ │ ├── 15
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 15.stamp
│ │ │ │ ├── 16
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 16.stamp
│ │ │ │ ├── 17
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ │ └── tooltip_exit.xml
│ │ │ │ │ │ ├── color
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── color-v11
│ │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml
│ │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ │ └── abc_edit_text_material.xml
│ │ │ │ │ │ ├── drawable-v23
│ │ │ │ │ │ │ └── abc_control_background_material.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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_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
│ │ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── 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_list_item.xml
│ │ │ │ │ │ │ ├── abc_activity_chooser_view.xml
│ │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml
│ │ │ │ │ │ │ ├── abc_alert_dialog_material.xml
│ │ │ │ │ │ │ ├── abc_alert_dialog_title_material.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_overlay_action_mode.xml
│ │ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.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-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.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-v11
│ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ ├── values-v12
│ │ │ │ │ │ │ └── values-v12.xml
│ │ │ │ │ │ ├── values-v13
│ │ │ │ │ │ │ └── values-v13.xml
│ │ │ │ │ │ ├── values-v14
│ │ │ │ │ │ │ └── values-v14.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-vi
│ │ │ │ │ │ │ └── values-vi.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
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 17.stamp
│ │ │ │ ├── 18
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ └── values-v23
│ │ │ │ │ │ └── values-v23.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 18.stamp
│ │ │ │ ├── 19
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ ├── mr_button_connected_dark.xml
│ │ │ │ │ │ │ ├── mr_button_connected_light.xml
│ │ │ │ │ │ │ ├── mr_button_connecting_dark.xml
│ │ │ │ │ │ │ ├── mr_button_connecting_light.xml
│ │ │ │ │ │ │ ├── mr_button_dark.xml
│ │ │ │ │ │ │ ├── mr_button_light.xml
│ │ │ │ │ │ │ ├── mr_dialog_close_dark.xml
│ │ │ │ │ │ │ ├── mr_dialog_close_light.xml
│ │ │ │ │ │ │ ├── mr_dialog_material_background_dark.xml
│ │ │ │ │ │ │ ├── mr_dialog_material_background_light.xml
│ │ │ │ │ │ │ ├── mr_group_collapse.xml
│ │ │ │ │ │ │ ├── mr_group_expand.xml
│ │ │ │ │ │ │ ├── mr_media_pause_dark.xml
│ │ │ │ │ │ │ ├── mr_media_pause_light.xml
│ │ │ │ │ │ │ ├── mr_media_play_dark.xml
│ │ │ │ │ │ │ ├── mr_media_play_light.xml
│ │ │ │ │ │ │ ├── mr_media_stop_dark.xml
│ │ │ │ │ │ │ ├── mr_media_stop_light.xml
│ │ │ │ │ │ │ ├── mr_vol_type_audiotrack_dark.xml
│ │ │ │ │ │ │ └── mr_vol_type_audiotrack_light.xml
│ │ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_00_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_00_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_01_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_01_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_02_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_02_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_03_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_03_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_04_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_04_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_05_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_05_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_06_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_06_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_07_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_07_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_08_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_08_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_09_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_09_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_10_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_10_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_11_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_11_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_12_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_12_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_13_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_13_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_14_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_14_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_15_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_15_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_16_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_16_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_17_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_17_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_18_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_18_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_19_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_19_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_20_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_20_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_21_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_21_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_22_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_22_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_23_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_23_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_24_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_24_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_25_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_25_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_26_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_26_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_27_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_27_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_28_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_28_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_29_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_29_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_30_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_30_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_00_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_00_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_01_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_01_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_02_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_02_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_03_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_03_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_04_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_04_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_05_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_05_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_06_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_06_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_07_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_07_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_08_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_08_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_09_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_09_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_10_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_10_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_11_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_11_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_12_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_12_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_13_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_13_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_14_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_14_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_15_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_15_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_16_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_16_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_17_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_17_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_18_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_18_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_19_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_19_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_20_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_20_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_21_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_21_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_22_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_22_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_23_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_23_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_24_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_24_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_25_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_25_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_26_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_26_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_27_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_27_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_28_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_28_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_29_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_29_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_30_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_30_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ │ ├── drawable-xxhdpi-v4
│ │ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_00_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_00_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_01_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_01_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_02_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_02_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_03_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_03_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_04_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_04_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_05_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_05_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_06_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_06_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_07_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_07_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_08_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_08_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_09_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_09_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_10_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_10_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_11_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_11_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_12_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_12_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_13_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_13_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_14_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_14_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_15_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_15_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_16_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_16_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_17_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_17_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_18_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_18_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_19_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_19_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_20_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_20_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_21_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_21_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_22_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_22_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_23_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_23_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_24_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_24_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_25_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_25_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_26_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_26_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_27_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_27_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_28_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_28_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_29_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_29_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_30_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connected_30_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_00_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_00_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_01_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_01_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_02_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_02_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_03_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_03_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_04_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_04_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_05_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_05_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_06_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_06_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_07_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_07_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_08_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_08_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_09_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_09_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_10_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_10_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_11_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_11_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_12_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_12_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_13_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_13_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_14_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_14_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_15_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_15_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_16_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_16_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_17_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_17_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_18_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_18_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_19_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_19_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_20_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_20_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_21_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_21_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_22_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_22_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_23_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_23_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_24_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_24_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_25_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_25_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_26_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_26_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_27_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_27_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_28_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_28_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_29_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_29_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_30_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_connecting_30_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ │ ├── drawable-xxxhdpi-v4
│ │ │ │ │ │ │ ├── ic_group_collapse_00.png
│ │ │ │ │ │ │ ├── ic_group_collapse_01.png
│ │ │ │ │ │ │ ├── ic_group_collapse_02.png
│ │ │ │ │ │ │ ├── ic_group_collapse_03.png
│ │ │ │ │ │ │ ├── ic_group_collapse_04.png
│ │ │ │ │ │ │ ├── ic_group_collapse_05.png
│ │ │ │ │ │ │ ├── ic_group_collapse_06.png
│ │ │ │ │ │ │ ├── ic_group_collapse_07.png
│ │ │ │ │ │ │ ├── ic_group_collapse_08.png
│ │ │ │ │ │ │ ├── ic_group_collapse_09.png
│ │ │ │ │ │ │ ├── ic_group_collapse_10.png
│ │ │ │ │ │ │ ├── ic_group_collapse_11.png
│ │ │ │ │ │ │ ├── ic_group_collapse_12.png
│ │ │ │ │ │ │ ├── ic_group_collapse_13.png
│ │ │ │ │ │ │ ├── ic_group_collapse_14.png
│ │ │ │ │ │ │ ├── ic_group_collapse_15.png
│ │ │ │ │ │ │ ├── ic_group_expand_00.png
│ │ │ │ │ │ │ ├── ic_group_expand_01.png
│ │ │ │ │ │ │ ├── ic_group_expand_02.png
│ │ │ │ │ │ │ ├── ic_group_expand_03.png
│ │ │ │ │ │ │ ├── ic_group_expand_04.png
│ │ │ │ │ │ │ ├── ic_group_expand_05.png
│ │ │ │ │ │ │ ├── ic_group_expand_06.png
│ │ │ │ │ │ │ ├── ic_group_expand_07.png
│ │ │ │ │ │ │ ├── ic_group_expand_08.png
│ │ │ │ │ │ │ ├── ic_group_expand_09.png
│ │ │ │ │ │ │ ├── ic_group_expand_10.png
│ │ │ │ │ │ │ ├── ic_group_expand_11.png
│ │ │ │ │ │ │ ├── ic_group_expand_12.png
│ │ │ │ │ │ │ ├── ic_group_expand_13.png
│ │ │ │ │ │ │ ├── ic_group_expand_14.png
│ │ │ │ │ │ │ ├── ic_group_expand_15.png
│ │ │ │ │ │ │ └── ic_mr_button_grey.png
│ │ │ │ │ │ ├── interpolator
│ │ │ │ │ │ │ ├── mr_fast_out_slow_in.xml
│ │ │ │ │ │ │ └── mr_linear_out_slow_in.xml
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── mr_chooser_dialog.xml
│ │ │ │ │ │ │ ├── mr_chooser_list_item.xml
│ │ │ │ │ │ │ ├── mr_controller_material_dialog_b.xml
│ │ │ │ │ │ │ ├── mr_controller_volume_item.xml
│ │ │ │ │ │ │ ├── mr_playback_control.xml
│ │ │ │ │ │ │ └── mr_volume_control.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.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-land
│ │ │ │ │ │ │ └── values-land.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-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.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-sw720dp-v13
│ │ │ │ │ │ │ └── values-sw720dp-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-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
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 19.stamp
│ │ │ │ ├── 1.stamp
│ │ │ │ ├── 20
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 20.stamp
│ │ │ │ ├── 21
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ ├── res
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 21.stamp
│ │ │ │ ├── 22
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 22.stamp
│ │ │ │ ├── 23.stamp
│ │ │ │ ├── 24.stamp
│ │ │ │ ├── 25.stamp
│ │ │ │ ├── 26.stamp
│ │ │ │ ├── 27.stamp
│ │ │ │ ├── 2.stamp
│ │ │ │ ├── 3.stamp
│ │ │ │ ├── 4
│ │ │ │ │ └── jl
│ │ │ │ │ └── arch-core-common.jar
│ │ │ │ ├── 4.stamp
│ │ │ │ ├── 5
│ │ │ │ │ └── jl
│ │ │ │ │ └── arch-lifecycle-common.jar
│ │ │ │ ├── 5.stamp
│ │ │ │ ├── 6
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 6.stamp
│ │ │ │ ├── 7
│ │ │ │ │ └── jl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── proguard.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 7.stamp
│ │ │ │ ├── 8
│ │ │ │ │ └── jl
│ │ │ │ │ └── support-annotations.jar
│ │ │ │ ├── 8.stamp
│ │ │ │ ├── 9
│ │ │ │ │ └── jl
│ │ │ │ │ ├── aidl
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── v4
│ │ │ │ │ │ └── os
│ │ │ │ │ │ └── ResultReceiver.aidl
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ ├── classes.jar
│ │ │ │ │ │ ├── public.txt
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ ├── manifest
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ ├── public.txt
│ │ │ │ │ ├── res
│ │ │ │ │ │ ├── drawable
│ │ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ │ └── notification_tile_bg.xml
│ │ │ │ │ │ ├── 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
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ │ └── notification_template_part_time.xml
│ │ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-af
│ │ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ │ ├── values-am
│ │ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ │ ├── values-ar
│ │ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ │ ├── values-az
│ │ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ │ ├── values-be
│ │ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ │ ├── values-bg
│ │ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ │ ├── values-bn
│ │ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ │ ├── values-bs
│ │ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ │ └── values-b+sr+Latn.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-rGB
│ │ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ │ ├── values-es
│ │ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ │ ├── values-et
│ │ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ │ ├── values-eu
│ │ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ │ ├── values-fa
│ │ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ │ ├── values-fi
│ │ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ │ ├── values-fr
│ │ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ │ └── values-fr-rCA.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-pa
│ │ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ │ ├── values-pl
│ │ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ │ ├── values-port
│ │ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ │ ├── values-pt
│ │ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ │ └── values-pt-rPT.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
│ │ │ │ │ └── R.txt
│ │ │ │ ├── 9.stamp
│ │ │ │ └── map.cache
│ │ │ ├── MonoAndroid,Version=v8.1.AssemblyAttributes.cs
│ │ │ ├── PdaApp.Android.csprojAssemblyReference.cache
│ │ │ ├── PdaApp.Android.csproj.CopyComplete
│ │ │ ├── PdaApp.Android.csproj.CoreCompileInputs.cache
│ │ │ ├── PdaApp.Android.csproj.FileListAbsolute.txt
│ │ │ ├── PdaApp.Android.dll
│ │ │ ├── PdaApp.Android.nuget.stamp
│ │ │ ├── PdaApp.Android.pdb
│ │ │ ├── R.cs.flag
│ │ │ ├── res
│ │ │ │ ├── drawable
│ │ │ │ │ ├── logo.ico
│ │ │ │ │ └── resizeapi.png
│ │ │ │ ├── layout
│ │ │ │ │ ├── tabbar.xml
│ │ │ │ │ └── toolbar.xml
│ │ │ │ ├── mipmap-anydpi-v26
│ │ │ │ │ ├── icon_round.xml
│ │ │ │ │ └── icon.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
│ │ │ ├── res.flag
│ │ │ ├── resolved_assemblies.txt
│ │ │ ├── resourcepaths.cache
│ │ │ ├── R.txt
│ │ │ ├── static.flag
│ │ │ ├── strip.flag
│ │ │ ├── stub_application_data.txt
│ │ │ ├── _TelemetryProps
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── upload.flag
│ │ │ ├── _WarningCodes
│ │ │ └── XamlC.stamp
│ │ ├── PdaApp.Android.csproj.nuget.cache
│ │ ├── PdaApp.Android.csproj.nuget.g.props
│ │ ├── PdaApp.Android.csproj.nuget.g.targets
│ │ ├── project.assets.json
│ │ └── Release
│ │ └── 81
│ │ ├── 9a8fd0d8.deployment
│ │ ├── acw-map.txt
│ │ ├── android
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── assets
│ │ │ │ ├── FormsViewGroup.dll
│ │ │ │ ├── FormsViewGroup.pdb
│ │ │ │ ├── Java.Interop.dll
│ │ │ │ ├── machine.config
│ │ │ │ ├── Mono.Android.dll
│ │ │ │ ├── Mono.Android.pdb
│ │ │ │ ├── Mono.Security.dll
│ │ │ │ ├── Mono.Security.pdb
│ │ │ │ ├── mscorlib.dll
│ │ │ │ ├── mscorlib.pdb
│ │ │ │ ├── Newtonsoft.Json.dll
│ │ │ │ ├── Newtonsoft.Json.pdb
│ │ │ │ ├── PdaApp.Android.dll
│ │ │ │ ├── PdaApp.Android.dll.mdb
│ │ │ │ ├── PdaApp.dll
│ │ │ │ ├── PdaApp.pdb
│ │ │ │ ├── shrunk
│ │ │ │ │ ├── Java.Interop.dll
│ │ │ │ │ ├── Mono.Android.dll
│ │ │ │ │ ├── Mono.Security.dll
│ │ │ │ │ ├── mscorlib.dll
│ │ │ │ │ ├── shrunk.flag
│ │ │ │ │ ├── System.Core.dll
│ │ │ │ │ ├── System.Data.dll
│ │ │ │ │ ├── System.dll
│ │ │ │ │ ├── System.Net.Http.dll
│ │ │ │ │ ├── System.Numerics.dll
│ │ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ │ ├── System.Xml.dll
│ │ │ │ │ └── System.Xml.Linq.dll
│ │ │ │ ├── System.Core.dll
│ │ │ │ ├── System.Core.pdb
│ │ │ │ ├── System.Data.dll
│ │ │ │ ├── System.Data.pdb
│ │ │ │ ├── System.dll
│ │ │ │ ├── System.Net.Http.dll
│ │ │ │ ├── System.Net.Http.pdb
│ │ │ │ ├── System.Numerics.dll
│ │ │ │ ├── System.Numerics.pdb
│ │ │ │ ├── System.pdb
│ │ │ │ ├── System.Runtime.dll
│ │ │ │ ├── System.Runtime.Serialization.dll
│ │ │ │ ├── System.Runtime.Serialization.pdb
│ │ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ │ ├── System.ServiceModel.Internals.pdb
│ │ │ │ ├── System.Xml.dll
│ │ │ │ ├── System.Xml.Linq.dll
│ │ │ │ ├── System.Xml.Linq.pdb
│ │ │ │ ├── System.Xml.pdb
│ │ │ │ ├── Xamarin.Android.Arch.Core.Common.dll
│ │ │ │ ├── Xamarin.Android.Arch.Lifecycle.Common.dll
│ │ │ │ ├── Xamarin.Android.Arch.Lifecycle.Runtime.dll
│ │ │ │ ├── Xamarin.Android.Support.Animated.Vector.Drawable.dll
│ │ │ │ ├── Xamarin.Android.Support.Annotations.dll
│ │ │ │ ├── Xamarin.Android.Support.Compat.dll
│ │ │ │ ├── Xamarin.Android.Support.Core.UI.dll
│ │ │ │ ├── Xamarin.Android.Support.Core.Utils.dll
│ │ │ │ ├── Xamarin.Android.Support.Design.dll
│ │ │ │ ├── Xamarin.Android.Support.Fragment.dll
│ │ │ │ ├── Xamarin.Android.Support.Media.Compat.dll
│ │ │ │ ├── Xamarin.Android.Support.Transition.dll
│ │ │ │ ├── Xamarin.Android.Support.v4.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.AppCompat.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.CardView.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.MediaRouter.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.Palette.dll
│ │ │ │ ├── Xamarin.Android.Support.v7.RecyclerView.dll
│ │ │ │ ├── Xamarin.Android.Support.Vector.Drawable.dll
│ │ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ │ ├── Xamarin.Forms.Platform.Android.dll
│ │ │ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ │ └── Xamarin.Forms.Xaml.pdb
│ │ │ ├── bin
│ │ │ │ ├── classes
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── compat
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── design
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ ├── R.class
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ └── Snackbar_SnackbarActionClickImplementor.class
│ │ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── transition
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class
│ │ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnClickListenerImplementor.class
│ │ │ │ │ │ │ └── AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class
│ │ │ │ │ │ ├── appcompat
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── mediarouter
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ ├── recyclerview
│ │ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ └── Toolbar_NavigationOnClickEventDispatcher.class
│ │ │ │ │ ├── com
│ │ │ │ │ │ └── companyname
│ │ │ │ │ │ ├── R$animator.class
│ │ │ │ │ │ ├── R$anim.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$bool.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$integer.class
│ │ │ │ │ │ ├── R$interpolator.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── md50fd46aac8846320f6c54213fa58eada3
│ │ │ │ │ │ └── MainActivity.class
│ │ │ │ │ ├── md51558244f76c53b6aeda52c8a337f2c37
│ │ │ │ │ │ ├── ActionSheetRenderer.class
│ │ │ │ │ │ ├── ActivityIndicatorRenderer.class
│ │ │ │ │ │ ├── AHorizontalScrollView.class
│ │ │ │ │ │ ├── AndroidActivity.class
│ │ │ │ │ │ ├── BaseCellView.class
│ │ │ │ │ │ ├── BorderDrawable.class
│ │ │ │ │ │ ├── BoxRenderer.class
│ │ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.class
│ │ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.class
│ │ │ │ │ │ ├── ButtonRenderer.class
│ │ │ │ │ │ ├── CarouselPageAdapter.class
│ │ │ │ │ │ ├── CarouselPageRenderer.class
│ │ │ │ │ │ ├── CellAdapter.class
│ │ │ │ │ │ ├── CellRenderer_RendererHolder.class
│ │ │ │ │ │ ├── ConditionalFocusLayout.class
│ │ │ │ │ │ ├── DatePickerRenderer.class
│ │ │ │ │ │ ├── DatePickerRenderer_TextFieldClickHandler.class
│ │ │ │ │ │ ├── EditorEditText.class
│ │ │ │ │ │ ├── EditorRenderer.class
│ │ │ │ │ │ ├── EntryCellEditText.class
│ │ │ │ │ │ ├── EntryCellView.class
│ │ │ │ │ │ ├── EntryEditText.class
│ │ │ │ │ │ ├── EntryRenderer.class
│ │ │ │ │ │ ├── FormattedStringExtensions_FontSpan.class
│ │ │ │ │ │ ├── FormattedStringExtensions_LineHeightSpan.class
│ │ │ │ │ │ ├── FormattedStringExtensions_TextDecorationSpan.class
│ │ │ │ │ │ ├── FormsAppCompatActivity.class
│ │ │ │ │ │ ├── FormsApplicationActivity.class
│ │ │ │ │ │ ├── FormsEditText.class
│ │ │ │ │ │ ├── FormsImageView.class
│ │ │ │ │ │ ├── FormsSeekBar.class
│ │ │ │ │ │ ├── FormsTextView.class
│ │ │ │ │ │ ├── FormsWebChromeClient.class
│ │ │ │ │ │ ├── FormsWebViewClient.class
│ │ │ │ │ │ ├── FrameRenderer.class
│ │ │ │ │ │ ├── FrameRenderer_FrameDrawable.class
│ │ │ │ │ │ ├── GenericAnimatorListener.class
│ │ │ │ │ │ ├── GenericMenuClickListener.class
│ │ │ │ │ │ ├── GestureManager_TapAndPanGestureDetector.class
│ │ │ │ │ │ ├── GroupedListViewAdapter.class
│ │ │ │ │ │ ├── ImageButtonRenderer.class
│ │ │ │ │ │ ├── ImageRenderer.class
│ │ │ │ │ │ ├── InnerGestureListener.class
│ │ │ │ │ │ ├── InnerScaleListener.class
│ │ │ │ │ │ ├── LabelRenderer.class
│ │ │ │ │ │ ├── ListViewAdapter.class
│ │ │ │ │ │ ├── ListViewRenderer.class
│ │ │ │ │ │ ├── ListViewRenderer_Container.class
│ │ │ │ │ │ ├── LocalizedDigitsKeyListener.class
│ │ │ │ │ │ ├── MasterDetailContainer.class
│ │ │ │ │ │ ├── MasterDetailRenderer.class
│ │ │ │ │ │ ├── NativeViewWrapperRenderer.class
│ │ │ │ │ │ ├── NavigationMenuRenderer.class
│ │ │ │ │ │ ├── NavigationMenuRenderer_MenuAdapter.class
│ │ │ │ │ │ ├── NavigationMenuRenderer_MenuElementView.class
│ │ │ │ │ │ ├── NavigationRenderer.class
│ │ │ │ │ │ ├── ObjectJavaBox_1.class
│ │ │ │ │ │ ├── OpenGLViewRenderer.class
│ │ │ │ │ │ ├── OpenGLViewRenderer_Renderer.class
│ │ │ │ │ │ ├── PageContainer.class
│ │ │ │ │ │ ├── PageExtensions_EmbeddedFragment.class
│ │ │ │ │ │ ├── PageExtensions_EmbeddedSupportFragment.class
│ │ │ │ │ │ ├── PageRenderer.class
│ │ │ │ │ │ ├── PickerRenderer.class
│ │ │ │ │ │ ├── PickerRenderer_PickerListener.class
│ │ │ │ │ │ ├── Platform_DefaultRenderer.class
│ │ │ │ │ │ ├── PlatformRenderer.class
│ │ │ │ │ │ ├── PowerSaveModeBroadcastReceiver.class
│ │ │ │ │ │ ├── ProgressBarRenderer.class
│ │ │ │ │ │ ├── ScrollViewContainer.class
│ │ │ │ │ │ ├── ScrollViewRenderer.class
│ │ │ │ │ │ ├── SearchBarRenderer.class
│ │ │ │ │ │ ├── SliderRenderer.class
│ │ │ │ │ │ ├── StepperRenderer.class
│ │ │ │ │ │ ├── StepperRenderer_StepperListener.class
│ │ │ │ │ │ ├── SwitchCellView.class
│ │ │ │ │ │ ├── SwitchRenderer.class
│ │ │ │ │ │ ├── TabbedRenderer.class
│ │ │ │ │ │ ├── TableViewModelRenderer.class
│ │ │ │ │ │ ├── TableViewRenderer.class
│ │ │ │ │ │ ├── TextCellRenderer_TextCellView.class
│ │ │ │ │ │ ├── TimePickerRenderer.class
│ │ │ │ │ │ ├── TimePickerRenderer_TimePickerListener.class
│ │ │ │ │ │ ├── ToolbarButton.class
│ │ │ │ │ │ ├── ToolbarImageButton.class
│ │ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer.class
│ │ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer_LongPressGestureListener.class
│ │ │ │ │ │ ├── ViewRenderer_2.class
│ │ │ │ │ │ ├── ViewRenderer.class
│ │ │ │ │ │ ├── VisualElementRenderer_1.class
│ │ │ │ │ │ ├── VisualElementTracker_AttachTracker.class
│ │ │ │ │ │ ├── WebViewRenderer.class
│ │ │ │ │ │ └── WebViewRenderer_JavascriptResult.class
│ │ │ │ │ ├── md58432a647068b097f9637064b8985a5e0
│ │ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.class
│ │ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.class
│ │ │ │ │ │ ├── ButtonRenderer.class
│ │ │ │ │ │ ├── CarouselPageRenderer.class
│ │ │ │ │ │ ├── FormsFragmentPagerAdapter_1.class
│ │ │ │ │ │ ├── FormsViewPager.class
│ │ │ │ │ │ ├── FragmentContainer.class
│ │ │ │ │ │ ├── FrameRenderer.class
│ │ │ │ │ │ ├── MasterDetailContainer.class
│ │ │ │ │ │ ├── MasterDetailPageRenderer.class
│ │ │ │ │ │ ├── NavigationPageRenderer.class
│ │ │ │ │ │ ├── NavigationPageRenderer_ClickListener.class
│ │ │ │ │ │ ├── NavigationPageRenderer_Container.class
│ │ │ │ │ │ ├── NavigationPageRenderer_DrawerMultiplexedListener.class
│ │ │ │ │ │ ├── PickerRenderer.class
│ │ │ │ │ │ ├── PickerRenderer_PickerListener.class
│ │ │ │ │ │ ├── Platform_ModalContainer.class
│ │ │ │ │ │ ├── SwitchRenderer.class
│ │ │ │ │ │ ├── TabbedPageRenderer.class
│ │ │ │ │ │ └── ViewRenderer_2.class
│ │ │ │ │ ├── md5f92e0daf340890c9667469657ee2ece8
│ │ │ │ │ │ ├── ButtonRenderer.class
│ │ │ │ │ │ ├── FrameRenderer.class
│ │ │ │ │ │ ├── ImageRenderer.class
│ │ │ │ │ │ └── LabelRenderer.class
│ │ │ │ │ └── mono
│ │ │ │ │ ├── android
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── ApplicationRegistration.class
│ │ │ │ │ │ │ └── NotifyTimeZoneChanges.class
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── design
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ ├── AppBarLayout_OnOffsetChangedListenerImplementor.class
│ │ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemReselectedListenerImplementor.class
│ │ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemSelectedListenerImplementor.class
│ │ │ │ │ │ │ ├── NavigationView_OnNavigationItemSelectedListenerImplementor.class
│ │ │ │ │ │ │ ├── SwipeDismissBehavior_OnDismissListenerImplementor.class
│ │ │ │ │ │ │ └── TabLayout_OnTabSelectedListenerImplementor.class
│ │ │ │ │ │ ├── transition
│ │ │ │ │ │ │ └── Transition_TransitionListenerImplementor.class
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ │ ├── FragmentManager_OnBackStackChangedListenerImplementor.class
│ │ │ │ │ │ │ │ └── SharedElementCallback_OnSharedElementsReadyListenerImplementor.class
│ │ │ │ │ │ │ ├── content
│ │ │ │ │ │ │ │ ├── Loader_OnLoadCanceledListenerImplementor.class
│ │ │ │ │ │ │ │ └── Loader_OnLoadCompleteListenerImplementor.class
│ │ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ │ └── session
│ │ │ │ │ │ │ │ └── MediaSessionCompat_OnActiveChangeListenerImplementor.class
│ │ │ │ │ │ │ ├── os
│ │ │ │ │ │ │ │ └── CancellationSignal_OnCancelListenerImplementor.class
│ │ │ │ │ │ │ ├── view
│ │ │ │ │ │ │ │ ├── accessibility
│ │ │ │ │ │ │ │ │ ├── AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.class
│ │ │ │ │ │ │ │ │ └── AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.class
│ │ │ │ │ │ │ │ ├── ActionProvider_SubUiVisibilityListenerImplementor.class
│ │ │ │ │ │ │ │ ├── ActionProvider_VisibilityListenerImplementor.class
│ │ │ │ │ │ │ │ ├── AsyncLayoutInflater_OnInflateFinishedListenerImplementor.class
│ │ │ │ │ │ │ │ ├── MenuItemCompat_OnActionExpandListenerImplementor.class
│ │ │ │ │ │ │ │ ├── OnApplyWindowInsetsListenerImplementor.class
│ │ │ │ │ │ │ │ ├── ViewPager_OnAdapterChangeListenerImplementor.class
│ │ │ │ │ │ │ │ ├── ViewPager_OnPageChangeListenerImplementor.class
│ │ │ │ │ │ │ │ ├── ViewPropertyAnimatorListenerImplementor.class
│ │ │ │ │ │ │ │ └── ViewPropertyAnimatorUpdateListenerImplementor.class
│ │ │ │ │ │ │ └── widget
│ │ │ │ │ │ │ ├── DrawerLayout_DrawerListenerImplementor.class
│ │ │ │ │ │ │ ├── NestedScrollView_OnScrollChangeListenerImplementor.class
│ │ │ │ │ │ │ ├── SlidingPaneLayout_PanelSlideListenerImplementor.class
│ │ │ │ │ │ │ └── SwipeRefreshLayout_OnRefreshListenerImplementor.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── ActionBar_OnMenuVisibilityListenerImplementor.class
│ │ │ │ │ │ │ ├── ActionBar_OnNavigationListenerImplementor.class
│ │ │ │ │ │ │ └── ActionBar_TabListenerImplementor.class
│ │ │ │ │ │ ├── graphics
│ │ │ │ │ │ │ └── Palette_PaletteAsyncListenerImplementor.class
│ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ └── RemotePlaybackClient_OnMessageReceivedListenerImplementor.class
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ ├── ActionMenuView_OnMenuItemClickListenerImplementor.class
│ │ │ │ │ │ ├── ContentFrameLayout_OnAttachListenerImplementor.class
│ │ │ │ │ │ ├── FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class
│ │ │ │ │ │ ├── MenuItemHoverListenerImplementor.class
│ │ │ │ │ │ ├── PopupMenu_OnDismissListenerImplementor.class
│ │ │ │ │ │ ├── PopupMenu_OnMenuItemClickListenerImplementor.class
│ │ │ │ │ │ ├── RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class
│ │ │ │ │ │ ├── RecyclerView_OnChildAttachStateChangeListenerImplementor.class
│ │ │ │ │ │ ├── RecyclerView_OnItemTouchListenerImplementor.class
│ │ │ │ │ │ ├── RecyclerView_RecyclerListenerImplementor.class
│ │ │ │ │ │ ├── SearchView_OnCloseListenerImplementor.class
│ │ │ │ │ │ ├── SearchView_OnQueryTextListenerImplementor.class
│ │ │ │ │ │ ├── SearchView_OnSuggestionListenerImplementor.class
│ │ │ │ │ │ ├── ShareActionProvider_OnShareTargetSelectedListenerImplementor.class
│ │ │ │ │ │ ├── Toolbar_OnMenuItemClickListenerImplementor.class
│ │ │ │ │ │ └── ViewStubCompat_OnInflateListenerImplementor.class
│ │ │ │ │ ├── MonoPackageManager.class
│ │ │ │ │ ├── MonoPackageManager_Resources.class
│ │ │ │ │ └── MonoRuntimeProvider.class
│ │ │ │ ├── classes.dex
│ │ │ │ ├── classes.zip
│ │ │ │ ├── com.companyname.apk
│ │ │ │ ├── mono.android.jar
│ │ │ │ └── packaged_resources
│ │ │ ├── com
│ │ │ │ └── companyname
│ │ │ │ └── R.java
│ │ │ ├── manifest
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── src
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── compat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── design
│ │ │ │ │ │ ├── R.java
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ └── Snackbar_SnackbarActionClickImplementor.java
│ │ │ │ │ ├── mediacompat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── transition
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── v4
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── v7
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java
│ │ │ │ │ │ ├── AlertDialog_IDialogInterfaceOnClickListenerImplementor.java
│ │ │ │ │ │ └── AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java
│ │ │ │ │ ├── appcompat
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── cardview
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── mediarouter
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── recyclerview
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── widget
│ │ │ │ │ └── Toolbar_NavigationOnClickEventDispatcher.java
│ │ │ │ ├── com
│ │ │ │ │ └── companyname
│ │ │ │ │ └── R.java
│ │ │ │ ├── md50fd46aac8846320f6c54213fa58eada3
│ │ │ │ │ └── MainActivity.java
│ │ │ │ ├── md51558244f76c53b6aeda52c8a337f2c37
│ │ │ │ │ ├── ActionSheetRenderer.java
│ │ │ │ │ ├── ActivityIndicatorRenderer.java
│ │ │ │ │ ├── AHorizontalScrollView.java
│ │ │ │ │ ├── AndroidActivity.java
│ │ │ │ │ ├── BaseCellView.java
│ │ │ │ │ ├── BorderDrawable.java
│ │ │ │ │ ├── BoxRenderer.java
│ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.java
│ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.java
│ │ │ │ │ ├── ButtonRenderer.java
│ │ │ │ │ ├── CarouselPageAdapter.java
│ │ │ │ │ ├── CarouselPageRenderer.java
│ │ │ │ │ ├── CellAdapter.java
│ │ │ │ │ ├── CellRenderer_RendererHolder.java
│ │ │ │ │ ├── ConditionalFocusLayout.java
│ │ │ │ │ ├── DatePickerRenderer.java
│ │ │ │ │ ├── DatePickerRenderer_TextFieldClickHandler.java
│ │ │ │ │ ├── EditorEditText.java
│ │ │ │ │ ├── EditorRenderer.java
│ │ │ │ │ ├── EntryCellEditText.java
│ │ │ │ │ ├── EntryCellView.java
│ │ │ │ │ ├── EntryEditText.java
│ │ │ │ │ ├── EntryRenderer.java
│ │ │ │ │ ├── FormattedStringExtensions_FontSpan.java
│ │ │ │ │ ├── FormattedStringExtensions_LineHeightSpan.java
│ │ │ │ │ ├── FormattedStringExtensions_TextDecorationSpan.java
│ │ │ │ │ ├── FormsAppCompatActivity.java
│ │ │ │ │ ├── FormsApplicationActivity.java
│ │ │ │ │ ├── FormsEditText.java
│ │ │ │ │ ├── FormsImageView.java
│ │ │ │ │ ├── FormsSeekBar.java
│ │ │ │ │ ├── FormsTextView.java
│ │ │ │ │ ├── FormsWebChromeClient.java
│ │ │ │ │ ├── FormsWebViewClient.java
│ │ │ │ │ ├── FrameRenderer_FrameDrawable.java
│ │ │ │ │ ├── FrameRenderer.java
│ │ │ │ │ ├── GenericAnimatorListener.java
│ │ │ │ │ ├── GenericMenuClickListener.java
│ │ │ │ │ ├── GestureManager_TapAndPanGestureDetector.java
│ │ │ │ │ ├── GroupedListViewAdapter.java
│ │ │ │ │ ├── ImageButtonRenderer.java
│ │ │ │ │ ├── ImageRenderer.java
│ │ │ │ │ ├── InnerGestureListener.java
│ │ │ │ │ ├── InnerScaleListener.java
│ │ │ │ │ ├── LabelRenderer.java
│ │ │ │ │ ├── ListViewAdapter.java
│ │ │ │ │ ├── ListViewRenderer_Container.java
│ │ │ │ │ ├── ListViewRenderer.java
│ │ │ │ │ ├── LocalizedDigitsKeyListener.java
│ │ │ │ │ ├── MasterDetailContainer.java
│ │ │ │ │ ├── MasterDetailRenderer.java
│ │ │ │ │ ├── NativeViewWrapperRenderer.java
│ │ │ │ │ ├── NavigationMenuRenderer.java
│ │ │ │ │ ├── NavigationMenuRenderer_MenuAdapter.java
│ │ │ │ │ ├── NavigationMenuRenderer_MenuElementView.java
│ │ │ │ │ ├── NavigationRenderer.java
│ │ │ │ │ ├── ObjectJavaBox_1.java
│ │ │ │ │ ├── OpenGLViewRenderer.java
│ │ │ │ │ ├── OpenGLViewRenderer_Renderer.java
│ │ │ │ │ ├── PageContainer.java
│ │ │ │ │ ├── PageExtensions_EmbeddedFragment.java
│ │ │ │ │ ├── PageExtensions_EmbeddedSupportFragment.java
│ │ │ │ │ ├── PageRenderer.java
│ │ │ │ │ ├── PickerRenderer.java
│ │ │ │ │ ├── PickerRenderer_PickerListener.java
│ │ │ │ │ ├── Platform_DefaultRenderer.java
│ │ │ │ │ ├── PlatformRenderer.java
│ │ │ │ │ ├── PowerSaveModeBroadcastReceiver.java
│ │ │ │ │ ├── ProgressBarRenderer.java
│ │ │ │ │ ├── ScrollViewContainer.java
│ │ │ │ │ ├── ScrollViewRenderer.java
│ │ │ │ │ ├── SearchBarRenderer.java
│ │ │ │ │ ├── SliderRenderer.java
│ │ │ │ │ ├── StepperRenderer.java
│ │ │ │ │ ├── StepperRenderer_StepperListener.java
│ │ │ │ │ ├── SwitchCellView.java
│ │ │ │ │ ├── SwitchRenderer.java
│ │ │ │ │ ├── TabbedRenderer.java
│ │ │ │ │ ├── TableViewModelRenderer.java
│ │ │ │ │ ├── TableViewRenderer.java
│ │ │ │ │ ├── TextCellRenderer_TextCellView.java
│ │ │ │ │ ├── TimePickerRenderer.java
│ │ │ │ │ ├── TimePickerRenderer_TimePickerListener.java
│ │ │ │ │ ├── ToolbarButton.java
│ │ │ │ │ ├── ToolbarImageButton.java
│ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer.java
│ │ │ │ │ ├── ViewCellRenderer_ViewCellContainer_LongPressGestureListener.java
│ │ │ │ │ ├── ViewRenderer_2.java
│ │ │ │ │ ├── ViewRenderer.java
│ │ │ │ │ ├── VisualElementRenderer_1.java
│ │ │ │ │ ├── VisualElementTracker_AttachTracker.java
│ │ │ │ │ ├── WebViewRenderer.java
│ │ │ │ │ └── WebViewRenderer_JavascriptResult.java
│ │ │ │ ├── md58432a647068b097f9637064b8985a5e0
│ │ │ │ │ ├── ButtonRenderer_ButtonClickListener.java
│ │ │ │ │ ├── ButtonRenderer_ButtonTouchListener.java
│ │ │ │ │ ├── ButtonRenderer.java
│ │ │ │ │ ├── CarouselPageRenderer.java
│ │ │ │ │ ├── FormsFragmentPagerAdapter_1.java
│ │ │ │ │ ├── FormsViewPager.java
│ │ │ │ │ ├── FragmentContainer.java
│ │ │ │ │ ├── FrameRenderer.java
│ │ │ │ │ ├── MasterDetailContainer.java
│ │ │ │ │ ├── MasterDetailPageRenderer.java
│ │ │ │ │ ├── NavigationPageRenderer_ClickListener.java
│ │ │ │ │ ├── NavigationPageRenderer_Container.java
│ │ │ │ │ ├── NavigationPageRenderer_DrawerMultiplexedListener.java
│ │ │ │ │ ├── NavigationPageRenderer.java
│ │ │ │ │ ├── PickerRenderer.java
│ │ │ │ │ ├── PickerRenderer_PickerListener.java
│ │ │ │ │ ├── Platform_ModalContainer.java
│ │ │ │ │ ├── SwitchRenderer.java
│ │ │ │ │ ├── TabbedPageRenderer.java
│ │ │ │ │ └── ViewRenderer_2.java
│ │ │ │ ├── md5f92e0daf340890c9667469657ee2ece8
│ │ │ │ │ ├── ButtonRenderer.java
│ │ │ │ │ ├── FrameRenderer.java
│ │ │ │ │ ├── ImageRenderer.java
│ │ │ │ │ └── LabelRenderer.java
│ │ │ │ └── mono
│ │ │ │ ├── android
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── ApplicationRegistration.java
│ │ │ │ │ │ └── NotifyTimeZoneChanges.java
│ │ │ │ │ └── support
│ │ │ │ │ ├── design
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ ├── AppBarLayout_OnOffsetChangedListenerImplementor.java
│ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemReselectedListenerImplementor.java
│ │ │ │ │ │ ├── BottomNavigationView_OnNavigationItemSelectedListenerImplementor.java
│ │ │ │ │ │ ├── NavigationView_OnNavigationItemSelectedListenerImplementor.java
│ │ │ │ │ │ ├── SwipeDismissBehavior_OnDismissListenerImplementor.java
│ │ │ │ │ │ └── TabLayout_OnTabSelectedListenerImplementor.java
│ │ │ │ │ ├── transition
│ │ │ │ │ │ └── Transition_TransitionListenerImplementor.java
│ │ │ │ │ ├── v4
│ │ │ │ │ │ ├── app
│ │ │ │ │ │ │ ├── FragmentManager_OnBackStackChangedListenerImplementor.java
│ │ │ │ │ │ │ └── SharedElementCallback_OnSharedElementsReadyListenerImplementor.java
│ │ │ │ │ │ ├── content
│ │ │ │ │ │ │ ├── Loader_OnLoadCanceledListenerImplementor.java
│ │ │ │ │ │ │ └── Loader_OnLoadCompleteListenerImplementor.java
│ │ │ │ │ │ ├── media
│ │ │ │ │ │ │ └── session
│ │ │ │ │ │ │ └── MediaSessionCompat_OnActiveChangeListenerImplementor.java
│ │ │ │ │ │ ├── os
│ │ │ │ │ │ │ └── CancellationSignal_OnCancelListenerImplementor.java
│ │ │ │ │ │ ├── view
│ │ │ │ │ │ │ ├── accessibility
│ │ │ │ │ │ │ │ ├── AccessibilityManagerCompat_AccessibilityStateChangeListenerImplementor.java
│ │ │ │ │ │ │ │ └── AccessibilityManagerCompat_TouchExplorationStateChangeListenerImplementor.java
│ │ │ │ │ │ │ ├── ActionProvider_SubUiVisibilityListenerImplementor.java
│ │ │ │ │ │ │ ├── ActionProvider_VisibilityListenerImplementor.java
│ │ │ │ │ │ │ ├── AsyncLayoutInflater_OnInflateFinishedListenerImplementor.java
│ │ │ │ │ │ │ ├── MenuItemCompat_OnActionExpandListenerImplementor.java
│ │ │ │ │ │ │ ├── OnApplyWindowInsetsListenerImplementor.java
│ │ │ │ │ │ │ ├── ViewPager_OnAdapterChangeListenerImplementor.java
│ │ │ │ │ │ │ ├── ViewPager_OnPageChangeListenerImplementor.java
│ │ │ │ │ │ │ ├── ViewPropertyAnimatorListenerImplementor.java
│ │ │ │ │ │ │ └── ViewPropertyAnimatorUpdateListenerImplementor.java
│ │ │ │ │ │ └── widget
│ │ │ │ │ │ ├── DrawerLayout_DrawerListenerImplementor.java
│ │ │ │ │ │ ├── NestedScrollView_OnScrollChangeListenerImplementor.java
│ │ │ │ │ │ ├── SlidingPaneLayout_PanelSlideListenerImplementor.java
│ │ │ │ │ │ └── SwipeRefreshLayout_OnRefreshListenerImplementor.java
│ │ │ │ │ └── v7
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── ActionBar_OnMenuVisibilityListenerImplementor.java
│ │ │ │ │ │ ├── ActionBar_OnNavigationListenerImplementor.java
│ │ │ │ │ │ └── ActionBar_TabListenerImplementor.java
│ │ │ │ │ ├── graphics
│ │ │ │ │ │ └── Palette_PaletteAsyncListenerImplementor.java
│ │ │ │ │ ├── media
│ │ │ │ │ │ └── RemotePlaybackClient_OnMessageReceivedListenerImplementor.java
│ │ │ │ │ └── widget
│ │ │ │ │ ├── ActionMenuView_OnMenuItemClickListenerImplementor.java
│ │ │ │ │ ├── ContentFrameLayout_OnAttachListenerImplementor.java
│ │ │ │ │ ├── FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java
│ │ │ │ │ ├── MenuItemHoverListenerImplementor.java
│ │ │ │ │ ├── PopupMenu_OnDismissListenerImplementor.java
│ │ │ │ │ ├── PopupMenu_OnMenuItemClickListenerImplementor.java
│ │ │ │ │ ├── RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java
│ │ │ │ │ ├── RecyclerView_OnChildAttachStateChangeListenerImplementor.java
│ │ │ │ │ ├── RecyclerView_OnItemTouchListenerImplementor.java
│ │ │ │ │ ├── RecyclerView_RecyclerListenerImplementor.java
│ │ │ │ │ ├── SearchView_OnCloseListenerImplementor.java
│ │ │ │ │ ├── SearchView_OnQueryTextListenerImplementor.java
│ │ │ │ │ ├── SearchView_OnSuggestionListenerImplementor.java
│ │ │ │ │ ├── ShareActionProvider_OnShareTargetSelectedListenerImplementor.java
│ │ │ │ │ ├── Toolbar_OnMenuItemClickListenerImplementor.java
│ │ │ │ │ └── ViewStubCompat_OnInflateListenerImplementor.java
│ │ │ │ ├── MonoPackageManager.java
│ │ │ │ └── MonoRuntimeProvider.java
│ │ │ ├── typemap.jm
│ │ │ └── typemap.mj
│ │ ├── android_debug_keystore.flag
│ │ ├── build.props
│ │ ├── Component.R.cs.flag
│ │ ├── designtime
│ │ │ ├── build.props
│ │ │ ├── libraryprojectimports.cache
│ │ │ └── Resource.designer.cs
│ │ ├── devices.cache
│ │ ├── _dex_stamp
│ │ ├── _ErrorCodes
│ │ ├── _javac.stamp
│ │ ├── _javastubs.stamp
│ │ ├── libraryimports.cache
│ │ ├── libraryimports.cache.stamp
│ │ ├── libraryprojectimports.cache
│ │ ├── link.flag
│ │ ├── linksrc
│ │ │ ├── FormsViewGroup.dll
│ │ │ ├── FormsViewGroup.pdb
│ │ │ ├── Java.Interop.dll
│ │ │ ├── Mono.Android.dll
│ │ │ ├── Mono.Android.pdb
│ │ │ ├── Mono.Security.dll
│ │ │ ├── Mono.Security.pdb
│ │ │ ├── mscorlib.dll
│ │ │ ├── mscorlib.pdb
│ │ │ ├── netstandard.dll
│ │ │ ├── Newtonsoft.Json.dll
│ │ │ ├── Newtonsoft.Json.pdb
│ │ │ ├── PdaApp.Android.dll
│ │ │ ├── PdaApp.Android.dll.mdb
│ │ │ ├── PdaApp.dll
│ │ │ ├── PdaApp.pdb
│ │ │ ├── System.ComponentModel.Composition.dll
│ │ │ ├── System.ComponentModel.Composition.pdb
│ │ │ ├── System.Core.dll
│ │ │ ├── System.Core.pdb
│ │ │ ├── System.Data.dll
│ │ │ ├── System.Data.pdb
│ │ │ ├── System.dll
│ │ │ ├── System.IO.Compression.dll
│ │ │ ├── System.IO.Compression.FileSystem.dll
│ │ │ ├── System.IO.Compression.FileSystem.pdb
│ │ │ ├── System.IO.Compression.pdb
│ │ │ ├── System.Net.Http.dll
│ │ │ ├── System.Net.Http.pdb
│ │ │ ├── System.Numerics.dll
│ │ │ ├── System.Numerics.pdb
│ │ │ ├── System.pdb
│ │ │ ├── System.Runtime.Serialization.dll
│ │ │ ├── System.Runtime.Serialization.pdb
│ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ ├── System.ServiceModel.Internals.pdb
│ │ │ ├── System.Transactions.dll
│ │ │ ├── System.Transactions.pdb
│ │ │ ├── System.Web.Services.dll
│ │ │ ├── System.Web.Services.pdb
│ │ │ ├── System.Xml.dll
│ │ │ ├── System.Xml.Linq.dll
│ │ │ ├── System.Xml.Linq.pdb
│ │ │ ├── System.Xml.pdb
│ │ │ ├── Xamarin.Android.Arch.Core.Common.dll
│ │ │ ├── Xamarin.Android.Arch.Lifecycle.Common.dll
│ │ │ ├── Xamarin.Android.Arch.Lifecycle.Runtime.dll
│ │ │ ├── Xamarin.Android.Support.Animated.Vector.Drawable.dll
│ │ │ ├── Xamarin.Android.Support.Annotations.dll
│ │ │ ├── Xamarin.Android.Support.Compat.dll
│ │ │ ├── Xamarin.Android.Support.Core.UI.dll
│ │ │ ├── Xamarin.Android.Support.Core.Utils.dll
│ │ │ ├── Xamarin.Android.Support.Design.dll
│ │ │ ├── Xamarin.Android.Support.Fragment.dll
│ │ │ ├── Xamarin.Android.Support.Media.Compat.dll
│ │ │ ├── Xamarin.Android.Support.Transition.dll
│ │ │ ├── Xamarin.Android.Support.v4.dll
│ │ │ ├── Xamarin.Android.Support.v7.AppCompat.dll
│ │ │ ├── Xamarin.Android.Support.v7.CardView.dll
│ │ │ ├── Xamarin.Android.Support.v7.MediaRouter.dll
│ │ │ ├── Xamarin.Android.Support.v7.Palette.dll
│ │ │ ├── Xamarin.Android.Support.v7.RecyclerView.dll
│ │ │ ├── Xamarin.Android.Support.Vector.Drawable.dll
│ │ │ ├── Xamarin.Forms.Core.dll
│ │ │ ├── Xamarin.Forms.Core.pdb
│ │ │ ├── Xamarin.Forms.Platform.Android.dll
│ │ │ ├── Xamarin.Forms.Platform.Android.pdb
│ │ │ ├── Xamarin.Forms.Platform.dll
│ │ │ ├── Xamarin.Forms.Xaml.dll
│ │ │ └── Xamarin.Forms.Xaml.pdb
│ │ ├── lp
│ │ │ ├── 0
│ │ │ │ └── jl
│ │ │ │ └── formsviewgroup.jar
│ │ │ ├── 0.stamp
│ │ │ ├── 10
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── proguard.txt
│ │ │ │ └── R.txt
│ │ │ ├── 10.stamp
│ │ │ ├── 11
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ └── R.txt
│ │ │ ├── 11.stamp
│ │ │ ├── 12
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── proguard.txt
│ │ │ │ ├── public.txt
│ │ │ │ ├── res
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── anim-v21
│ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml
│ │ │ │ │ │ └── design_bottom_sheet_slide_out.xml
│ │ │ │ │ ├── color
│ │ │ │ │ │ ├── design_error.xml
│ │ │ │ │ │ └── design_tint_password_toggle.xml
│ │ │ │ │ ├── color-v23
│ │ │ │ │ │ └── design_tint_password_toggle.xml
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml
│ │ │ │ │ │ ├── design_fab_background.xml
│ │ │ │ │ │ ├── design_password_eye.xml
│ │ │ │ │ │ ├── design_snackbar_background.xml
│ │ │ │ │ │ └── navigation_empty_icon.xml
│ │ │ │ │ ├── drawable-anydpi-v21
│ │ │ │ │ │ ├── design_ic_visibility_off.xml
│ │ │ │ │ │ └── design_ic_visibility.xml
│ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ └── design_ic_visibility.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_off.png
│ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ ├── drawable-xxhdpi-v4
│ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ ├── drawable-xxxhdpi-v4
│ │ │ │ │ │ ├── design_ic_visibility_off.png
│ │ │ │ │ │ └── design_ic_visibility.png
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── design_bottom_navigation_item.xml
│ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml
│ │ │ │ │ │ ├── design_layout_snackbar_include.xml
│ │ │ │ │ │ ├── design_layout_snackbar.xml
│ │ │ │ │ │ ├── design_layout_tab_icon.xml
│ │ │ │ │ │ ├── design_layout_tab_text.xml
│ │ │ │ │ │ ├── design_menu_item_action_area.xml
│ │ │ │ │ │ ├── design_navigation_item_header.xml
│ │ │ │ │ │ ├── design_navigation_item_separator.xml
│ │ │ │ │ │ ├── design_navigation_item_subheader.xml
│ │ │ │ │ │ ├── design_navigation_item.xml
│ │ │ │ │ │ ├── design_navigation_menu_item.xml
│ │ │ │ │ │ ├── design_navigation_menu.xml
│ │ │ │ │ │ └── design_text_input_password_icon.xml
│ │ │ │ │ ├── layout-sw600dp-v13
│ │ │ │ │ │ └── design_layout_snackbar.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-land
│ │ │ │ │ │ └── values-land.xml
│ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ ├── values-v21
│ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ └── values-v26
│ │ │ │ │ └── values-v26.xml
│ │ │ │ └── R.txt
│ │ │ ├── 12.stamp
│ │ │ ├── 13
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ └── R.txt
│ │ │ ├── 13.stamp
│ │ │ ├── 14
│ │ │ │ └── jl
│ │ │ │ ├── aidl
│ │ │ │ │ └── android
│ │ │ │ │ └── support
│ │ │ │ │ └── v4
│ │ │ │ │ └── media
│ │ │ │ │ ├── MediaDescriptionCompat.aidl
│ │ │ │ │ ├── MediaMetadataCompat.aidl
│ │ │ │ │ ├── RatingCompat.aidl
│ │ │ │ │ └── session
│ │ │ │ │ ├── MediaSessionCompat.aidl
│ │ │ │ │ ├── ParcelableVolumeInfo.aidl
│ │ │ │ │ └── PlaybackStateCompat.aidl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── proguard.txt
│ │ │ │ ├── public.txt
│ │ │ │ ├── res
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── notification_media_action.xml
│ │ │ │ │ │ ├── notification_media_cancel_action.xml
│ │ │ │ │ │ ├── notification_template_big_media_custom.xml
│ │ │ │ │ │ ├── notification_template_big_media_narrow_custom.xml
│ │ │ │ │ │ ├── notification_template_big_media_narrow.xml
│ │ │ │ │ │ ├── notification_template_big_media.xml
│ │ │ │ │ │ ├── notification_template_lines_media.xml
│ │ │ │ │ │ ├── notification_template_media_custom.xml
│ │ │ │ │ │ └── notification_template_media.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-v21
│ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ └── values-v24
│ │ │ │ │ └── values-v24.xml
│ │ │ │ └── R.txt
│ │ │ ├── 14.stamp
│ │ │ ├── 15
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── proguard.txt
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ └── R.txt
│ │ │ ├── 15.stamp
│ │ │ ├── 16
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── R.txt
│ │ │ ├── 16.stamp
│ │ │ ├── 17
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── public.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── 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
│ │ │ │ │ │ ├── tooltip_enter.xml
│ │ │ │ │ │ └── tooltip_exit.xml
│ │ │ │ │ ├── color
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── color-v11
│ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml
│ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── drawable-v21
│ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml
│ │ │ │ │ │ ├── abc_btn_colored_material.xml
│ │ │ │ │ │ └── abc_edit_text_material.xml
│ │ │ │ │ ├── drawable-v23
│ │ │ │ │ │ └── abc_control_background_material.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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_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
│ │ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── 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_list_item.xml
│ │ │ │ │ │ ├── abc_activity_chooser_view.xml
│ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml
│ │ │ │ │ │ ├── abc_alert_dialog_material.xml
│ │ │ │ │ │ ├── abc_alert_dialog_title_material.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_overlay_action_mode.xml
│ │ │ │ │ │ ├── abc_screen_simple.xml
│ │ │ │ │ │ ├── abc_screen_toolbar.xml
│ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml
│ │ │ │ │ │ ├── abc_search_view.xml
│ │ │ │ │ │ ├── abc_select_dialog_material.xml
│ │ │ │ │ │ ├── select_dialog_item_material.xml
│ │ │ │ │ │ ├── select_dialog_multichoice_material.xml
│ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml
│ │ │ │ │ │ ├── support_simple_spinner_dropdown_item.xml
│ │ │ │ │ │ └── tooltip.xml
│ │ │ │ │ ├── layout-v26
│ │ │ │ │ │ └── abc_screen_toolbar.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-af
│ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ ├── values-am
│ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ ├── values-ar
│ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ ├── values-az
│ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ ├── values-be
│ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ ├── values-bg
│ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ ├── values-bn
│ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ ├── values-bs
│ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ ├── values-et
│ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ ├── values-eu
│ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ ├── values-fa
│ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ ├── values-fi
│ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ ├── values-fr
│ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ └── values-fr-rCA.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-pa
│ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ ├── values-pl
│ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ ├── values-port
│ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ ├── values-pt
│ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ └── values-pt-rPT.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-v11
│ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ ├── values-v12
│ │ │ │ │ │ └── values-v12.xml
│ │ │ │ │ ├── values-v13
│ │ │ │ │ │ └── values-v13.xml
│ │ │ │ │ ├── values-v14
│ │ │ │ │ │ └── values-v14.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-vi
│ │ │ │ │ │ └── values-vi.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
│ │ │ │ └── R.txt
│ │ │ ├── 17.stamp
│ │ │ ├── 18
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── res
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── values-v23
│ │ │ │ │ └── values-v23.xml
│ │ │ │ └── R.txt
│ │ │ ├── 18.stamp
│ │ │ ├── 19
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── mr_button_connected_dark.xml
│ │ │ │ │ │ ├── mr_button_connected_light.xml
│ │ │ │ │ │ ├── mr_button_connecting_dark.xml
│ │ │ │ │ │ ├── mr_button_connecting_light.xml
│ │ │ │ │ │ ├── mr_button_dark.xml
│ │ │ │ │ │ ├── mr_button_light.xml
│ │ │ │ │ │ ├── mr_dialog_close_dark.xml
│ │ │ │ │ │ ├── mr_dialog_close_light.xml
│ │ │ │ │ │ ├── mr_dialog_material_background_dark.xml
│ │ │ │ │ │ ├── mr_dialog_material_background_light.xml
│ │ │ │ │ │ ├── mr_group_collapse.xml
│ │ │ │ │ │ ├── mr_group_expand.xml
│ │ │ │ │ │ ├── mr_media_pause_dark.xml
│ │ │ │ │ │ ├── mr_media_pause_light.xml
│ │ │ │ │ │ ├── mr_media_play_dark.xml
│ │ │ │ │ │ ├── mr_media_play_light.xml
│ │ │ │ │ │ ├── mr_media_stop_dark.xml
│ │ │ │ │ │ ├── mr_media_stop_light.xml
│ │ │ │ │ │ ├── mr_vol_type_audiotrack_dark.xml
│ │ │ │ │ │ └── mr_vol_type_audiotrack_light.xml
│ │ │ │ │ ├── drawable-hdpi-v4
│ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ ├── drawable-mdpi-v4
│ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ ├── drawable-xhdpi-v4
│ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_00_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_00_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_01_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_01_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_02_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_02_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_03_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_03_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_04_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_04_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_05_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_05_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_06_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_06_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_07_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_07_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_08_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_08_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_09_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_09_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_10_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_10_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_11_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_11_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_12_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_12_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_13_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_13_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_14_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_14_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_15_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_15_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_16_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_16_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_17_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_17_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_18_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_18_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_19_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_19_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_20_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_20_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_21_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_21_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_22_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_22_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_23_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_23_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_24_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_24_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_25_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_25_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_26_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_26_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_27_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_27_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_28_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_28_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_29_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_29_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_30_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_30_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_00_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_00_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_01_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_01_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_02_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_02_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_03_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_03_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_04_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_04_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_05_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_05_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_06_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_06_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_07_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_07_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_08_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_08_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_09_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_09_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_10_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_10_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_11_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_11_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_12_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_12_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_13_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_13_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_14_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_14_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_15_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_15_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_16_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_16_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_17_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_17_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_18_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_18_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_19_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_19_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_20_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_20_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_21_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_21_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_22_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_22_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_23_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_23_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_24_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_24_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_25_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_25_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_26_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_26_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_27_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_27_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_28_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_28_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_29_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_29_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_30_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_30_light.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ ├── drawable-xxhdpi-v4
│ │ │ │ │ │ ├── ic_audiotrack_dark.png
│ │ │ │ │ │ ├── ic_audiotrack_light.png
│ │ │ │ │ │ ├── ic_dialog_close_dark.png
│ │ │ │ │ │ ├── ic_dialog_close_light.png
│ │ │ │ │ │ ├── ic_media_pause_dark.png
│ │ │ │ │ │ ├── ic_media_pause_light.png
│ │ │ │ │ │ ├── ic_media_play_dark.png
│ │ │ │ │ │ ├── ic_media_play_light.png
│ │ │ │ │ │ ├── ic_media_stop_dark.png
│ │ │ │ │ │ ├── ic_media_stop_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_00_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_00_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_01_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_01_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_02_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_02_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_03_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_03_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_04_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_04_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_05_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_05_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_06_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_06_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_07_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_07_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_08_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_08_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_09_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_09_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_10_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_10_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_11_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_11_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_12_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_12_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_13_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_13_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_14_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_14_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_15_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_15_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_16_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_16_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_17_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_17_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_18_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_18_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_19_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_19_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_20_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_20_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_21_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_21_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_22_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_22_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_23_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_23_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_24_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_24_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_25_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_25_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_26_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_26_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_27_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_27_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_28_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_28_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_29_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_29_light.png
│ │ │ │ │ │ ├── ic_mr_button_connected_30_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connected_30_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_00_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_00_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_01_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_01_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_02_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_02_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_03_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_03_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_04_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_04_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_05_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_05_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_06_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_06_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_07_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_07_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_08_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_08_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_09_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_09_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_10_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_10_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_11_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_11_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_12_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_12_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_13_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_13_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_14_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_14_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_15_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_15_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_16_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_16_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_17_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_17_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_18_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_18_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_19_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_19_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_20_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_20_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_21_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_21_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_22_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_22_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_23_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_23_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_24_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_24_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_25_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_25_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_26_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_26_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_27_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_27_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_28_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_28_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_29_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_29_light.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_30_dark.png
│ │ │ │ │ │ ├── ic_mr_button_connecting_30_light.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disabled_light.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_dark.png
│ │ │ │ │ │ ├── ic_mr_button_disconnected_light.png
│ │ │ │ │ │ ├── ic_mr_button_grey.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_dark.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_group_light.png
│ │ │ │ │ │ ├── ic_vol_type_speaker_light.png
│ │ │ │ │ │ ├── ic_vol_type_tv_dark.png
│ │ │ │ │ │ └── ic_vol_type_tv_light.png
│ │ │ │ │ ├── drawable-xxxhdpi-v4
│ │ │ │ │ │ ├── ic_group_collapse_00.png
│ │ │ │ │ │ ├── ic_group_collapse_01.png
│ │ │ │ │ │ ├── ic_group_collapse_02.png
│ │ │ │ │ │ ├── ic_group_collapse_03.png
│ │ │ │ │ │ ├── ic_group_collapse_04.png
│ │ │ │ │ │ ├── ic_group_collapse_05.png
│ │ │ │ │ │ ├── ic_group_collapse_06.png
│ │ │ │ │ │ ├── ic_group_collapse_07.png
│ │ │ │ │ │ ├── ic_group_collapse_08.png
│ │ │ │ │ │ ├── ic_group_collapse_09.png
│ │ │ │ │ │ ├── ic_group_collapse_10.png
│ │ │ │ │ │ ├── ic_group_collapse_11.png
│ │ │ │ │ │ ├── ic_group_collapse_12.png
│ │ │ │ │ │ ├── ic_group_collapse_13.png
│ │ │ │ │ │ ├── ic_group_collapse_14.png
│ │ │ │ │ │ ├── ic_group_collapse_15.png
│ │ │ │ │ │ ├── ic_group_expand_00.png
│ │ │ │ │ │ ├── ic_group_expand_01.png
│ │ │ │ │ │ ├── ic_group_expand_02.png
│ │ │ │ │ │ ├── ic_group_expand_03.png
│ │ │ │ │ │ ├── ic_group_expand_04.png
│ │ │ │ │ │ ├── ic_group_expand_05.png
│ │ │ │ │ │ ├── ic_group_expand_06.png
│ │ │ │ │ │ ├── ic_group_expand_07.png
│ │ │ │ │ │ ├── ic_group_expand_08.png
│ │ │ │ │ │ ├── ic_group_expand_09.png
│ │ │ │ │ │ ├── ic_group_expand_10.png
│ │ │ │ │ │ ├── ic_group_expand_11.png
│ │ │ │ │ │ ├── ic_group_expand_12.png
│ │ │ │ │ │ ├── ic_group_expand_13.png
│ │ │ │ │ │ ├── ic_group_expand_14.png
│ │ │ │ │ │ ├── ic_group_expand_15.png
│ │ │ │ │ │ └── ic_mr_button_grey.png
│ │ │ │ │ ├── interpolator
│ │ │ │ │ │ ├── mr_fast_out_slow_in.xml
│ │ │ │ │ │ └── mr_linear_out_slow_in.xml
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── mr_chooser_dialog.xml
│ │ │ │ │ │ ├── mr_chooser_list_item.xml
│ │ │ │ │ │ ├── mr_controller_material_dialog_b.xml
│ │ │ │ │ │ ├── mr_controller_volume_item.xml
│ │ │ │ │ │ ├── mr_playback_control.xml
│ │ │ │ │ │ └── mr_volume_control.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-af
│ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ ├── values-am
│ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ ├── values-ar
│ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ ├── values-az
│ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ ├── values-be
│ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ ├── values-bg
│ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ ├── values-bn
│ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ ├── values-bs
│ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ └── values-b+sr+Latn.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
│ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ ├── values-et
│ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ ├── values-eu
│ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ ├── values-fa
│ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ ├── values-fi
│ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ ├── values-fr
│ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ └── values-fr-rCA.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-land
│ │ │ │ │ │ └── values-land.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-pa
│ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ ├── values-pl
│ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ ├── values-pt
│ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ └── values-pt-rPT.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-sw720dp-v13
│ │ │ │ │ │ └── values-sw720dp-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-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
│ │ │ │ └── R.txt
│ │ │ ├── 19.stamp
│ │ │ ├── 1.stamp
│ │ │ ├── 20
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ └── R.txt
│ │ │ ├── 20.stamp
│ │ │ ├── 21
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ ├── public.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── proguard.txt
│ │ │ │ ├── public.txt
│ │ │ │ ├── res
│ │ │ │ │ └── values
│ │ │ │ │ └── values.xml
│ │ │ │ └── R.txt
│ │ │ ├── 21.stamp
│ │ │ ├── 22
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ └── R.txt
│ │ │ │ └── R.txt
│ │ │ ├── 22.stamp
│ │ │ ├── 23.stamp
│ │ │ ├── 24.stamp
│ │ │ ├── 25.stamp
│ │ │ ├── 26.stamp
│ │ │ ├── 27.stamp
│ │ │ ├── 2.stamp
│ │ │ ├── 3.stamp
│ │ │ ├── 4
│ │ │ │ └── jl
│ │ │ │ └── arch-core-common.jar
│ │ │ ├── 4.stamp
│ │ │ ├── 5
│ │ │ │ └── jl
│ │ │ │ └── arch-lifecycle-common.jar
│ │ │ ├── 5.stamp
│ │ │ ├── 6
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── proguard.txt
│ │ │ │ └── R.txt
│ │ │ ├── 6.stamp
│ │ │ ├── 7
│ │ │ │ └── jl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── proguard.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── proguard.txt
│ │ │ │ └── R.txt
│ │ │ ├── 7.stamp
│ │ │ ├── 8
│ │ │ │ └── jl
│ │ │ │ └── support-annotations.jar
│ │ │ ├── 8.stamp
│ │ │ ├── 9
│ │ │ │ └── jl
│ │ │ │ ├── aidl
│ │ │ │ │ └── android
│ │ │ │ │ └── support
│ │ │ │ │ └── v4
│ │ │ │ │ └── os
│ │ │ │ │ └── ResultReceiver.aidl
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ ├── bin
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ ├── classes.jar
│ │ │ │ │ ├── public.txt
│ │ │ │ │ └── R.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── public.txt
│ │ │ │ ├── res
│ │ │ │ │ ├── drawable
│ │ │ │ │ │ ├── notification_bg_low.xml
│ │ │ │ │ │ ├── notification_bg.xml
│ │ │ │ │ │ ├── notification_icon_background.xml
│ │ │ │ │ │ └── notification_tile_bg.xml
│ │ │ │ │ ├── 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
│ │ │ │ │ ├── layout
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ ├── notification_template_icon_group.xml
│ │ │ │ │ │ ├── notification_template_part_chronometer.xml
│ │ │ │ │ │ └── notification_template_part_time.xml
│ │ │ │ │ ├── layout-v16
│ │ │ │ │ │ └── notification_template_custom_big.xml
│ │ │ │ │ ├── layout-v21
│ │ │ │ │ │ ├── notification_action_tombstone.xml
│ │ │ │ │ │ ├── notification_action.xml
│ │ │ │ │ │ ├── notification_template_custom_big.xml
│ │ │ │ │ │ └── notification_template_icon_group.xml
│ │ │ │ │ ├── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ ├── values-af
│ │ │ │ │ │ └── values-af.xml
│ │ │ │ │ ├── values-am
│ │ │ │ │ │ └── values-am.xml
│ │ │ │ │ ├── values-ar
│ │ │ │ │ │ └── values-ar.xml
│ │ │ │ │ ├── values-az
│ │ │ │ │ │ └── values-az.xml
│ │ │ │ │ ├── values-be
│ │ │ │ │ │ └── values-be.xml
│ │ │ │ │ ├── values-bg
│ │ │ │ │ │ └── values-bg.xml
│ │ │ │ │ ├── values-bn
│ │ │ │ │ │ └── values-bn.xml
│ │ │ │ │ ├── values-bs
│ │ │ │ │ │ └── values-bs.xml
│ │ │ │ │ ├── values-b+sr+Latn
│ │ │ │ │ │ └── values-b+sr+Latn.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-rGB
│ │ │ │ │ │ └── values-en-rGB.xml
│ │ │ │ │ ├── values-en-rIN
│ │ │ │ │ │ └── values-en-rIN.xml
│ │ │ │ │ ├── values-es
│ │ │ │ │ │ └── values-es.xml
│ │ │ │ │ ├── values-es-rUS
│ │ │ │ │ │ └── values-es-rUS.xml
│ │ │ │ │ ├── values-et
│ │ │ │ │ │ └── values-et.xml
│ │ │ │ │ ├── values-eu
│ │ │ │ │ │ └── values-eu.xml
│ │ │ │ │ ├── values-fa
│ │ │ │ │ │ └── values-fa.xml
│ │ │ │ │ ├── values-fi
│ │ │ │ │ │ └── values-fi.xml
│ │ │ │ │ ├── values-fr
│ │ │ │ │ │ └── values-fr.xml
│ │ │ │ │ ├── values-fr-rCA
│ │ │ │ │ │ └── values-fr-rCA.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-pa
│ │ │ │ │ │ └── values-pa.xml
│ │ │ │ │ ├── values-pl
│ │ │ │ │ │ └── values-pl.xml
│ │ │ │ │ ├── values-port
│ │ │ │ │ │ └── values-port.xml
│ │ │ │ │ ├── values-pt
│ │ │ │ │ │ └── values-pt.xml
│ │ │ │ │ ├── values-pt-rBR
│ │ │ │ │ │ └── values-pt-rBR.xml
│ │ │ │ │ ├── values-pt-rPT
│ │ │ │ │ │ └── values-pt-rPT.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
│ │ │ │ └── R.txt
│ │ │ ├── 9.stamp
│ │ │ └── map.cache
│ │ ├── MonoAndroid,Version=v8.1.AssemblyAttributes.cs
│ │ ├── PdaApp.Android.csprojAssemblyReference.cache
│ │ ├── PdaApp.Android.csproj.CopyComplete
│ │ ├── PdaApp.Android.csproj.CoreCompileInputs.cache
│ │ ├── PdaApp.Android.csproj.FileListAbsolute.txt
│ │ ├── PdaApp.Android.dll
│ │ ├── PdaApp.Android.nuget.stamp
│ │ ├── PdaApp.Android.pdb
│ │ ├── R.cs.flag
│ │ ├── res
│ │ │ ├── drawable
│ │ │ │ ├── logo.ico
│ │ │ │ └── resizeapi.png
│ │ │ ├── layout
│ │ │ │ ├── tabbar.xml
│ │ │ │ └── toolbar.xml
│ │ │ ├── mipmap-anydpi-v26
│ │ │ │ ├── icon_round.xml
│ │ │ │ └── icon.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
│ │ ├── res.flag
│ │ ├── resolved_assemblies.txt
│ │ ├── resourcepaths.cache
│ │ ├── R.txt
│ │ ├── static.flag
│ │ ├── strip.flag
│ │ ├── _TelemetryProps
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── upload.flag
│ │ ├── _WarningCodes
│ │ └── XamlC.stamp
│ ├── PdaApp.Android.csproj
│ ├── PdaApp.Android.csproj.user
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ └── Resources
│ ├── AboutResources.txt
│ ├── drawable
│ │ ├── logo.ico
│ │ └── resizeApi.png
│ ├── layout
│ │ ├── Tabbar.axml
│ │ └── Toolbar.axml
│ ├── mipmap-anydpi-v26
│ │ ├── icon_round.xml
│ │ └── icon.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
│ ├── Resource.designer.cs
│ └── values
│ ├── colors.xml
│ └── styles.xml
└── PdaApp.sln
1216 directories, 4396 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论