merger.xml 1.1 MB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <merger version="3" xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.makeramen:roundedimageview:2.3.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\d106ea2d0468475a1882d50102bd0896\roundedimageview-2.3.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.makeramen:roundedimageview:2.3.0" from-dependency="true" generated-set="com.makeramen:roundedimageview:2.3.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\d106ea2d0468475a1882d50102bd0896\roundedimageview-2.3.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\d106ea2d0468475a1882d50102bd0896\roundedimageview-2.3.0\res\values\values.xml" qualifiers=""><declare-styleable name="RoundedImageView"><attr format="dimension" name="riv_corner_radius"/><attr format="dimension" name="riv_corner_radius_top_left"/><attr format="dimension" name="riv_corner_radius_top_right"/><attr format="dimension" name="riv_corner_radius_bottom_left"/><attr format="dimension" name="riv_corner_radius_bottom_right"/><attr format="dimension" name="riv_border_width"/><attr format="color" name="riv_border_color"/><attr format="boolean" name="riv_mutate_background"/><attr format="boolean" name="riv_oval"/><attr name="android:scaleType"/><attr name="riv_tile_mode">
  3. <enum name="clamp" value="0"/>
  4. <enum name="repeat" value="1"/>
  5. <enum name="mirror" value="2"/>
  6. </attr><attr name="riv_tile_mode_x">
  7. <enum name="clamp" value="0"/>
  8. <enum name="repeat" value="1"/>
  9. <enum name="mirror" value="2"/>
  10. </attr><attr name="riv_tile_mode_y">
  11. <enum name="clamp" value="0"/>
  12. <enum name="repeat" value="1"/>
  13. <enum name="mirror" value="2"/>
  14. </attr></declare-styleable><string name="define_roundedimageview"/><string name="library_roundedimageview_author">Vince Mi</string><string name="library_roundedimageview_authorWebsite">https://github.com/vinc3m1</string><string name="library_roundedimageview_isOpenSource">true</string><string name="library_roundedimageview_libraryDescription">A fast ImageView (and Drawable) that supports rounded corners (and ovals or circles) based on the original example from Romain Guy.</string><string name="library_roundedimageview_libraryName">RoundedImageView</string><string name="library_roundedimageview_libraryVersion">1.3.0</string><string name="library_roundedimageview_libraryWebsite">https://github.com/vinc3m1/RoundedImageView</string><string name="library_roundedimageview_licenseId">apache_2_0</string><string name="library_roundedimageview_repositoryLink">https://github.com/vinc3m1/RoundedImageView.git</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.cardview:cardview:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\b01d7da430a057ba983ddbbf313da022\cardview-1.0.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.cardview:cardview:1.0.0" from-dependency="true" generated-set="androidx.cardview:cardview:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\b01d7da430a057ba983ddbbf313da022\cardview-1.0.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\b01d7da430a057ba983ddbbf313da022\cardview-1.0.0\res\values\values.xml" qualifiers=""><attr format="reference" name="cardViewStyle"/><color name="cardview_dark_background">#FF424242</color><color name="cardview_light_background">#FFFFFFFF</color><color name="cardview_shadow_end_color">#03000000</color><color name="cardview_shadow_start_color">#37000000</color><declare-styleable name="CardView">
  15. <attr format="color" name="cardBackgroundColor"/>
  16. <attr format="dimension" name="cardCornerRadius"/>
  17. <attr format="dimension" name="cardElevation"/>
  18. <attr format="dimension" name="cardMaxElevation"/>
  19. <attr format="boolean" name="cardUseCompatPadding"/>
  20. <attr format="boolean" name="cardPreventCornerOverlap"/>
  21. <attr format="dimension" name="contentPadding"/>
  22. <attr format="dimension" name="contentPaddingLeft"/>
  23. <attr format="dimension" name="contentPaddingRight"/>
  24. <attr format="dimension" name="contentPaddingTop"/>
  25. <attr format="dimension" name="contentPaddingBottom"/>
  26. <attr name="android:minWidth"/>
  27. <attr name="android:minHeight"/>
  28. </declare-styleable><dimen name="cardview_compat_inset_shadow">1dp</dimen><dimen name="cardview_default_elevation">2dp</dimen><dimen name="cardview_default_radius">2dp</dimen><style name="Base.CardView" parent="android:Widget">
  29. <item name="cardCornerRadius">@dimen/cardview_default_radius</item>
  30. <item name="cardElevation">@dimen/cardview_default_elevation</item>
  31. <item name="cardMaxElevation">@dimen/cardview_default_elevation</item>
  32. <item name="cardUseCompatPadding">false</item>
  33. <item name="cardPreventCornerOverlap">true</item>
  34. </style><style name="CardView" parent="Base.CardView">
  35. </style><style name="CardView.Dark">
  36. <item name="cardBackgroundColor">@color/cardview_dark_background</item>
  37. </style><style name="CardView.Light">
  38. <item name="cardBackgroundColor">@color/cardview_light_background</item>
  39. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\b01d7da430a057ba983ddbbf313da022\cardview-1.0.0\res\values-v23\values-v23.xml" qualifiers="v23"><style name="CardView" parent="Base.CardView">
  40. <item name="cardBackgroundColor">?android:attr/colorBackgroundFloating</item>
  41. </style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.lifecycle:lifecycle-viewmodel:2.3.1$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\470c0436ee93fafc6e4c73f34f9f64f3\lifecycle-viewmodel-2.3.1\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.lifecycle:lifecycle-viewmodel:2.3.1" from-dependency="true" generated-set="androidx.lifecycle:lifecycle-viewmodel:2.3.1$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\470c0436ee93fafc6e4c73f34f9f64f3\lifecycle-viewmodel-2.3.1\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\470c0436ee93fafc6e4c73f34f9f64f3\lifecycle-viewmodel-2.3.1\res\values\values.xml" qualifiers=""><id name="view_tree_view_model_store_owner"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.savedstate:savedstate:1.1.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ebd7412fb56c61ea9bd02b9a98682104\savedstate-1.1.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.savedstate:savedstate:1.1.0" from-dependency="true" generated-set="androidx.savedstate:savedstate:1.1.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ebd7412fb56c61ea9bd02b9a98682104\savedstate-1.1.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\ebd7412fb56c61ea9bd02b9a98682104\savedstate-1.1.0\res\values\values.xml" qualifiers=""><id name="view_tree_saved_state_registry_owner"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.lifecycle:lifecycle-runtime:2.3.1$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\10871b9c4867a46b28f95909a3172d0b\lifecycle-runtime-2.3.1\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.lifecycle:lifecycle-runtime:2.3.1" from-dependency="true" generated-set="androidx.lifecycle:lifecycle-runtime:2.3.1$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\10871b9c4867a46b28f95909a3172d0b\lifecycle-runtime-2.3.1\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\10871b9c4867a46b28f95909a3172d0b\lifecycle-runtime-2.3.1\res\values\values.xml" qualifiers=""><id name="view_tree_lifecycle_owner"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.core:core:1.3.2$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.core:core:1.3.2" from-dependency="true" generated-set="androidx.core:core:1.3.2$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res"><file name="notification_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable\notification_bg.xml" qualifiers="" type="drawable"/><file name="notification_bg_low" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable\notification_bg_low.xml" qualifiers="" type="drawable"/><file name="notification_icon_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable\notification_icon_background.xml" qualifiers="" type="drawable"/><file name="notification_tile_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable\notification_tile_bg.xml" qualifiers="" type="drawable"/><file name="notification_bg_low_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-hdpi-v4\notification_bg_low_normal.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_low_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-hdpi-v4\notification_bg_low_pressed.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-hdpi-v4\notification_bg_normal.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_normal_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-hdpi-v4\notification_bg_normal_pressed.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="notify_panel_notification_icon_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-hdpi-v4\notify_panel_notification_icon_bg.png" qualifiers="hdpi-v4" type="drawable"/><file name="notification_bg_low_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-mdpi-v4\notification_bg_low_normal.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_bg_low_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-mdpi-v4\notification_bg_low_pressed.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_bg_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-mdpi-v4\notification_bg_normal.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_bg_normal_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-mdpi-v4\notification_bg_normal_pressed.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="notify_panel_notification_icon_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-mdpi-v4\notify_panel_notification_icon_bg.png" qualifiers="mdpi-v4" type="drawable"/><file name="notification_action_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-v21\notification_action_background.xml" qualifiers="v21" type="drawable"/><file name="notification_bg_low_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-xhdpi-v4\notification_bg_low_normal.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notification_bg_low_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-xhdpi-v4\notification_bg_low_pressed.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notification_bg_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-xhdpi-v4\notification_bg_normal.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notification_bg_normal_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-xhdpi-v4\notification_bg_normal_pressed.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="notify_panel_notification_icon_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\drawable-xhdpi-v4\notify_panel_notification_icon_bg.png" qualifiers="xhdpi-v4" type="drawable"/><file name="custom_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\custom_dialog.xml" qualifiers="" type="layout"/><file name="notification_action" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\notification_action.xml" qualifiers="" type="layout"/><file name="notification_action_tombstone" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\notification_action_tombstone.xml" qualifiers="" type="layout"/><file name="notification_template_custom_big" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\notification_template_custom_big.xml" qualifiers="" type="layout"/><file name="notification_template_icon_group" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\notification_template_icon_group.xml" qualifiers="" type="layout"/><file name="notification_template_part_chronometer" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\notification_template_part_chronometer.xml" qualifiers="" type="layout"/><file name="notification_template_part_time" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout\notification_template_part_time.xml" qualifiers="" type="layout"/><file name="notification_template_custom_big" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout-v16\notification_template_custom_big.xml" qualifiers="v16" type="layout"/><file name="notification_action" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout-v21\notification_action.xml" qualifiers="v21" type="layout"/><file name="notification_action_tombstone" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout-v21\notification_action_tombstone.xml" qualifiers="v21" type="layout"/><file name="notification_template_custom_big" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout-v21\notification_template_custom_big.xml" qualifiers="v21" type="layout"/><file name="notification_template_icon_group" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\layout-v21\notification_template_icon_group.xml" qualifiers="v21" type="layout"/><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values\values.xml" qualifiers=""><color name="androidx_core_ripple_material_light">#1f000000</color><color name="androidx_core_secondary_text_default_material_light">#8a000000</color><color name="notification_action_color_filter">#ffffffff</color><color name="notification_icon_bg_color">#ff9e9e9e</color><dimen name="compat_button_inset_horizontal_material">4dp</dimen><dimen name="compat_button_inset_vertical_material">6dp</dimen><dimen name="compat_button_padding_horizontal_material">8dp</dimen><dimen name="compat_button_padding_vertical_material">4dp</dimen><dimen name="compat_control_corner_material">2dp</dimen><dimen name="compat_notification_large_icon_max_height">320dp</dimen><dimen name="compat_notification_large_icon_max_width">320dp</dimen><dimen name="notification_action_icon_size">32dp</dimen><dimen name="notification_action_text_size">13sp</dimen><dimen name="notification_big_circle_margin">12dp</dimen><dimen name="notification_content_margin_start">8dp</dimen><dimen name="notification_large_icon_height">64dp</dimen><dimen name="notification_large_icon_width">64dp</dimen><dimen name="notification_main_column_padding_top">10dp</dimen><dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen><dimen name="notification_right_icon_size">16dp</dimen><dimen name="notification_right_side_padding_top">2dp</dimen><dimen name="notification_small_icon_background_padding">3dp</dimen><dimen name="notification_small_icon_size_as_large">24dp</dimen><dimen name="notification_subtext_size">13sp</dimen><dimen name="notification_top_pad">10dp</dimen><dimen name="notification_top_pad_large_text">5dp</dimen><drawable name="notification_template_icon_bg">#3333B5E5</drawable><drawable name="notification_template_icon_low_bg">#0cffffff</drawable><item name="accessibility_action_clickable_span" type="id"/><item name="accessibility_custom_action_0" type="id"/><item name="accessibility_custom_action_1" type="id"/><item name="accessibility_custom_action_10" type="id"/><item name="accessibility_custom_action_11" type="id"/><item name="accessibility_custom_action_12" type="id"/><item name="accessibility_custom_action_13" type="id"/><item name="accessibility_custom_action_14" type="id"/><item name="accessibility_custom_action_15" type="id"/><item name="accessibility_custom_action_16" type="id"/><item name="accessibility_custom_action_17" type="id"/><item name="accessibility_custom_action_18" type="id"/><item name="accessibility_custom_action_19" type="id"/><item name="accessibility_custom_action_2" type="id"/><item name="accessibility_custom_action_20" type="id"/><item name="accessibility_custom_action_21" type="id"/><item name="accessibility_custom_action_22" type="id"/><item name="accessibility_custom_action_23" type="id"/><item name="accessibility_custom_action_24" type="id"/><item name="accessibility_custom_action_25" type="id"/><item name="accessibility_custom_action_26" type="id"/><item name="accessibility_custom_action_27" type="id"/><item name="accessibility_custom_action_28" type="id"/><item name="accessibility_custom_action_29" type="id"/><item name="accessibility_custom_action_3" type="id"/><item name="accessibility_custom_action_30" type="id"/><item name="accessibility_custom_action_31" type="id"/><item name="accessibility_custom_action_4" type="id"/><item name="accessibility_custom_action_5" type="id"/><item name="accessibility_custom_action_6" type="id"/><item name="accessibility_custom_action_7" type="id"/><item name="accessibility_custom_action_8" type="id"/><item name="accessibility_custom_action_9" type="id"/><item name="line1" type="id"/><item name="line3" type="id"/><item name="tag_accessibility_actions" type="id"/><item name="tag_accessibility_clickable_spans" type="id"/><item name="tag_accessibility_heading" type="id"/><item name="tag_accessibility_pane_title" type="id"/><item name="tag_screen_reader_focusable" type="id"/><item name="tag_transition_group" type="id"/><item name="tag_unhandled_key_event_manager" type="id"/><item name="tag_unhandled_key_listeners" type="id"/><item name="text" type="id"/><item name="text2" type="id"/><item name="title" type="id"/><integer name="status_bar_notification_info_maxnum">999</integer><string name="status_bar_notification_info_overflow">999+</string><style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/><style name="TextAppearance.Compat.Notification.Info">
  42. <item name="android:textSize">12sp</item>
  43. <item name="android:textColor">?android:attr/textColorSecondary</item>
  44. </style><style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/><style name="TextAppearance.Compat.Notification.Time">
  45. <item name="android:textSize">12sp</item>
  46. <item name="android:textColor">?android:attr/textColorSecondary</item>
  47. </style><style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/><style name="Widget.Compat.NotificationActionContainer" parent=""/><style name="Widget.Compat.NotificationActionText" parent=""/><declare-styleable name="ColorStateListItem">
  48. <attr name="android:color"/>
  49. <attr format="float" name="alpha"/>
  50. <attr name="android:alpha"/>
  51. </declare-styleable><declare-styleable name="FontFamily">
  52. <attr format="string" name="fontProviderAuthority"/>
  53. <attr format="string" name="fontProviderPackage"/>
  54. <attr format="string" name="fontProviderQuery"/>
  55. <attr format="reference" name="fontProviderCerts"/>
  56. <attr name="fontProviderFetchStrategy">
  57. <enum name="blocking" value="0"/>
  58. <enum name="async" value="1"/>
  59. </attr>
  60. <attr format="integer" name="fontProviderFetchTimeout">
  61. <enum name="forever" value="-1"/>
  62. </attr>
  63. </declare-styleable><declare-styleable name="FontFamilyFont">
  64. <attr name="fontStyle">
  65. <enum name="normal" value="0"/>
  66. <enum name="italic" value="1"/>
  67. </attr>
  68. <attr format="reference" name="font"/>
  69. <attr format="integer" name="fontWeight"/>
  70. <attr format="string" name="fontVariationSettings"/>
  71. <attr format="integer" name="ttcIndex"/>
  72. <attr name="android:fontStyle"/>
  73. <attr name="android:font"/>
  74. <attr name="android:fontWeight"/>
  75. <attr name="android:fontVariationSettings"/>
  76. <attr name="android:ttcIndex"/>
  77. </declare-styleable><declare-styleable name="GradientColor">
  78. <attr name="android:startColor"/>
  79. <attr name="android:centerColor"/>
  80. <attr name="android:endColor"/>
  81. <attr name="android:type"/>
  82. <attr name="android:gradientRadius"/>
  83. <attr name="android:centerX"/>
  84. <attr name="android:centerY"/>
  85. <attr name="android:startX"/>
  86. <attr name="android:startY"/>
  87. <attr name="android:endX"/>
  88. <attr name="android:endY"/>
  89. <attr name="android:tileMode"/>
  90. </declare-styleable><declare-styleable name="GradientColorItem">
  91. <attr name="android:offset"/>
  92. <attr name="android:color"/>
  93. </declare-styleable></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-af\values-af.xml" qualifiers="af"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-am\values-am.xml" qualifiers="am"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ar\values-ar.xml" qualifiers="ar"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-as\values-as.xml" qualifiers="as"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-az\values-az.xml" qualifiers="az"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-b+sr+Latn\values-b+sr+Latn.xml" qualifiers="b+sr+Latn"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-be\values-be.xml" qualifiers="be"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-bg\values-bg.xml" qualifiers="bg"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-bn\values-bn.xml" qualifiers="bn"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-bs\values-bs.xml" qualifiers="bs"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ca\values-ca.xml" qualifiers="ca"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-cs\values-cs.xml" qualifiers="cs"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-da\values-da.xml" qualifiers="da"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-de\values-de.xml" qualifiers="de"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-el\values-el.xml" qualifiers="el"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-en-rAU\values-en-rAU.xml" qualifiers="en-rAU"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-en-rCA\values-en-rCA.xml" qualifiers="en-rCA"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-en-rGB\values-en-rGB.xml" qualifiers="en-rGB"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-en-rIN\values-en-rIN.xml" qualifiers="en-rIN"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-en-rXC\values-en-rXC.xml" qualifiers="en-rXC"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‎‎‎‏‏‏‏‎‎‏‎‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‎‎‏‎‎‎‎‏‎‏‎‏‎‎‎‎‏‎‎‎‎‎‎999+‎‏‎‎‏‎"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-es\values-es.xml" qualifiers="es"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-es-rUS\values-es-rUS.xml" qualifiers="es-rUS"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-et\values-et.xml" qualifiers="et"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-eu\values-eu.xml" qualifiers="eu"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-fa\values-fa.xml" qualifiers="fa"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-fi\values-fi.xml" qualifiers="fi"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-fr\values-fr.xml" qualifiers="fr"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-fr-rCA\values-fr-rCA.xml" qualifiers="fr-rCA"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-gl\values-gl.xml" qualifiers="gl"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">">999"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-gu\values-gu.xml" qualifiers="gu"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-hi\values-hi.xml" qualifiers="hi"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-hr\values-hr.xml" qualifiers="hr"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-hu\values-hu.xml" qualifiers="hu"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-hy\values-hy.xml" qualifiers="hy"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-in\values-in.xml" qualifiers="in"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-is\values-is.xml" qualifiers="is"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-it\values-it.xml" qualifiers="it"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-iw\values-iw.xml" qualifiers="iw"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ja\values-ja.xml" qualifiers="ja"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ka\values-ka.xml" qualifiers="ka"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-kk\values-kk.xml" qualifiers="kk"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-km\values-km.xml" qualifiers="km"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-kn\values-kn.xml" qualifiers="kn"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ko\values-ko.xml" qualifiers="ko"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ky\values-ky.xml" qualifiers="ky"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-lo\values-lo.xml" qualifiers="lo"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-lt\values-lt.xml" qualifiers="lt"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-lv\values-lv.xml" qualifiers="lv"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-mk\values-mk.xml" qualifiers="mk"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ml\values-ml.xml" qualifiers="ml"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-mn\values-mn.xml" qualifiers="mn"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-mr\values-mr.xml" qualifiers="mr"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"९९९+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ms\values-ms.xml" qualifiers="ms"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-my\values-my.xml" qualifiers="my"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"၉၉၉+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-nb\values-nb.xml" qualifiers="nb"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ne\values-ne.xml" qualifiers="ne"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"९९९+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-nl\values-nl.xml" qualifiers="nl"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-or\values-or.xml" qualifiers="or"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-pa\values-pa.xml" qualifiers="pa"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-pl\values-pl.xml" qualifiers="pl"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-pt\values-pt.xml" qualifiers="pt"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-pt-rBR\values-pt-rBR.xml" qualifiers="pt-rBR"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-pt-rPT\values-pt-rPT.xml" qualifiers="pt-rPT"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ro\values-ro.xml" qualifiers="ro"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ru\values-ru.xml" qualifiers="ru"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">">999"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-si\values-si.xml" qualifiers="si"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-sk\values-sk.xml" qualifiers="sk"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-sl\values-sl.xml" qualifiers="sl"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-sq\values-sq.xml" qualifiers="sq"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-sr\values-sr.xml" qualifiers="sr"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-sv\values-sv.xml" qualifiers="sv"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-sw\values-sw.xml" qualifiers="sw"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ta\values-ta.xml" qualifiers="ta"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-te\values-te.xml" qualifiers="te"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-th\values-th.xml" qualifiers="th"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-tl\values-tl.xml" qualifiers="tl"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-tr\values-tr.xml" qualifiers="tr"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-uk\values-uk.xml" qualifiers="uk"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-ur\values-ur.xml" qualifiers="ur"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"+999"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-uz\values-uz.xml" qualifiers="uz"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-v16\values-v16.xml" qualifiers="v16"><dimen name="notification_right_side_padding_top">4dp</dimen></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-v21\values-v21.xml" qualifiers="v21"><color name="notification_action_color_filter">@color/androidx_core_secondary_text_default_material_light</color><dimen name="notification_content_margin_start">0dp</dimen><dimen name="notification_main_column_padding_top">0dp</dimen><dimen name="notification_media_narrow_margin">12dp</dimen><style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.Material.Notification"/><style name="TextAppearance.Compat.Notification.Info" parent="@android:style/TextAppearance.Material.Notification.Info"/><style name="TextAppearance.Compat.Notification.Time" parent="@android:style/TextAppearance.Material.Notification.Time"/><style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/><style name="Widget.Compat.NotificationActionContainer" parent="">
  94. <item name="android:background">@drawable/notification_action_background</item>
  95. </style><style name="Widget.Compat.NotificationActionText" parent="">
  96. <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
  97. <item name="android:textColor">@color/androidx_core_secondary_text_default_material_light</item>
  98. <item name="android:textSize">@dimen/notification_action_text_size</item>
  99. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-vi\values-vi.xml" qualifiers="vi"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-zh-rCN\values-zh-rCN.xml" qualifiers="zh-rCN"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-zh-rHK\values-zh-rHK.xml" qualifiers="zh-rHK"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-zh-rTW\values-zh-rTW.xml" qualifiers="zh-rTW"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\6cf906aef8b9fe103062eba58d8655f9\core-1.3.2\res\values-zu\values-zu.xml" qualifiers="zu"><string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.coordinatorlayout:coordinatorlayout:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5795b53fd7da81afcd5019f1bd020468\coordinatorlayout-1.0.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.coordinatorlayout:coordinatorlayout:1.0.0" from-dependency="true" generated-set="androidx.coordinatorlayout:coordinatorlayout:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5795b53fd7da81afcd5019f1bd020468\coordinatorlayout-1.0.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\5795b53fd7da81afcd5019f1bd020468\coordinatorlayout-1.0.0\res\values\values.xml" qualifiers=""><attr format="reference" name="coordinatorLayoutStyle"/><declare-styleable name="CoordinatorLayout">
  100. <attr format="reference" name="keylines"/>
  101. <attr format="color|reference" name="statusBarBackground"/>
  102. </declare-styleable><declare-styleable name="CoordinatorLayout_Layout">
  103. <attr name="android:layout_gravity"/>
  104. <attr format="string" name="layout_behavior"/>
  105. <attr format="reference" name="layout_anchor"/>
  106. <attr format="integer" name="layout_keyline"/>
  107. <attr name="layout_anchorGravity">
  108. <flag name="top" value="0x30"/>
  109. <flag name="bottom" value="0x50"/>
  110. <flag name="left" value="0x03"/>
  111. <flag name="right" value="0x05"/>
  112. <flag name="center_vertical" value="0x10"/>
  113. <flag name="fill_vertical" value="0x70"/>
  114. <flag name="center_horizontal" value="0x01"/>
  115. <flag name="fill_horizontal" value="0x07"/>
  116. <flag name="center" value="0x11"/>
  117. <flag name="fill" value="0x77"/>
  118. <flag name="clip_vertical" value="0x80"/>
  119. <flag name="clip_horizontal" value="0x08"/>
  120. <flag name="start" value="0x00800003"/>
  121. <flag name="end" value="0x00800005"/>
  122. </attr>
  123. <attr format="enum" name="layout_insetEdge">
  124. <enum name="none" value="0x0"/>
  125. <enum name="top" value="0x30"/>
  126. <enum name="bottom" value="0x50"/>
  127. <enum name="left" value="0x03"/>
  128. <enum name="right" value="0x05"/>
  129. <enum name="start" value="0x00800003"/>
  130. <enum name="end" value="0x00800005"/>
  131. </attr>
  132. <attr name="layout_dodgeInsetEdges">
  133. <flag name="none" value="0x0"/>
  134. <flag name="top" value="0x30"/>
  135. <flag name="bottom" value="0x50"/>
  136. <flag name="left" value="0x03"/>
  137. <flag name="right" value="0x05"/>
  138. <flag name="start" value="0x00800003"/>
  139. <flag name="end" value="0x00800005"/>
  140. <flag name="all" value="0x77"/>
  141. </attr>
  142. </declare-styleable><style name="Widget.Support.CoordinatorLayout" parent="android:Widget">
  143. <item name="statusBarBackground">#000000</item>
  144. </style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.appcompat:appcompat-resources:1.1.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c1f9af4233d477062098101dd2ad21f5\appcompat-resources-1.1.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.appcompat:appcompat-resources:1.1.0" from-dependency="true" generated-set="androidx.appcompat:appcompat-resources:1.1.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c1f9af4233d477062098101dd2ad21f5\appcompat-resources-1.1.0\res"><file name="abc_vector_test" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c1f9af4233d477062098101dd2ad21f5\appcompat-resources-1.1.0\res\drawable\abc_vector_test.xml" qualifiers="" type="drawable"/><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\c1f9af4233d477062098101dd2ad21f5\appcompat-resources-1.1.0\res\values\values.xml" qualifiers=""><declare-styleable name="AnimatedStateListDrawableCompat">
  145. <attr name="android:visible"/>
  146. <attr name="android:variablePadding"/>
  147. <attr name="android:constantSize"/>
  148. <attr name="android:dither"/>
  149. <attr name="android:enterFadeDuration"/>
  150. <attr name="android:exitFadeDuration"/>
  151. </declare-styleable><declare-styleable name="AnimatedStateListDrawableItem">
  152. <attr name="android:drawable"/>
  153. <attr name="android:id"/>
  154. </declare-styleable><declare-styleable name="AnimatedStateListDrawableTransition">
  155. <attr name="android:fromId"/>
  156. <attr name="android:toId"/>
  157. <attr name="android:drawable"/>
  158. <attr name="android:reversible"/>
  159. </declare-styleable><declare-styleable name="StateListDrawable">
  160. <attr name="android:visible"/>
  161. <attr name="android:variablePadding"/>
  162. <attr name="android:constantSize"/>
  163. <attr name="android:dither"/>
  164. <attr name="android:enterFadeDuration"/>
  165. <attr name="android:exitFadeDuration"/>
  166. </declare-styleable><declare-styleable name="StateListDrawableItem">
  167. <attr name="android:drawable"/>
  168. </declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.transition:transition:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\971baffc4a75353005e06f53e84ef35d\transition-1.0.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.transition:transition:1.0.0" from-dependency="true" generated-set="androidx.transition:transition:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\971baffc4a75353005e06f53e84ef35d\transition-1.0.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\971baffc4a75353005e06f53e84ef35d\transition-1.0.0\res\values\values.xml" qualifiers=""><item name="ghost_view" type="id"/><item name="parent_matrix" type="id"/><item name="save_image_matrix" type="id"/><item name="save_non_transition_alpha" type="id"/><item name="save_scale_type" type="id"/><item name="transition_current_scene" type="id"/><item name="transition_layout_save" type="id"/><item name="transition_position" type="id"/><item name="transition_scene_layoutid_cache" type="id"/><item name="transition_transform" type="id"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.recyclerview:recyclerview:1.2.1$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\9285bbefb9f5822a734fca7bf1c48994\recyclerview-1.2.1\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.recyclerview:recyclerview:1.2.1" from-dependency="true" generated-set="androidx.recyclerview:recyclerview:1.2.1$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\9285bbefb9f5822a734fca7bf1c48994\recyclerview-1.2.1\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\9285bbefb9f5822a734fca7bf1c48994\recyclerview-1.2.1\res\values\values.xml" qualifiers=""><attr format="reference" name="recyclerViewStyle"/><dimen name="fastscroll_default_thickness">8dp</dimen><dimen name="fastscroll_margin">0dp</dimen><dimen name="fastscroll_minimum_range">50dp</dimen><dimen name="item_touch_helper_max_drag_scroll_per_frame">20dp</dimen><dimen name="item_touch_helper_swipe_escape_max_velocity">800dp</dimen><dimen name="item_touch_helper_swipe_escape_velocity">120dp</dimen><item name="item_touch_helper_previous_elevation" type="id"/><declare-styleable name="RecyclerView">
  169. <attr format="string" name="layoutManager"/>
  170. <eat-comment/>
  171. <attr name="android:orientation"/>
  172. <attr name="android:descendantFocusability"/>
  173. <attr name="android:clipToPadding"/>
  174. <attr format="integer" name="spanCount"/>
  175. <attr format="boolean" name="reverseLayout"/>
  176. <attr format="boolean" name="stackFromEnd"/>
  177. <attr format="boolean" name="fastScrollEnabled"/>
  178. <attr format="reference" name="fastScrollVerticalThumbDrawable"/>
  179. <attr format="reference" name="fastScrollVerticalTrackDrawable"/>
  180. <attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
  181. <attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
  182. </declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.fragment:fragment:1.3.6$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.fragment:fragment:1.3.6" from-dependency="true" generated-set="androidx.fragment:fragment:1.3.6$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res"><file name="fragment_fast_out_extra_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\anim\fragment_fast_out_extra_slow_in.xml" qualifiers="" type="anim"/><file name="fragment_fast_out_extra_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\anim-v21\fragment_fast_out_extra_slow_in.xml" qualifiers="v21" type="anim"/><file name="fragment_close_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\animator\fragment_close_enter.xml" qualifiers="" type="animator"/><file name="fragment_close_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\animator\fragment_close_exit.xml" qualifiers="" type="animator"/><file name="fragment_fade_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\animator\fragment_fade_enter.xml" qualifiers="" type="animator"/><file name="fragment_fade_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\animator\fragment_fade_exit.xml" qualifiers="" type="animator"/><file name="fragment_open_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\animator\fragment_open_enter.xml" qualifiers="" type="animator"/><file name="fragment_open_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\animator\fragment_open_exit.xml" qualifiers="" type="animator"/><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\67e4c234758b776c431dda14dc9c2690\fragment-1.3.6\res\values\values.xml" qualifiers=""><item name="fragment_container_view_tag" type="id"/><item name="special_effects_controller_view_tag" type="id"/><item name="visible_removing_fragment_view_tag" type="id"/><declare-styleable name="Fragment">
  183. <attr name="android:name"/>
  184. <attr name="android:id"/>
  185. <attr name="android:tag"/>
  186. </declare-styleable><declare-styleable name="FragmentContainerView">
  187. <attr name="android:name"/>
  188. <attr name="android:tag"/>
  189. </declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.github.bumptech.glide:glide:4.10.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\e794c4cb1ad792875552281b1014391a\glide-4.10.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.github.bumptech.glide:glide:4.10.0" from-dependency="true" generated-set="com.github.bumptech.glide:glide:4.10.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\e794c4cb1ad792875552281b1014391a\glide-4.10.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\e794c4cb1ad792875552281b1014391a\glide-4.10.0\res\values\values.xml" qualifiers=""><item name="glide_custom_view_target_tag" type="id"/></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.viewpager2:viewpager2:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\e486a241efa23ba0087a0fa13d904627\viewpager2-1.0.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.viewpager2:viewpager2:1.0.0" from-dependency="true" generated-set="androidx.viewpager2:viewpager2:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\e486a241efa23ba0087a0fa13d904627\viewpager2-1.0.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\e486a241efa23ba0087a0fa13d904627\viewpager2-1.0.0\res\values\values.xml" qualifiers=""><declare-styleable name="ViewPager2">
  190. <attr name="android:orientation"/>
  191. </declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.appcompat:appcompat:1.1.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.appcompat:appcompat:1.1.0" from-dependency="true" generated-set="androidx.appcompat:appcompat:1.1.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res"><file name="abc_fade_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_fade_in.xml" qualifiers="" type="anim"/><file name="abc_fade_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_fade_out.xml" qualifiers="" type="anim"/><file name="abc_grow_fade_in_from_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_grow_fade_in_from_bottom.xml" qualifiers="" type="anim"/><file name="abc_popup_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_popup_enter.xml" qualifiers="" type="anim"/><file name="abc_popup_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_popup_exit.xml" qualifiers="" type="anim"/><file name="abc_shrink_fade_out_from_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_shrink_fade_out_from_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_in_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_slide_in_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_in_top" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_slide_in_top.xml" qualifiers="" type="anim"/><file name="abc_slide_out_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_slide_out_bottom.xml" qualifiers="" type="anim"/><file name="abc_slide_out_top" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_slide_out_top.xml" qualifiers="" type="anim"/><file name="abc_tooltip_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_tooltip_enter.xml" qualifiers="" type="anim"/><file name="abc_tooltip_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\abc_tooltip_exit.xml" qualifiers="" type="anim"/><file name="btn_checkbox_to_checked_box_inner_merged_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_checkbox_to_checked_box_inner_merged_animation.xml" qualifiers="" type="anim"/><file name="btn_checkbox_to_checked_box_outer_merged_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_checkbox_to_checked_box_outer_merged_animation.xml" qualifiers="" type="anim"/><file name="btn_checkbox_to_checked_icon_null_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_checkbox_to_checked_icon_null_animation.xml" qualifiers="" type="anim"/><file name="btn_checkbox_to_unchecked_box_inner_merged_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_checkbox_to_unchecked_box_inner_merged_animation.xml" qualifiers="" type="anim"/><file name="btn_checkbox_to_unchecked_check_path_merged_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_checkbox_to_unchecked_check_path_merged_animation.xml" qualifiers="" type="anim"/><file name="btn_checkbox_to_unchecked_icon_null_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_checkbox_to_unchecked_icon_null_animation.xml" qualifiers="" type="anim"/><file name="btn_radio_to_off_mtrl_dot_group_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_radio_to_off_mtrl_dot_group_animation.xml" qualifiers="" type="anim"/><file name="btn_radio_to_off_mtrl_ring_outer_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_radio_to_off_mtrl_ring_outer_animation.xml" qualifiers="" type="anim"/><file name="btn_radio_to_off_mtrl_ring_outer_path_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_radio_to_off_mtrl_ring_outer_path_animation.xml" qualifiers="" type="anim"/><file name="btn_radio_to_on_mtrl_dot_group_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_radio_to_on_mtrl_dot_group_animation.xml" qualifiers="" type="anim"/><file name="btn_radio_to_on_mtrl_ring_outer_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_radio_to_on_mtrl_ring_outer_animation.xml" qualifiers="" type="anim"/><file name="btn_radio_to_on_mtrl_ring_outer_path_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\anim\btn_radio_to_on_mtrl_ring_outer_path_animation.xml" qualifiers="" type="anim"/><file name="abc_background_cache_hint_selector_material_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_background_cache_hint_selector_material_dark.xml" qualifiers="" type="color"/><file name="abc_background_cache_hint_selector_material_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_background_cache_hint_selector_material_light.xml" qualifiers="" type="color"/><file name="abc_btn_colored_borderless_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_btn_colored_borderless_text_material.xml" qualifiers="" type="color"/><file name="abc_btn_colored_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_btn_colored_text_material.xml" qualifiers="" type="color"/><file name="abc_hint_foreground_material_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_hint_foreground_material_dark.xml" qualifiers="" type="color"/><file name="abc_hint_foreground_material_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_hint_foreground_material_light.xml" qualifiers="" type="color"/><file name="abc_primary_text_disable_only_material_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_primary_text_disable_only_material_dark.xml" qualifiers="" type="color"/><file name="abc_primary_text_disable_only_material_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_primary_text_disable_only_material_light.xml" qualifiers="" type="color"/><file name="abc_primary_text_material_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_primary_text_material_dark.xml" qualifiers="" type="color"/><file name="abc_primary_text_material_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_primary_text_material_light.xml" qualifiers="" type="color"/><file name="abc_search_url_text" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_search_url_text.xml" qualifiers="" type="color"/><file name="abc_secondary_text_material_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_secondary_text_material_dark.xml" qualifiers="" type="color"/><file name="abc_secondary_text_material_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_secondary_text_material_light.xml" qualifiers="" type="color"/><file name="abc_tint_btn_checkable" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_tint_btn_checkable.xml" qualifiers="" type="color"/><file name="abc_tint_default" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_tint_default.xml" qualifiers="" type="color"/><file name="abc_tint_edittext" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_tint_edittext.xml" qualifiers="" type="color"/><file name="abc_tint_seek_thumb" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_tint_seek_thumb.xml" qualifiers="" type="color"/><file name="abc_tint_spinner" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_tint_spinner.xml" qualifiers="" type="color"/><file name="abc_tint_switch_track" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\abc_tint_switch_track.xml" qualifiers="" type="color"/><file name="switch_thumb_material_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\switch_thumb_material_dark.xml" qualifiers="" type="color"/><file name="switch_thumb_material_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color\switch_thumb_material_light.xml" qualifiers="" type="color"/><file name="abc_btn_colored_borderless_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v21\abc_btn_colored_borderless_text_material.xml" qualifiers="v21" type="color"/><file name="abc_btn_colored_borderless_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_btn_colored_borderless_text_material.xml" qualifiers="v23" type="color"/><file name="abc_btn_colored_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_btn_colored_text_material.xml" qualifiers="v23" type="color"/><file name="abc_color_highlight_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_color_highlight_material.xml" qualifiers="v23" type="color"/><file name="abc_tint_btn_checkable" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_tint_btn_checkable.xml" qualifiers="v23" type="color"/><file name="abc_tint_default" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_tint_default.xml" qualifiers="v23" type="color"/><file name="abc_tint_edittext" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_tint_edittext.xml" qualifiers="v23" type="color"/><file name="abc_tint_seek_thumb" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_tint_seek_thumb.xml" qualifiers="v23" type="color"/><file name="abc_tint_spinner" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_tint_spinner.xml" qualifiers="v23" type="color"/><file name="abc_tint_switch_track" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\color-v23\abc_tint_switch_track.xml" qualifiers="v23" type="color"/><file name="abc_btn_borderless_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_borderless_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_check_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_check_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_check_material_anim" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_check_material_anim.xml" qualifiers="" type="drawable"/><file name="abc_btn_colored_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_colored_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_default_mtrl_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_default_mtrl_shape.xml" qualifiers="" type="drawable"/><file name="abc_btn_radio_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_radio_material.xml" qualifiers="" type="drawable"/><file name="abc_btn_radio_material_anim" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_btn_radio_material_anim.xml" qualifiers="" type="drawable"/><file name="abc_cab_background_internal_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_cab_background_internal_bg.xml" qualifiers="" type="drawable"/><file name="abc_cab_background_top_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_cab_background_top_material.xml" qualifiers="" type="drawable"/><file name="abc_dialog_material_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_dialog_material_background.xml" qualifiers="" type="drawable"/><file name="abc_edit_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_edit_text_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_ab_back_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_ab_back_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_arrow_drop_right_black_24dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_arrow_drop_right_black_24dp.xml" qualifiers="" type="drawable"/><file name="abc_ic_clear_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_clear_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_go_search_api_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_go_search_api_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_menu_overflow_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_menu_overflow_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_search_api_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_search_api_material.xml" qualifiers="" type="drawable"/><file name="abc_ic_voice_search_api_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ic_voice_search_api_material.xml" qualifiers="" type="drawable"/><file name="abc_item_background_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_item_background_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_item_background_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_item_background_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_list_divider_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_list_divider_material.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_background_transition_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_list_selector_background_transition_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_background_transition_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_list_selector_background_transition_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_list_selector_holo_dark.xml" qualifiers="" type="drawable"/><file name="abc_list_selector_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_list_selector_holo_light.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_indicator_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ratingbar_indicator_material.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ratingbar_material.xml" qualifiers="" type="drawable"/><file name="abc_ratingbar_small_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_ratingbar_small_material.xml" qualifiers="" type="drawable"/><file name="abc_seekbar_thumb_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_seekbar_thumb_material.xml" qualifiers="" type="drawable"/><file name="abc_seekbar_tick_mark_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_seekbar_tick_mark_material.xml" qualifiers="" type="drawable"/><file name="abc_seekbar_track_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_seekbar_track_material.xml" qualifiers="" type="drawable"/><file name="abc_spinner_textfield_background_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_spinner_textfield_background_material.xml" qualifiers="" type="drawable"/><file name="abc_switch_thumb_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_switch_thumb_material.xml" qualifiers="" type="drawable"/><file name="abc_tab_indicator_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_tab_indicator_material.xml" qualifiers="" type="drawable"/><file name="abc_textfield_search_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_textfield_search_material.xml" qualifiers="" type="drawable"/><file name="abc_text_cursor_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\abc_text_cursor_material.xml" qualifiers="" type="drawable"/><file name="btn_checkbox_checked_mtrl" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_checkbox_checked_mtrl.xml" qualifiers="" type="drawable"/><file name="btn_checkbox_checked_to_unchecked_mtrl_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_checkbox_checked_to_unchecked_mtrl_animation.xml" qualifiers="" type="drawable"/><file name="btn_checkbox_unchecked_mtrl" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_checkbox_unchecked_mtrl.xml" qualifiers="" type="drawable"/><file name="btn_checkbox_unchecked_to_checked_mtrl_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_checkbox_unchecked_to_checked_mtrl_animation.xml" qualifiers="" type="drawable"/><file name="btn_radio_off_mtrl" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_radio_off_mtrl.xml" qualifiers="" type="drawable"/><file name="btn_radio_off_to_on_mtrl_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_radio_off_to_on_mtrl_animation.xml" qualifiers="" type="drawable"/><file name="btn_radio_on_mtrl" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_radio_on_mtrl.xml" qualifiers="" type="drawable"/><file name="btn_radio_on_to_off_mtrl_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\btn_radio_on_to_off_mtrl_animation.xml" qualifiers="" type="drawable"/><file name="tooltip_frame_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\tooltip_frame_dark.xml" qualifiers="" type="drawable"/><file name="tooltip_frame_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable\tooltip_frame_light.xml" qualifiers="" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_btn_check_to_on_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_btn_check_to_on_mtrl_015.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_btn_radio_to_on_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_btn_radio_to_on_mtrl_015.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_cab_background_top_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_menu_share_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_star_black_16dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_star_black_36dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_star_black_48dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_star_half_black_16dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_star_half_black_36dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_ic_star_half_black_48dp.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_divider_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_focused_holo.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_longpressed_holo.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_pressed_holo_dark.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_pressed_holo_light.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_selector_disabled_holo_dark.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_list_selector_disabled_holo_light.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_popup_background_mtrl_mult.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_scrubber_control_off_mtrl_alpha.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_scrubber_track_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_spinner_mtrl_am_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_switch_track_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_tab_indicator_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_textfield_activated_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_textfield_default_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_text_select_handle_left_mtrl_dark.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_text_select_handle_left_mtrl_light.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_text_select_handle_middle_mtrl_dark.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_text_select_handle_middle_mtrl_light.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_text_select_handle_right_mtrl_dark.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-hdpi-v4\abc_text_select_handle_right_mtrl_light.png" qualifiers="hdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-hdpi-v17\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-hdpi-v17\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-hdpi-v17\abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-hdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-mdpi-v17\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-mdpi-v17\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-mdpi-v17\abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-mdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xhdpi-v17\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xhdpi-v17\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xhdpi-v17\abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xhdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xxhdpi-v17\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xxhdpi-v17\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xxhdpi-v17\abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xxhdpi-v17" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xxxhdpi-v17\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xxxhdpi-v17\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-ldrtl-xxxhdpi-v17\abc_spinner_mtrl_am_alpha.9.png" qualifiers="ldrtl-xxxhdpi-v17" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_btn_check_to_on_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_btn_check_to_on_mtrl_015.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_btn_radio_to_on_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_btn_radio_to_on_mtrl_015.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_cab_background_top_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_menu_share_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_star_black_16dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_star_black_36dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_star_black_48dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_star_half_black_16dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_star_half_black_36dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_ic_star_half_black_48dp.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_divider_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_focused_holo.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_longpressed_holo.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_pressed_holo_dark.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_pressed_holo_light.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_selector_disabled_holo_dark.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_list_selector_disabled_holo_light.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_popup_background_mtrl_mult.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_scrubber_control_off_mtrl_alpha.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_scrubber_track_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_spinner_mtrl_am_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_switch_track_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_tab_indicator_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_textfield_activated_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_textfield_default_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_text_select_handle_left_mtrl_dark.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_text_select_handle_left_mtrl_light.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_text_select_handle_middle_mtrl_dark.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_text_select_handle_middle_mtrl_light.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_text_select_handle_right_mtrl_dark.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-mdpi-v4\abc_text_select_handle_right_mtrl_light.png" qualifiers="mdpi-v4" type="drawable"/><file name="abc_action_bar_item_background_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-v21\abc_action_bar_item_background_material.xml" qualifiers="v21" type="drawable"/><file name="abc_btn_colored_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-v21\abc_btn_colored_material.xml" qualifiers="v21" type="drawable"/><file name="abc_dialog_material_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-v21\abc_dialog_material_background.xml" qualifiers="v21" type="drawable"/><file name="abc_edit_text_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-v21\abc_edit_text_material.xml" qualifiers="v21" type="drawable"/><file name="abc_list_divider_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-v21\abc_list_divider_material.xml" qualifiers="v21" type="drawable"/><file name="abc_control_background_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-v23\abc_control_background_material.xml" qualifiers="v23" type="drawable"/><file name="abc_dialog_material_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-watch-v20\abc_dialog_material_background.xml" qualifiers="watch-v20" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_btn_check_to_on_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_btn_check_to_on_mtrl_015.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_btn_radio_to_on_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_btn_radio_to_on_mtrl_015.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_cab_background_top_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_menu_share_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_star_black_16dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_star_black_36dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_star_black_48dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_star_half_black_16dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_star_half_black_36dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_ic_star_half_black_48dp.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_divider_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_focused_holo.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_longpressed_holo.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_pressed_holo_dark.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_pressed_holo_light.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_selector_disabled_holo_dark.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_list_selector_disabled_holo_light.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_popup_background_mtrl_mult.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_scrubber_control_off_mtrl_alpha.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_scrubber_track_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_spinner_mtrl_am_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_switch_track_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_textfield_activated_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_textfield_default_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_text_select_handle_left_mtrl_dark.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_text_select_handle_left_mtrl_light.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_text_select_handle_middle_mtrl_dark.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_text_select_handle_middle_mtrl_light.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_text_select_handle_right_mtrl_dark.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xhdpi-v4\abc_text_select_handle_right_mtrl_light.png" qualifiers="xhdpi-v4" type="drawable"/><file name="abc_ab_share_pack_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ab_share_pack_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_btn_check_to_on_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_btn_check_to_on_mtrl_015.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_btn_radio_to_on_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_btn_radio_to_on_mtrl_015.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_cab_background_top_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_cab_background_top_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_commit_search_api_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_commit_search_api_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_menu_share_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_star_black_16dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_star_black_36dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_star_black_48dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_star_half_black_16dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_star_half_black_36dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_ic_star_half_black_48dp.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_divider_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_divider_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_focused_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_focused_holo.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_longpressed_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_longpressed_holo.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_pressed_holo_dark.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_pressed_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_pressed_holo_light.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_selector_disabled_holo_dark.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_list_selector_disabled_holo_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_list_selector_disabled_holo_light.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_menu_hardkey_panel_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_menu_hardkey_panel_mtrl_mult.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_popup_background_mtrl_mult" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_popup_background_mtrl_mult.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_off_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_scrubber_control_off_mtrl_alpha.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_primary_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_scrubber_primary_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_scrubber_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_scrubber_track_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_spinner_mtrl_am_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_switch_track_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_textfield_activated_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_textfield_default_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_search_activated_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_textfield_search_activated_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_textfield_search_default_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_textfield_search_default_mtrl_alpha.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_text_select_handle_left_mtrl_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_text_select_handle_left_mtrl_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_text_select_handle_middle_mtrl_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_middle_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_text_select_handle_middle_mtrl_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_text_select_handle_right_mtrl_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxhdpi-v4\abc_text_select_handle_right_mtrl_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_btn_check_to_on_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_check_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_btn_check_to_on_mtrl_015.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_btn_radio_to_on_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_radio_to_on_mtrl_015" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_btn_radio_to_on_mtrl_015.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00001" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_btn_switch_to_on_mtrl_00001.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_btn_switch_to_on_mtrl_00012" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_btn_switch_to_on_mtrl_00012.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_copy_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_menu_copy_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_cut_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_menu_cut_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_paste_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_menu_paste_mtrl_am_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_selectall_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_menu_selectall_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_menu_share_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_menu_share_mtrl_alpha.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_star_black_16dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_star_black_36dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_star_black_48dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_16dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_star_half_black_16dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_36dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_star_half_black_36dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_ic_star_half_black_48dp" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_ic_star_half_black_48dp.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_000" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_scrubber_control_to_pressed_mtrl_000.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_scrubber_control_to_pressed_mtrl_005" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_scrubber_control_to_pressed_mtrl_005.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_spinner_mtrl_am_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_spinner_mtrl_am_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_switch_track_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_switch_track_mtrl_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_tab_indicator_mtrl_alpha" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_tab_indicator_mtrl_alpha.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_text_select_handle_left_mtrl_dark.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_left_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_text_select_handle_left_mtrl_light.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_text_select_handle_right_mtrl_dark.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="abc_text_select_handle_right_mtrl_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\drawable-xxxhdpi-v4\abc_text_select_handle_right_mtrl_light.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="btn_checkbox_checked_mtrl_animation_interpolator_0" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\btn_checkbox_checked_mtrl_animation_interpolator_0.xml" qualifiers="" type="interpolator"/><file name="btn_checkbox_checked_mtrl_animation_interpolator_1" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\btn_checkbox_checked_mtrl_animation_interpolator_1.xml" qualifiers="" type="interpolator"/><file name="btn_checkbox_unchecked_mtrl_animation_interpolator_0" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml" qualifiers="" type="interpolator"/><file name="btn_checkbox_unchecked_mtrl_animation_interpolator_1" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml" qualifiers="" type="interpolator"/><file name="btn_radio_to_off_mtrl_animation_interpolator_0" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\btn_radio_to_off_mtrl_animation_interpolator_0.xml" qualifiers="" type="interpolator"/><file name="btn_radio_to_on_mtrl_animation_interpolator_0" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\btn_radio_to_on_mtrl_animation_interpolator_0.xml" qualifiers="" type="interpolator"/><file name="fast_out_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\interpolator\fast_out_slow_in.xml" qualifiers="" type="interpolator"/><file name="abc_action_bar_title_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_action_bar_title_item.xml" qualifiers="" type="layout"/><file name="abc_action_bar_up_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_action_bar_up_container.xml" qualifiers="" type="layout"/><file name="abc_action_menu_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_action_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_action_menu_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_action_menu_layout.xml" qualifiers="" type="layout"/><file name="abc_action_mode_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_action_mode_bar.xml" qualifiers="" type="layout"/><file name="abc_action_mode_close_item_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_action_mode_close_item_material.xml" qualifiers="" type="layout"/><file name="abc_activity_chooser_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_activity_chooser_view.xml" qualifiers="" type="layout"/><file name="abc_activity_chooser_view_list_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_activity_chooser_view_list_item.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_button_bar_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_alert_dialog_button_bar_material.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_alert_dialog_material.xml" qualifiers="" type="layout"/><file name="abc_alert_dialog_title_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_alert_dialog_title_material.xml" qualifiers="" type="layout"/><file name="abc_cascading_menu_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_cascading_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_dialog_title_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_dialog_title_material.xml" qualifiers="" type="layout"/><file name="abc_expanded_menu_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_expanded_menu_layout.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_checkbox" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_list_menu_item_checkbox.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_list_menu_item_icon.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_list_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_list_menu_item_radio" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_list_menu_item_radio.xml" qualifiers="" type="layout"/><file name="abc_popup_menu_header_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_popup_menu_header_item_layout.xml" qualifiers="" type="layout"/><file name="abc_popup_menu_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_popup_menu_item_layout.xml" qualifiers="" type="layout"/><file name="abc_screen_content_include" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_screen_content_include.xml" qualifiers="" type="layout"/><file name="abc_screen_simple" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_screen_simple.xml" qualifiers="" type="layout"/><file name="abc_screen_simple_overlay_action_mode" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_screen_simple_overlay_action_mode.xml" qualifiers="" type="layout"/><file name="abc_screen_toolbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_screen_toolbar.xml" qualifiers="" type="layout"/><file name="abc_search_dropdown_item_icons_2line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_search_dropdown_item_icons_2line.xml" qualifiers="" type="layout"/><file name="abc_search_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_search_view.xml" qualifiers="" type="layout"/><file name="abc_select_dialog_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_select_dialog_material.xml" qualifiers="" type="layout"/><file name="abc_tooltip" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\abc_tooltip.xml" qualifiers="" type="layout"/><file name="select_dialog_item_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\select_dialog_item_material.xml" qualifiers="" type="layout"/><file name="select_dialog_multichoice_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\select_dialog_multichoice_material.xml" qualifiers="" type="layout"/><file name="select_dialog_singlechoice_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\select_dialog_singlechoice_material.xml" qualifiers="" type="layout"/><file name="support_simple_spinner_dropdown_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout\support_simple_spinner_dropdown_item.xml" qualifiers="" type="layout"/><file name="abc_screen_toolbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout-v26\abc_screen_toolbar.xml" qualifiers="v26" type="layout"/><file name="abc_alert_dialog_button_bar_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout-watch-v20\abc_alert_dialog_button_bar_material.xml" qualifiers="watch-v20" type="layout"/><file name="abc_alert_dialog_title_material" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\layout-watch-v20\abc_alert_dialog_title_material.xml" qualifiers="watch-v20" type="layout"/><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values\values.xml" qualifiers=""><attr format="reference" name="drawerArrowStyle"/><attr format="dimension" name="height"/><attr format="boolean" name="isLightTheme"/><attr format="string" name="title"/><bool name="abc_action_bar_embed_tabs">true</bool><bool name="abc_allow_stacked_button_bar">false</bool><bool name="abc_config_actionMenuItemAllCaps">true</bool><color name="abc_input_method_navigation_guard">@android:color/black</color><color name="abc_search_url_text_normal">#7fa87f</color><color name="abc_search_url_text_pressed">@android:color/black</color><color name="abc_search_url_text_selected">@android:color/black</color><color name="accent_material_dark">@color/material_deep_teal_200</color><color name="accent_material_light">@color/material_deep_teal_500</color><color name="background_floating_material_dark">@color/material_grey_800</color><color name="background_floating_material_light">@android:color/white</color><color name="background_material_dark">@color/material_grey_850</color><color name="background_material_light">@color/material_grey_50</color><color name="bright_foreground_disabled_material_dark">#80ffffff</color><color name="bright_foreground_disabled_material_light">#80000000</color><color name="bright_foreground_inverse_material_dark">@color/bright_foreground_material_light</color><color name="bright_foreground_inverse_material_light">@color/bright_foreground_material_dark</color><color name="bright_foreground_material_dark">@android:color/white</color><color name="bright_foreground_material_light">@android:color/black</color><color name="button_material_dark">#ff5a595b</color><color name="button_material_light">#ffd6d7d7</color><color name="dim_foreground_disabled_material_dark">#80bebebe</color><color name="dim_foreground_disabled_material_light">#80323232</color><color name="dim_foreground_material_dark">#ffbebebe</color><color name="dim_foreground_material_light">#ff323232</color><color name="error_color_material_dark">#ff7043</color><color name="error_color_material_light">#ff5722</color><color name="foreground_material_dark">@android:color/white</color><color name="foreground_material_light">@android:color/black</color><color name="highlighted_text_material_dark">#6680cbc4</color><color name="highlighted_text_material_light">#66009688</color><color name="material_blue_grey_800">#ff37474f</color><color name="material_blue_grey_900">#ff263238</color><color name="material_blue_grey_950">#ff21272b</color><color name="material_deep_teal_200">#ff80cbc4</color><color name="material_deep_teal_500">#ff008577</color><color name="material_grey_100">#fff5f5f5</color><color name="material_grey_300">#ffe0e0e0</color><color name="material_grey_50">#fffafafa</color><color name="material_grey_600">#ff757575</color><color name="material_grey_800">#ff424242</color><color name="material_grey_850">#ff303030</color><color name="material_grey_900">#ff212121</color><color name="primary_dark_material_dark">@android:color/black</color><color name="primary_dark_material_light">@color/material_grey_600</color><color name="primary_material_dark">@color/material_grey_900</color><color name="primary_material_light">@color/material_grey_100</color><color name="primary_text_default_material_dark">#ffffffff</color><color name="primary_text_default_material_light">#de000000</color><color name="primary_text_disabled_material_dark">#4Dffffff</color><color name="primary_text_disabled_material_light">#39000000</color><color name="ripple_material_dark">#33ffffff</color><color name="ripple_material_light">#1f000000</color><color name="secondary_text_default_material_dark">#b3ffffff</color><color name="secondary_text_default_material_light">#8a000000</color><color name="secondary_text_disabled_material_dark">#36ffffff</color><color name="secondary_text_disabled_material_light">#24000000</color><color name="switch_thumb_disabled_material_dark">#ff616161</color><color name="switch_thumb_disabled_material_light">#ffbdbdbd</color><color name="switch_thumb_normal_material_dark">#ffbdbdbd</color><color name="switch_thumb_normal_material_light">#fff1f1f1</color><color name="tooltip_background_dark">#e6616161</color><color name="tooltip_background_light">#e6FFFFFF</color><dimen name="abc_action_bar_content_inset_material">16dp</dimen><dimen name="abc_action_bar_content_inset_with_nav">72dp</dimen><dimen name="abc_action_bar_default_height_material">56dp</dimen><dimen name="abc_action_bar_default_padding_end_material">0dp</dimen><dimen name="abc_action_bar_default_padding_start_material">0dp</dimen><dimen name="abc_action_bar_elevation_material">4dp</dimen><dimen name="abc_action_bar_icon_vertical_padding_material">16dp</dimen><dimen name="abc_action_bar_overflow_padding_end_material">10dp</dimen><dimen name="abc_action_bar_overflow_padding_start_material">6dp</dimen><dimen name="abc_action_bar_stacked_max_height">48dp</dimen><dimen name="abc_action_bar_stacked_tab_max_width">180dp</dimen><dimen name="abc_action_bar_subtitle_bottom_margin_material">5dp</dimen><dimen name="abc_action_bar_subtitle_top_margin_material">-3dp</dimen><dimen name="abc_action_button_min_height_material">48dp</dimen><dimen name="abc_action_button_min_width_material">48dp</dimen><dimen name="abc_action_button_min_width_overflow_material">36dp</dimen><dimen name="abc_alert_dialog_button_bar_height">48dp</dimen><dimen name="abc_alert_dialog_button_dimen">48dp</dimen><dimen name="abc_button_inset_horizontal_material">@dimen/abc_control_inset_material</dimen><dimen name="abc_button_inset_vertical_material">6dp</dimen><dimen name="abc_button_padding_horizontal_material">8dp</dimen><dimen name="abc_button_padding_vertical_material">@dimen/abc_control_padding_material</dimen><dimen name="abc_cascading_menus_min_smallest_width">720dp</dimen><dimen name="abc_config_prefDialogWidth">320dp</dimen><dimen name="abc_control_corner_material">2dp</dimen><dimen name="abc_control_inset_material">4dp</dimen><dimen name="abc_control_padding_material">4dp</dimen><dimen name="abc_dialog_corner_radius_material">2dp</dimen><item name="abc_dialog_fixed_height_major" type="dimen">80%</item><item name="abc_dialog_fixed_height_minor" type="dimen">100%</item><item name="abc_dialog_fixed_width_major" type="dimen">320dp</item><item name="abc_dialog_fixed_width_minor" type="dimen">320dp</item><dimen name="abc_dialog_list_padding_bottom_no_buttons">8dp</dimen><dimen name="abc_dialog_list_padding_top_no_title">8dp</dimen><item name="abc_dialog_min_width_major" type="dimen">65%</item><item name="abc_dialog_min_width_minor" type="dimen">95%</item><dimen name="abc_dialog_padding_material">24dp</dimen><dimen name="abc_dialog_padding_top_material">18dp</dimen><dimen name="abc_dialog_title_divider_material">8dp</dimen><item format="float" name="abc_disabled_alpha_material_dark" type="dimen">0.30</item><item format="float" name="abc_disabled_alpha_material_light" type="dimen">0.26</item><dimen name="abc_dropdownitem_icon_width">32dip</dimen><dimen name="abc_dropdownitem_text_padding_left">8dip</dimen><dimen name="abc_dropdownitem_text_padding_right">8dip</dimen><dimen name="abc_edit_text_inset_bottom_material">7dp</dimen><dimen name="abc_edit_text_inset_horizontal_material">4dp</dimen><dimen name="abc_edit_text_inset_top_material">10dp</dimen><dimen name="abc_floating_window_z">16dp</dimen><dimen name="abc_list_item_height_large_material">80dp</dimen><dimen name="abc_list_item_height_material">64dp</dimen><dimen name="abc_list_item_height_small_material">48dp</dimen><dimen name="abc_list_item_padding_horizontal_material">@dimen/abc_action_bar_content_inset_material</dimen><dimen name="abc_panel_menu_list_width">296dp</dimen><dimen name="abc_progress_bar_height_material">4dp</dimen><dimen name="abc_search_view_preferred_height">48dip</dimen><dimen name="abc_search_view_preferred_width">320dip</dimen><dimen name="abc_seekbar_track_background_height_material">2dp</dimen><dimen name="abc_seekbar_track_progress_height_material">2dp</dimen><dimen name="abc_select_dialog_padding_start_material">20dp</dimen><dimen name="abc_switch_padding">3dp</dimen><dimen name="abc_text_size_body_1_material">14sp</dimen><dimen name="abc_text_size_body_2_material">14sp</dimen><dimen name="abc_text_size_button_material">14sp</dimen><dimen name="abc_text_size_caption_material">12sp</dimen><dimen name="abc_text_size_display_1_material">34sp</dimen><dimen name="abc_text_size_display_2_material">45sp</dimen><dimen name="abc_text_size_display_3_material">56sp</dimen><dimen name="abc_text_size_display_4_material">112sp</dimen><dimen name="abc_text_size_headline_material">24sp</dimen><dimen name="abc_text_size_large_material">22sp</dimen><dimen name="abc_text_size_medium_material">18sp</dimen><dimen name="abc_text_size_menu_header_material">14sp</dimen><dimen name="abc_text_size_menu_material">16sp</dimen><dimen name="abc_text_size_small_material">14sp</dimen><dimen name="abc_text_size_subhead_material">16sp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen><dimen name="abc_text_size_title_material">20sp</dimen><dimen name="abc_text_size_title_material_toolbar">20dp</dimen><item format="float" name="disabled_alpha_material_dark" type="dimen">0.30</item><item format="float" name="disabled_alpha_material_light" type="dimen">0.26</item><item format="float" name="highlight_alpha_material_colored" type="dimen">0.26</item><item format="float" name="highlight_alpha_material_dark" type="dimen">0.20</item><item format="float" name="highlight_alpha_material_light" type="dimen">0.12</item><item format="float" name="hint_alpha_material_dark" type="dimen">0.50</item><item format="float" name="hint_alpha_material_light" type="dimen">0.38</item><item format="float" name="hint_pressed_alpha_material_dark" type="dimen">0.70</item><item format="float" name="hint_pressed_alpha_material_light" type="dimen">0.54</item><dimen name="tooltip_corner_radius">2dp</dimen><dimen name="tooltip_horizontal_padding">16dp</dimen><dimen name="tooltip_margin">8dp</dimen><dimen name="tooltip_precise_anchor_extra_offset">8dp</dimen><dimen name="tooltip_precise_anchor_threshold">96dp</dimen><dimen name="tooltip_vertical_padding">6.5dp</dimen><dimen name="tooltip_y_offset_non_touch">0dp</dimen><dimen name="tooltip_y_offset_touch">16dp</dimen><item name="action_bar_activity_content" type="id"/><item name="action_bar_spinner" type="id"/><item name="action_menu_divider" type="id"/><item name="action_menu_presenter" type="id"/><item name="home" type="id"/><item name="progress_circular" type="id"/><item name="progress_horizontal" type="id"/><item name="split_action_bar" type="id"/><item name="up" type="id"/><integer name="abc_config_activityDefaultDur">220</integer><integer name="abc_config_activityShortDur">150</integer><integer name="cancel_button_image_alpha">127</integer><integer name="config_tooltipAnimTime">150</integer><string name="abc_action_bar_home_description">Navigate home</string><string name="abc_action_bar_up_description">Navigate up</string><string name="abc_action_menu_overflow_description">More options</string><string name="abc_action_mode_done">Done</string><string name="abc_activity_chooser_view_see_all">See all</string><string name="abc_activitychooserview_choose_application">Choose an app</string><string name="abc_capital_off">OFF</string><string name="abc_capital_on">ON</string><string name="abc_menu_alt_shortcut_label">Alt+</string><string name="abc_menu_ctrl_shortcut_label">Ctrl+</string><string name="abc_menu_delete_shortcut_label">delete</string><string name="abc_menu_enter_shortcut_label">enter</string><string name="abc_menu_function_shortcut_label">Function+</string><string name="abc_menu_meta_shortcut_label">Meta+</string><string name="abc_menu_shift_shortcut_label">Shift+</string><string name="abc_menu_space_shortcut_label">space</string><string name="abc_menu_sym_shortcut_label">Sym+</string><string name="abc_prepend_shortcut_label">Menu+</string><string name="abc_search_hint">Search…</string><string name="abc_searchview_description_clear">Clear query</string><string name="abc_searchview_description_query">Search query</string><string name="abc_searchview_description_search">Search</string><string name="abc_searchview_description_submit">Submit query</string><string name="abc_searchview_description_voice">Voice search</string><string name="abc_shareactionprovider_share_with">Share with</string><string name="abc_shareactionprovider_share_with_application">Share with <ns1:g example="Mail" id="application_name">%s</ns1:g></string><string name="abc_toolbar_collapse_description">Collapse</string><string name="search_menu_title">Search</string><style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/><style name="AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat.Light"/><style name="Animation.AppCompat.Dialog" parent="Base.Animation.AppCompat.Dialog"/><style name="Animation.AppCompat.DropDownUp" parent="Base.Animation.AppCompat.DropDownUp"/><style name="Animation.AppCompat.Tooltip" parent="Base.Animation.AppCompat.Tooltip"/><style name="Base.AlertDialog.AppCompat" parent="android:Widget">
  192. <item name="android:layout">@layout/abc_alert_dialog_material</item>
  193. <item name="listLayout">@layout/abc_select_dialog_material</item>
  194. <item name="listItemLayout">@layout/select_dialog_item_material</item>
  195. <item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
  196. <item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
  197. <item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
  198. </style><style name="Base.AlertDialog.AppCompat.Light" parent="Base.AlertDialog.AppCompat"/><style name="Base.Animation.AppCompat.Dialog" parent="android:Animation">
  199. <item name="android:windowEnterAnimation">@anim/abc_popup_enter</item>
  200. <item name="android:windowExitAnimation">@anim/abc_popup_exit</item>
  201. </style><style name="Base.Animation.AppCompat.DropDownUp" parent="android:Animation">
  202. <item name="android:windowEnterAnimation">@anim/abc_grow_fade_in_from_bottom</item>
  203. <item name="android:windowExitAnimation">@anim/abc_shrink_fade_out_from_bottom</item>
  204. </style><style name="Base.Animation.AppCompat.Tooltip" parent="android:Animation">
  205. <item name="android:windowEnterAnimation">@anim/abc_tooltip_enter</item>
  206. <item name="android:windowExitAnimation">@anim/abc_tooltip_exit</item>
  207. </style><style name="Base.DialogWindowTitle.AppCompat" parent="android:Widget">
  208. <item name="android:maxLines">1</item>
  209. <item name="android:scrollHorizontally">true</item>
  210. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Title</item>
  211. </style><style name="Base.DialogWindowTitleBackground.AppCompat" parent="android:Widget">
  212. <item name="android:background">@null</item>
  213. <item name="android:paddingLeft">?attr/dialogPreferredPadding</item>
  214. <item name="android:paddingRight">?attr/dialogPreferredPadding</item>
  215. <item name="android:paddingTop">@dimen/abc_dialog_padding_top_material</item>
  216. </style><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance">
  217. <item name="android:textColor">?android:textColorPrimary</item>
  218. <item name="android:textColorHint">?android:textColorHint</item>
  219. <item name="android:textColorHighlight">?android:textColorHighlight</item>
  220. <item name="android:textColorLink">?android:textColorLink</item>
  221. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  222. </style><style name="Base.TextAppearance.AppCompat.Body1">
  223. <item name="android:textSize">@dimen/abc_text_size_body_1_material</item>
  224. <item name="android:textColor">?android:textColorPrimary</item>
  225. </style><style name="Base.TextAppearance.AppCompat.Body2">
  226. <item name="android:textSize">@dimen/abc_text_size_body_2_material</item>
  227. <item name="android:textColor">?android:textColorPrimary</item>
  228. </style><style name="Base.TextAppearance.AppCompat.Button">
  229. <item name="android:textSize">@dimen/abc_text_size_button_material</item>
  230. <item name="android:textAllCaps">true</item>
  231. <item name="android:textColor">?android:textColorPrimary</item>
  232. </style><style name="Base.TextAppearance.AppCompat.Caption">
  233. <item name="android:textSize">@dimen/abc_text_size_caption_material</item>
  234. <item name="android:textColor">?android:textColorSecondary</item>
  235. </style><style name="Base.TextAppearance.AppCompat.Display1">
  236. <item name="android:textSize">@dimen/abc_text_size_display_1_material</item>
  237. <item name="android:textColor">?android:textColorSecondary</item>
  238. </style><style name="Base.TextAppearance.AppCompat.Display2">
  239. <item name="android:textSize">@dimen/abc_text_size_display_2_material</item>
  240. <item name="android:textColor">?android:textColorSecondary</item>
  241. </style><style name="Base.TextAppearance.AppCompat.Display3">
  242. <item name="android:textSize">@dimen/abc_text_size_display_3_material</item>
  243. <item name="android:textColor">?android:textColorSecondary</item>
  244. </style><style name="Base.TextAppearance.AppCompat.Display4">
  245. <item name="android:textSize">@dimen/abc_text_size_display_4_material</item>
  246. <item name="android:textColor">?android:textColorSecondary</item>
  247. </style><style name="Base.TextAppearance.AppCompat.Headline">
  248. <item name="android:textSize">@dimen/abc_text_size_headline_material</item>
  249. <item name="android:textColor">?android:textColorPrimary</item>
  250. </style><style name="Base.TextAppearance.AppCompat.Inverse">
  251. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  252. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  253. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  254. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  255. </style><style name="Base.TextAppearance.AppCompat.Large">
  256. <item name="android:textSize">@dimen/abc_text_size_large_material</item>
  257. <item name="android:textColor">?android:attr/textColorPrimary</item>
  258. </style><style name="Base.TextAppearance.AppCompat.Large.Inverse">
  259. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  260. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  261. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  262. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  263. </style><style name="Base.TextAppearance.AppCompat.Medium">
  264. <item name="android:textSize">@dimen/abc_text_size_medium_material</item>
  265. <item name="android:textColor">?android:attr/textColorSecondary</item>
  266. </style><style name="Base.TextAppearance.AppCompat.Medium.Inverse">
  267. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  268. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  269. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  270. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  271. </style><style name="Base.TextAppearance.AppCompat.Menu">
  272. <item name="android:textSize">@dimen/abc_text_size_menu_material</item>
  273. <item name="android:textColor">?android:textColorPrimary</item>
  274. </style><style name="Base.TextAppearance.AppCompat.SearchResult" parent="">
  275. <item name="android:textStyle">normal</item>
  276. <item name="android:textColor">?android:textColorPrimary</item>
  277. <item name="android:textColorHint">?android:textColorHint</item>
  278. </style><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  279. <item name="android:textSize">14sp</item>
  280. <item name="android:textColor">?android:textColorSecondary</item>
  281. </style><style name="Base.TextAppearance.AppCompat.SearchResult.Title">
  282. <item name="android:textSize">18sp</item>
  283. </style><style name="Base.TextAppearance.AppCompat.Small">
  284. <item name="android:textSize">@dimen/abc_text_size_small_material</item>
  285. <item name="android:textColor">?android:attr/textColorTertiary</item>
  286. </style><style name="Base.TextAppearance.AppCompat.Small.Inverse">
  287. <item name="android:textColor">?android:attr/textColorTertiaryInverse</item>
  288. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  289. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  290. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  291. </style><style name="Base.TextAppearance.AppCompat.Subhead">
  292. <item name="android:textSize">@dimen/abc_text_size_subhead_material</item>
  293. <item name="android:textColor">?android:textColorPrimary</item>
  294. </style><style name="Base.TextAppearance.AppCompat.Subhead.Inverse">
  295. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  296. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  297. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  298. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  299. </style><style name="Base.TextAppearance.AppCompat.Title">
  300. <item name="android:textSize">@dimen/abc_text_size_title_material</item>
  301. <item name="android:textColor">?android:textColorPrimary</item>
  302. </style><style name="Base.TextAppearance.AppCompat.Title.Inverse">
  303. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  304. <item name="android:textColorHint">?android:attr/textColorHintInverse</item>
  305. <item name="android:textColorHighlight">?android:attr/textColorHighlightInverse</item>
  306. <item name="android:textColorLink">?android:attr/textColorLinkInverse</item>
  307. </style><style name="Base.TextAppearance.AppCompat.Tooltip">
  308. <item name="android:textSize">14sp</item>
  309. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="TextAppearance.AppCompat.Button">
  310. <item name="android:textColor">?attr/actionMenuTextColor</item>
  311. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  312. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="TextAppearance.AppCompat.Subhead">
  313. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  314. <item name="android:textColor">?android:attr/textColorSecondary</item>
  315. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="TextAppearance.AppCompat.Subhead.Inverse">
  316. <item name="android:textSize">@dimen/abc_text_size_subtitle_material_toolbar</item>
  317. <item name="android:textColor">?android:attr/textColorSecondaryInverse</item>
  318. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="TextAppearance.AppCompat.Title">
  319. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  320. <item name="android:textColor">?android:attr/textColorPrimary</item>
  321. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="TextAppearance.AppCompat.Title.Inverse">
  322. <item name="android:textSize">@dimen/abc_text_size_title_material_toolbar</item>
  323. <item name="android:textColor">?android:attr/textColorPrimaryInverse</item>
  324. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title"/><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="TextAppearance.AppCompat.Button"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button">
  325. <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
  326. </style><style name="Base.TextAppearance.AppCompat.Widget.Button.Colored">
  327. <item name="android:textColor">@color/abc_btn_colored_text_material</item>
  328. </style><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="TextAppearance.AppCompat.Button">
  329. <item name="android:textColor">?android:textColorPrimaryInverse</item>
  330. </style><style name="Base.TextAppearance.AppCompat.Widget.DropDownItem" parent="android:TextAppearance.Small">
  331. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  332. </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
  333. <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
  334. <item name="android:textColor">?attr/colorAccent</item>
  335. </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="TextAppearance.AppCompat.Button"/><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="TextAppearance.AppCompat.Menu"/><style name="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="android:TextAppearance.Medium">
  336. <item name="android:textColor">?android:attr/textColorPrimaryDisableOnly</item>
  337. </style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="TextAppearance.AppCompat.Widget.ActionBar.Subtitle">
  338. </style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="TextAppearance.AppCompat.Widget.ActionBar.Title">
  339. </style><style name="Base.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
  340. </style><style name="Base.Theme.AppCompat.CompactMenu" parent="">
  341. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  342. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  343. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  344. </style><style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog"/><style name="Base.Theme.AppCompat.Dialog.Alert">
  345. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  346. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  347. </style><style name="Base.Theme.AppCompat.Dialog.FixedSize">
  348. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  349. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  350. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  351. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  352. </style><style name="Base.Theme.AppCompat.Dialog.MinWidth">
  353. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  354. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  355. </style><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
  356. </style><style name="Base.Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light">
  357. <item name="actionBarPopupTheme">@style/ThemeOverlay.AppCompat.Light</item>
  358. <item name="actionBarWidgetTheme">@null</item>
  359. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
  360. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  361. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  362. <item name="colorPrimary">@color/primary_material_dark</item>
  363. </style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog"/><style name="Base.Theme.AppCompat.Light.Dialog.Alert">
  364. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  365. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  366. </style><style name="Base.Theme.AppCompat.Light.Dialog.FixedSize">
  367. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  368. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  369. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  370. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  371. </style><style name="Base.Theme.AppCompat.Light.Dialog.MinWidth">
  372. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  373. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  374. </style><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Theme.AppCompat.Light"/><style name="Base.ThemeOverlay.AppCompat" parent="Platform.ThemeOverlay.AppCompat"/><style name="Base.ThemeOverlay.AppCompat.ActionBar">
  375. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  376. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  377. </style><style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
  378. <item name="android:windowBackground">@color/background_material_dark</item>
  379. <item name="android:colorForeground">@color/foreground_material_dark</item>
  380. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  381. <item name="android:colorBackground">@color/background_material_dark</item>
  382. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  383. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  384. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  385. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  386. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  387. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  388. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  389. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  390. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  391. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  392. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  393. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  394. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  395. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  396. <item name="colorButtonNormal">@color/button_material_dark</item>
  397. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  398. <item name="isLightTheme">false</item>
  399. </style><style name="Base.ThemeOverlay.AppCompat.Dark.ActionBar">
  400. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  401. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  402. </style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog"/><style name="Base.ThemeOverlay.AppCompat.Dialog.Alert">
  403. <item name="android:windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  404. <item name="android:windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  405. </style><style name="Base.ThemeOverlay.AppCompat.Light" parent="Platform.ThemeOverlay.AppCompat.Light">
  406. <item name="android:windowBackground">@color/background_material_light</item>
  407. <item name="android:colorForeground">@color/foreground_material_light</item>
  408. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  409. <item name="android:colorBackground">@color/background_material_light</item>
  410. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  411. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  412. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  413. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  414. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  415. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  416. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  417. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  418. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  419. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  420. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  421. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  422. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  423. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  424. <item name="colorControlHighlight">@color/ripple_material_light</item>
  425. <item name="colorButtonNormal">@color/button_material_light</item>
  426. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  427. <item name="isLightTheme">true</item>
  428. </style><style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
  429. <item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
  430. <item name="windowNoTitle">false</item>
  431. <item name="windowActionBar">true</item>
  432. <item name="windowActionBarOverlay">false</item>
  433. <item name="windowActionModeOverlay">false</item>
  434. <item name="actionBarPopupTheme">@null</item>
  435. <item name="colorBackgroundFloating">@color/background_floating_material_dark</item>
  436. <item name="isLightTheme">false</item>
  437. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  438. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  439. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  440. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  441. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  442. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  443. <item name="actionBarTabStyle">@style/Widget.AppCompat.ActionBar.TabView</item>
  444. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.ActionBar.TabBar</item>
  445. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.ActionBar.TabText</item>
  446. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  447. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  448. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.PopupMenu.Overflow</item>
  449. <item name="actionBarStyle">@style/Widget.AppCompat.ActionBar.Solid</item>
  450. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  451. <item name="actionBarWidgetTheme">@null</item>
  452. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  453. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  454. <item name="actionBarDivider">?attr/dividerVertical</item>
  455. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  456. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  457. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  458. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  459. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  460. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  461. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  462. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  463. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  464. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  465. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  466. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  467. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  468. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  469. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  470. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  471. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  472. <item name="android:panelBackground">@android:color/transparent</item>
  473. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  474. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  475. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  476. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  477. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  478. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  479. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  480. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  481. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  482. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  483. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  484. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  485. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  486. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  487. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  488. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  489. <item name="popupMenuStyle">@style/Widget.AppCompat.PopupMenu</item>
  490. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Large</item>
  491. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Widget.PopupMenu.Small</item>
  492. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  493. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  494. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  495. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  496. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView</item>
  497. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  498. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  499. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  500. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  501. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  502. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  503. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  504. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  505. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  506. <item name="editTextColor">?android:attr/textColorPrimary</item>
  507. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  508. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  509. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  510. <item name="colorPrimary">@color/primary_material_dark</item>
  511. <item name="colorAccent">@color/accent_material_dark</item>
  512. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  513. <item name="colorControlActivated">?attr/colorAccent</item>
  514. <item name="colorControlHighlight">@color/ripple_material_dark</item>
  515. <item name="colorButtonNormal">@color/button_material_dark</item>
  516. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_dark</item>
  517. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  518. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  519. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  520. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  521. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  522. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  523. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  524. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  525. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  526. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  527. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  528. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  529. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  530. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  531. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  532. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  533. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  534. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  535. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  536. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  537. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  538. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  539. <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
  540. <item name="alertDialogCenterButtons">false</item>
  541. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  542. <item name="listDividerAlertDialog">@null</item>
  543. <item name="windowFixedWidthMajor">@null</item>
  544. <item name="windowFixedWidthMinor">@null</item>
  545. <item name="windowFixedHeightMajor">@null</item>
  546. <item name="windowFixedHeightMinor">@null</item>
  547. <item name="tooltipFrameBackground">@drawable/tooltip_frame_light</item>
  548. <item name="tooltipForegroundColor">@color/foreground_material_light</item>
  549. <item name="colorError">@color/error_color_material_dark</item>
  550. </style><style name="Base.V7.Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat">
  551. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  552. <item name="android:colorBackgroundCacheHint">@null</item>
  553. <item name="android:windowFrame">@null</item>
  554. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  555. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  556. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  557. <item name="android:windowIsFloating">true</item>
  558. <item name="android:backgroundDimEnabled">true</item>
  559. <item name="android:windowContentOverlay">@null</item>
  560. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  561. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  562. <item name="windowActionBar">false</item>
  563. <item name="windowActionModeOverlay">true</item>
  564. <item name="listPreferredItemPaddingLeft">24dip</item>
  565. <item name="listPreferredItemPaddingRight">24dip</item>
  566. <item name="android:listDivider">@null</item>
  567. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  568. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  569. <item name="android:windowCloseOnTouchOutside">true</item>
  570. </style><style name="Base.V7.Theme.AppCompat.Light" parent="Platform.AppCompat.Light">
  571. <item name="viewInflaterClass">androidx.appcompat.app.AppCompatViewInflater</item>
  572. <item name="windowNoTitle">false</item>
  573. <item name="windowActionBar">true</item>
  574. <item name="windowActionBarOverlay">false</item>
  575. <item name="windowActionModeOverlay">false</item>
  576. <item name="actionBarPopupTheme">@null</item>
  577. <item name="colorBackgroundFloating">@color/background_floating_material_light</item>
  578. <item name="isLightTheme">true</item>
  579. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  580. <item name="selectableItemBackgroundBorderless">?attr/selectableItemBackground</item>
  581. <item name="borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  582. <item name="homeAsUpIndicator">@drawable/abc_ic_ab_back_material</item>
  583. <item name="dividerVertical">@drawable/abc_list_divider_mtrl_alpha</item>
  584. <item name="dividerHorizontal">@drawable/abc_list_divider_mtrl_alpha</item>
  585. <item name="actionBarTabStyle">@style/Widget.AppCompat.Light.ActionBar.TabView</item>
  586. <item name="actionBarTabBarStyle">@style/Widget.AppCompat.Light.ActionBar.TabBar</item>
  587. <item name="actionBarTabTextStyle">@style/Widget.AppCompat.Light.ActionBar.TabText</item>
  588. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  589. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  590. <item name="actionOverflowMenuStyle">@style/Widget.AppCompat.Light.PopupMenu.Overflow</item>
  591. <item name="actionBarStyle">@style/Widget.AppCompat.Light.ActionBar.Solid</item>
  592. <item name="actionBarSplitStyle">?attr/actionBarStyle</item>
  593. <item name="actionBarWidgetTheme">@null</item>
  594. <item name="actionBarTheme">@style/ThemeOverlay.AppCompat.ActionBar</item>
  595. <item name="actionBarSize">@dimen/abc_action_bar_default_height_material</item>
  596. <item name="actionBarDivider">?attr/dividerVertical</item>
  597. <item name="actionBarItemBackground">?attr/selectableItemBackgroundBorderless</item>
  598. <item name="actionMenuTextAppearance">@style/TextAppearance.AppCompat.Widget.ActionBar.Menu</item>
  599. <item name="actionMenuTextColor">?android:attr/textColorPrimaryDisableOnly</item>
  600. <item name="actionModeStyle">@style/Widget.AppCompat.ActionMode</item>
  601. <item name="actionModeBackground">@drawable/abc_cab_background_top_material</item>
  602. <item name="actionModeSplitBackground">?attr/colorPrimaryDark</item>
  603. <item name="actionModeCloseDrawable">@drawable/abc_ic_ab_back_material</item>
  604. <item name="actionModeCloseButtonStyle">@style/Widget.AppCompat.ActionButton.CloseMode</item>
  605. <item name="actionModeCutDrawable">@drawable/abc_ic_menu_cut_mtrl_alpha</item>
  606. <item name="actionModeCopyDrawable">@drawable/abc_ic_menu_copy_mtrl_am_alpha</item>
  607. <item name="actionModePasteDrawable">@drawable/abc_ic_menu_paste_mtrl_am_alpha</item>
  608. <item name="actionModeSelectAllDrawable">@drawable/abc_ic_menu_selectall_mtrl_alpha</item>
  609. <item name="actionModeShareDrawable">@drawable/abc_ic_menu_share_mtrl_alpha</item>
  610. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  611. <item name="panelMenuListWidth">@dimen/abc_panel_menu_list_width</item>
  612. <item name="panelMenuListTheme">@style/Theme.AppCompat.CompactMenu</item>
  613. <item name="panelBackground">@drawable/abc_menu_hardkey_panel_mtrl_mult</item>
  614. <item name="android:panelBackground">@android:color/transparent</item>
  615. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_light</item>
  616. <item name="textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  617. <item name="textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  618. <item name="textAppearanceListItemSecondary">@style/TextAppearance.AppCompat.Body1</item>
  619. <item name="listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  620. <item name="listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  621. <item name="listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  622. <item name="listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  623. <item name="listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  624. <item name="listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  625. <item name="listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  626. <item name="spinnerStyle">@style/Widget.AppCompat.Spinner</item>
  627. <item name="android:spinnerItemStyle">@style/Widget.AppCompat.TextView.SpinnerItem</item>
  628. <item name="android:dropDownListViewStyle">@style/Widget.AppCompat.ListView.DropDown</item>
  629. <item name="spinnerDropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  630. <item name="dropdownListPreferredItemHeight">?attr/listPreferredItemHeightSmall</item>
  631. <item name="popupMenuStyle">@style/Widget.AppCompat.Light.PopupMenu</item>
  632. <item name="textAppearanceLargePopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large</item>
  633. <item name="textAppearanceSmallPopupMenu">@style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Small</item>
  634. <item name="textAppearancePopupMenuHeader">@style/TextAppearance.AppCompat.Widget.PopupMenu.Header</item>
  635. <item name="listPopupWindowStyle">@style/Widget.AppCompat.ListPopupWindow</item>
  636. <item name="dropDownListViewStyle">?android:attr/dropDownListViewStyle</item>
  637. <item name="listMenuViewStyle">@style/Widget.AppCompat.ListMenuView</item>
  638. <item name="searchViewStyle">@style/Widget.AppCompat.Light.SearchView</item>
  639. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  640. <item name="textColorSearchUrl">@color/abc_search_url_text</item>
  641. <item name="textAppearanceSearchResultTitle">@style/TextAppearance.AppCompat.SearchResult.Title</item>
  642. <item name="textAppearanceSearchResultSubtitle">@style/TextAppearance.AppCompat.SearchResult.Subtitle</item>
  643. <item name="activityChooserViewStyle">@style/Widget.AppCompat.ActivityChooserView</item>
  644. <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>
  645. <item name="toolbarNavigationButtonStyle">@style/Widget.AppCompat.Toolbar.Button.Navigation</item>
  646. <item name="editTextStyle">@style/Widget.AppCompat.EditText</item>
  647. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  648. <item name="editTextColor">?android:attr/textColorPrimary</item>
  649. <item name="autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  650. <item name="android:textViewStyle">@style/Widget.AppCompat.TextView</item>
  651. <item name="colorPrimaryDark">@color/primary_dark_material_light</item>
  652. <item name="colorPrimary">@color/primary_material_light</item>
  653. <item name="colorAccent">@color/accent_material_light</item>
  654. <item name="colorControlNormal">?android:attr/textColorSecondary</item>
  655. <item name="colorControlActivated">?attr/colorAccent</item>
  656. <item name="colorControlHighlight">@color/ripple_material_light</item>
  657. <item name="colorButtonNormal">@color/button_material_light</item>
  658. <item name="colorSwitchThumbNormal">@color/switch_thumb_material_light</item>
  659. <item name="controlBackground">?attr/selectableItemBackgroundBorderless</item>
  660. <item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
  661. <item name="checkboxStyle">@style/Widget.AppCompat.CompoundButton.CheckBox</item>
  662. <item name="radioButtonStyle">@style/Widget.AppCompat.CompoundButton.RadioButton</item>
  663. <item name="switchStyle">@style/Widget.AppCompat.CompoundButton.Switch</item>
  664. <item name="ratingBarStyle">@style/Widget.AppCompat.RatingBar</item>
  665. <item name="ratingBarStyleIndicator">@style/Widget.AppCompat.RatingBar.Indicator</item>
  666. <item name="ratingBarStyleSmall">@style/Widget.AppCompat.RatingBar.Small</item>
  667. <item name="seekBarStyle">@style/Widget.AppCompat.SeekBar</item>
  668. <item name="buttonStyle">@style/Widget.AppCompat.Button</item>
  669. <item name="buttonStyleSmall">@style/Widget.AppCompat.Button.Small</item>
  670. <item name="android:textAppearanceButton">@style/TextAppearance.AppCompat.Widget.Button</item>
  671. <item name="imageButtonStyle">@style/Widget.AppCompat.ImageButton</item>
  672. <item name="buttonBarStyle">@style/Widget.AppCompat.ButtonBar</item>
  673. <item name="buttonBarButtonStyle">@style/Widget.AppCompat.Button.ButtonBar.AlertDialog</item>
  674. <item name="buttonBarPositiveButtonStyle">?attr/buttonBarButtonStyle</item>
  675. <item name="buttonBarNegativeButtonStyle">?attr/buttonBarButtonStyle</item>
  676. <item name="buttonBarNeutralButtonStyle">?attr/buttonBarButtonStyle</item>
  677. <item name="dialogTheme">@style/ThemeOverlay.AppCompat.Dialog</item>
  678. <item name="dialogPreferredPadding">@dimen/abc_dialog_padding_material</item>
  679. <item name="dialogCornerRadius">@dimen/abc_dialog_corner_radius_material</item>
  680. <item name="alertDialogTheme">@style/ThemeOverlay.AppCompat.Dialog.Alert</item>
  681. <item name="alertDialogStyle">@style/AlertDialog.AppCompat.Light</item>
  682. <item name="alertDialogCenterButtons">false</item>
  683. <item name="textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  684. <item name="listDividerAlertDialog">@null</item>
  685. <item name="windowFixedWidthMajor">@null</item>
  686. <item name="windowFixedWidthMinor">@null</item>
  687. <item name="windowFixedHeightMajor">@null</item>
  688. <item name="windowFixedHeightMinor">@null</item>
  689. <item name="tooltipFrameBackground">@drawable/tooltip_frame_dark</item>
  690. <item name="tooltipForegroundColor">@color/foreground_material_dark</item>
  691. <item name="colorError">@color/error_color_material_light</item>
  692. </style><style name="Base.V7.Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light">
  693. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  694. <item name="android:colorBackgroundCacheHint">@null</item>
  695. <item name="android:windowFrame">@null</item>
  696. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  697. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  698. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  699. <item name="android:windowIsFloating">true</item>
  700. <item name="android:backgroundDimEnabled">true</item>
  701. <item name="android:windowContentOverlay">@null</item>
  702. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  703. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  704. <item name="windowActionBar">false</item>
  705. <item name="windowActionModeOverlay">true</item>
  706. <item name="listPreferredItemPaddingLeft">24dip</item>
  707. <item name="listPreferredItemPaddingRight">24dip</item>
  708. <item name="android:listDivider">@null</item>
  709. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  710. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  711. <item name="android:windowCloseOnTouchOutside">true</item>
  712. </style><style name="Base.V7.ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat">
  713. <item name="android:colorBackgroundCacheHint">@null</item>
  714. <item name="android:colorBackground">?attr/colorBackgroundFloating</item>
  715. <item name="android:windowFrame">@null</item>
  716. <item name="android:windowTitleStyle">@style/RtlOverlay.DialogWindowTitle.AppCompat</item>
  717. <item name="android:windowTitleBackgroundStyle">@style/Base.DialogWindowTitleBackground.AppCompat</item>
  718. <item name="android:windowBackground">@drawable/abc_dialog_material_background</item>
  719. <item name="android:windowIsFloating">true</item>
  720. <item name="android:backgroundDimEnabled">true</item>
  721. <item name="android:windowContentOverlay">@null</item>
  722. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.Dialog</item>
  723. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  724. <item name="windowActionBar">false</item>
  725. <item name="windowActionModeOverlay">true</item>
  726. <item name="listPreferredItemPaddingLeft">24dip</item>
  727. <item name="listPreferredItemPaddingRight">24dip</item>
  728. <item name="android:listDivider">@null</item>
  729. <item name="windowFixedWidthMajor">@null</item>
  730. <item name="windowFixedWidthMinor">@null</item>
  731. <item name="windowFixedHeightMajor">@null</item>
  732. <item name="windowFixedHeightMinor">@null</item>
  733. <item name="android:buttonBarStyle">@style/Widget.AppCompat.ButtonBar.AlertDialog</item>
  734. <item name="android:borderlessButtonStyle">@style/Widget.AppCompat.Button.Borderless</item>
  735. <item name="android:windowCloseOnTouchOutside">true</item>
  736. </style><style name="Base.V7.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.AutoCompleteTextView">
  737. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  738. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  739. <item name="android:background">?attr/editTextBackground</item>
  740. <item name="android:textColor">?attr/editTextColor</item>
  741. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  742. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  743. </style><style name="Base.V7.Widget.AppCompat.EditText" parent="android:Widget.EditText">
  744. <item name="android:background">?attr/editTextBackground</item>
  745. <item name="android:textColor">?attr/editTextColor</item>
  746. <item name="android:textAppearance">?android:attr/textAppearanceMediumInverse</item>
  747. <item name="android:textCursorDrawable">@drawable/abc_text_cursor_material</item>
  748. </style><style name="Base.V7.Widget.AppCompat.Toolbar" parent="android:Widget">
  749. <item name="titleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Title</item>
  750. <item name="subtitleTextAppearance">@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle</item>
  751. <item name="android:minHeight">?attr/actionBarSize</item>
  752. <item name="titleMargin">4dp</item>
  753. <item name="maxButtonHeight">@dimen/abc_action_bar_default_height_material</item>
  754. <item name="buttonGravity">top</item>
  755. <item name="collapseIcon">?attr/homeAsUpIndicator</item>
  756. <item name="collapseContentDescription">@string/abc_toolbar_collapse_description</item>
  757. <item name="contentInsetStart">16dp</item>
  758. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  759. <item name="android:paddingLeft">@dimen/abc_action_bar_default_padding_start_material</item>
  760. <item name="android:paddingRight">@dimen/abc_action_bar_default_padding_end_material</item>
  761. </style><style name="Base.Widget.AppCompat.ActionBar" parent="">
  762. <item name="displayOptions">showTitle</item>
  763. <item name="divider">?attr/dividerVertical</item>
  764. <item name="height">?attr/actionBarSize</item>
  765. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Title</item>
  766. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle</item>
  767. <item name="background">@null</item>
  768. <item name="backgroundStacked">@null</item>
  769. <item name="backgroundSplit">@null</item>
  770. <item name="actionButtonStyle">@style/Widget.AppCompat.ActionButton</item>
  771. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.ActionButton.Overflow</item>
  772. <item name="android:gravity">center_vertical</item>
  773. <item name="contentInsetStart">@dimen/abc_action_bar_content_inset_material</item>
  774. <item name="contentInsetStartWithNavigation">@dimen/abc_action_bar_content_inset_with_nav</item>
  775. <item name="contentInsetEnd">@dimen/abc_action_bar_content_inset_material</item>
  776. <item name="elevation">@dimen/abc_action_bar_elevation_material</item>
  777. <item name="popupTheme">?attr/actionBarPopupTheme</item>
  778. </style><style name="Base.Widget.AppCompat.ActionBar.Solid">
  779. <item name="background">?attr/colorPrimary</item>
  780. <item name="backgroundStacked">?attr/colorPrimary</item>
  781. <item name="backgroundSplit">?attr/colorPrimary</item>
  782. </style><style name="Base.Widget.AppCompat.ActionBar.TabBar" parent="">
  783. <item name="divider">?attr/actionBarDivider</item>
  784. <item name="showDividers">middle</item>
  785. <item name="dividerPadding">8dip</item>
  786. </style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="">
  787. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium</item>
  788. <item name="android:textColor">?android:attr/textColorPrimary</item>
  789. <item name="android:textSize">12sp</item>
  790. <item name="android:textStyle">bold</item>
  791. <item name="android:ellipsize">marquee</item>
  792. <item name="android:maxLines">2</item>
  793. <item name="android:maxWidth">180dp</item>
  794. <item name="textAllCaps">true</item>
  795. </style><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="">
  796. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  797. <item name="android:gravity">center_horizontal</item>
  798. <item name="android:paddingLeft">16dip</item>
  799. <item name="android:paddingRight">16dip</item>
  800. <item name="android:layout_width">0dip</item>
  801. <item name="android:layout_weight">1</item>
  802. <item name="android:minWidth">80dip</item>
  803. </style><style name="Base.Widget.AppCompat.ActionButton" parent="RtlUnderlay.Widget.AppCompat.ActionButton">
  804. <item name="android:background">?attr/actionBarItemBackground</item>
  805. <item name="android:minWidth">@dimen/abc_action_button_min_width_material</item>
  806. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  807. <item name="android:scaleType">center</item>
  808. <item name="android:gravity">center</item>
  809. <item name="android:maxLines">2</item>
  810. <item name="textAllCaps">@bool/abc_config_actionMenuItemAllCaps</item>
  811. </style><style name="Base.Widget.AppCompat.ActionButton.CloseMode">
  812. <item name="android:background">?attr/controlBackground</item>
  813. <item name="android:minWidth">56dp</item>
  814. </style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow">
  815. <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
  816. <item name="android:background">?attr/actionBarItemBackground</item>
  817. <item name="android:contentDescription">@string/abc_action_menu_overflow_description</item>
  818. <item name="android:minWidth">@dimen/abc_action_button_min_width_overflow_material</item>
  819. <item name="android:minHeight">@dimen/abc_action_button_min_height_material</item>
  820. </style><style name="Base.Widget.AppCompat.ActionMode" parent="">
  821. <item name="background">?attr/actionModeBackground</item>
  822. <item name="backgroundSplit">?attr/actionModeSplitBackground</item>
  823. <item name="height">?attr/actionBarSize</item>
  824. <item name="titleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Title</item>
  825. <item name="subtitleTextStyle">@style/TextAppearance.AppCompat.Widget.ActionMode.Subtitle</item>
  826. <item name="closeItemLayout">@layout/abc_action_mode_close_item_material</item>
  827. </style><style name="Base.Widget.AppCompat.ActivityChooserView" parent="">
  828. <item name="android:gravity">center</item>
  829. <item name="android:background">@drawable/abc_ab_share_pack_mtrl_alpha</item>
  830. <item name="divider">?attr/dividerVertical</item>
  831. <item name="showDividers">middle</item>
  832. <item name="dividerPadding">6dip</item>
  833. </style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="Base.V7.Widget.AppCompat.AutoCompleteTextView"/><style name="Base.Widget.AppCompat.Button" parent="android:Widget">
  834. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  835. <item name="android:textAppearance">?android:attr/textAppearanceButton</item>
  836. <item name="android:minHeight">48dip</item>
  837. <item name="android:minWidth">88dip</item>
  838. <item name="android:focusable">true</item>
  839. <item name="android:clickable">true</item>
  840. <item name="android:gravity">center_vertical|center_horizontal</item>
  841. </style><style name="Base.Widget.AppCompat.Button.Borderless">
  842. <item name="android:background">@drawable/abc_btn_borderless_material</item>
  843. </style><style name="Base.Widget.AppCompat.Button.Borderless.Colored">
  844. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Borderless.Colored</item>
  845. </style><style name="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Widget.AppCompat.Button.Borderless.Colored">
  846. <item name="android:minWidth">64dp</item>
  847. <item name="android:minHeight">@dimen/abc_alert_dialog_button_bar_height</item>
  848. </style><style name="Base.Widget.AppCompat.Button.Colored">
  849. <item name="android:background">@drawable/abc_btn_colored_material</item>
  850. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.Button.Colored</item>
  851. </style><style name="Base.Widget.AppCompat.Button.Small">
  852. <item name="android:minHeight">48dip</item>
  853. <item name="android:minWidth">48dip</item>
  854. </style><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget">
  855. <item name="android:background">@null</item>
  856. </style><style name="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.CompoundButton.CheckBox">
  857. <item name="android:button">?android:attr/listChoiceIndicatorMultiple</item>
  858. <item name="buttonCompat">?attr/listChoiceIndicatorMultipleAnimated</item>
  859. <item name="android:background">?attr/controlBackground</item>
  860. </style><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.CompoundButton.RadioButton">
  861. <item name="android:button">?android:attr/listChoiceIndicatorSingle</item>
  862. <item name="buttonCompat">?attr/listChoiceIndicatorSingleAnimated</item>
  863. <item name="android:background">?attr/controlBackground</item>
  864. </style><style name="Base.Widget.AppCompat.CompoundButton.Switch" parent="android:Widget.CompoundButton">
  865. <item name="track">@drawable/abc_switch_track_mtrl_alpha</item>
  866. <item name="android:thumb">@drawable/abc_switch_thumb_material</item>
  867. <item name="switchTextAppearance">@style/TextAppearance.AppCompat.Widget.Switch</item>
  868. <item name="android:background">?attr/controlBackground</item>
  869. <item name="showText">false</item>
  870. <item name="switchPadding">@dimen/abc_switch_padding</item>
  871. <item name="android:textOn">@string/abc_capital_on</item>
  872. <item name="android:textOff">@string/abc_capital_off</item>
  873. </style><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
  874. <item name="barLength">18dp</item>
  875. <item name="gapBetweenBars">3dp</item>
  876. <item name="drawableSize">24dp</item>
  877. </style><style name="Base.Widget.AppCompat.DrawerArrowToggle.Common" parent="">
  878. <item name="color">?android:attr/textColorSecondary</item>
  879. <item name="spinBars">true</item>
  880. <item name="thickness">2dp</item>
  881. <item name="arrowShaftLength">16dp</item>
  882. <item name="arrowHeadLength">8dp</item>
  883. </style><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="">
  884. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.DropDownItem</item>
  885. <item name="android:paddingLeft">8dp</item>
  886. <item name="android:paddingRight">8dp</item>
  887. <item name="android:gravity">center_vertical</item>
  888. </style><style name="Base.Widget.AppCompat.EditText" parent="Base.V7.Widget.AppCompat.EditText"/><style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.ImageButton">
  889. <item name="android:background">@drawable/abc_btn_default_mtrl_shape</item>
  890. </style><style name="Base.Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  891. <item name="actionButtonStyle">@style/Widget.AppCompat.Light.ActionButton</item>
  892. <item name="actionOverflowButtonStyle">@style/Widget.AppCompat.Light.ActionButton.Overflow</item>
  893. </style><style name="Base.Widget.AppCompat.Light.ActionBar.Solid">
  894. <item name="background">?attr/colorPrimary</item>
  895. <item name="backgroundStacked">?attr/colorPrimary</item>
  896. <item name="backgroundSplit">?attr/colorPrimary</item>
  897. </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  898. </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  899. </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  900. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  901. </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  902. <item name="android:background">@drawable/abc_tab_indicator_material</item>
  903. </style><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  904. </style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  905. <item name="overlapAnchor">true</item>
  906. <item name="android:dropDownHorizontalOffset">-4dip</item>
  907. </style><style name="Base.Widget.AppCompat.ListMenuView" parent="android:Widget">
  908. <item name="subMenuArrow">@drawable/abc_ic_arrow_drop_right_black_24dp</item>
  909. </style><style name="Base.Widget.AppCompat.ListPopupWindow" parent="">
  910. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  911. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  912. <item name="android:dropDownVerticalOffset">0dip</item>
  913. <item name="android:dropDownHorizontalOffset">0dip</item>
  914. <item name="android:dropDownWidth">wrap_content</item>
  915. </style><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.ListView">
  916. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  917. </style><style name="Base.Widget.AppCompat.ListView.DropDown">
  918. <item name="android:divider">@null</item>
  919. </style><style name="Base.Widget.AppCompat.ListView.Menu" parent="android:Widget.ListView.Menu">
  920. <item name="android:listSelector">?attr/listChoiceBackgroundIndicator</item>
  921. <item name="android:divider">?attr/dividerHorizontal</item>
  922. </style><style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow">
  923. </style><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
  924. <item name="overlapAnchor">true</item>
  925. <item name="android:dropDownHorizontalOffset">-4dip</item>
  926. </style><style name="Base.Widget.AppCompat.PopupWindow" parent="android:Widget.PopupWindow">
  927. </style><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Holo.ProgressBar">
  928. </style><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Holo.ProgressBar.Horizontal">
  929. </style><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.RatingBar">
  930. <item name="android:progressDrawable">@drawable/abc_ratingbar_material</item>
  931. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_material</item>
  932. </style><style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.RatingBar">
  933. <item name="android:progressDrawable">@drawable/abc_ratingbar_indicator_material</item>
  934. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_indicator_material</item>
  935. <item name="android:minHeight">36dp</item>
  936. <item name="android:maxHeight">36dp</item>
  937. <item name="android:isIndicator">true</item>
  938. <item name="android:thumb">@null</item>
  939. </style><style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.RatingBar">
  940. <item name="android:progressDrawable">@drawable/abc_ratingbar_small_material</item>
  941. <item name="android:indeterminateDrawable">@drawable/abc_ratingbar_small_material</item>
  942. <item name="android:minHeight">16dp</item>
  943. <item name="android:maxHeight">16dp</item>
  944. <item name="android:isIndicator">true</item>
  945. <item name="android:thumb">@null</item>
  946. </style><style name="Base.Widget.AppCompat.SearchView" parent="android:Widget">
  947. <item name="layout">@layout/abc_search_view</item>
  948. <item name="queryBackground">@drawable/abc_textfield_search_material</item>
  949. <item name="submitBackground">@drawable/abc_textfield_search_material</item>
  950. <item name="closeIcon">@drawable/abc_ic_clear_material</item>
  951. <item name="searchIcon">@drawable/abc_ic_search_api_material</item>
  952. <item name="searchHintIcon">@drawable/abc_ic_search_api_material</item>
  953. <item name="goIcon">@drawable/abc_ic_go_search_api_material</item>
  954. <item name="voiceIcon">@drawable/abc_ic_voice_search_api_material</item>
  955. <item name="commitIcon">@drawable/abc_ic_commit_search_api_mtrl_alpha</item>
  956. <item name="suggestionRowLayout">@layout/abc_search_dropdown_item_icons_2line</item>
  957. </style><style name="Base.Widget.AppCompat.SearchView.ActionBar">
  958. <item name="queryBackground">@null</item>
  959. <item name="submitBackground">@null</item>
  960. <item name="searchHintIcon">@null</item>
  961. <item name="defaultQueryHint">@string/abc_search_hint</item>
  962. </style><style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget">
  963. <item name="android:indeterminateOnly">false</item>
  964. <item name="android:progressDrawable">@drawable/abc_seekbar_track_material</item>
  965. <item name="android:indeterminateDrawable">@drawable/abc_seekbar_track_material</item>
  966. <item name="android:thumb">@drawable/abc_seekbar_thumb_material</item>
  967. <item name="android:focusable">true</item>
  968. <item name="android:paddingLeft">16dip</item>
  969. <item name="android:paddingRight">16dip</item>
  970. </style><style name="Base.Widget.AppCompat.SeekBar.Discrete">
  971. <item name="tickMark">@drawable/abc_seekbar_tick_mark_material</item>
  972. </style><style name="Base.Widget.AppCompat.Spinner" parent="Platform.Widget.AppCompat.Spinner">
  973. <item name="android:background">@drawable/abc_spinner_mtrl_am_alpha</item>
  974. <item name="android:popupBackground">@drawable/abc_popup_background_mtrl_mult</item>
  975. <item name="android:dropDownSelector">?attr/listChoiceBackgroundIndicator</item>
  976. <item name="android:dropDownVerticalOffset">0dip</item>
  977. <item name="android:dropDownHorizontalOffset">0dip</item>
  978. <item name="android:dropDownWidth">wrap_content</item>
  979. <item name="android:clickable">true</item>
  980. <item name="android:gravity">left|start|center_vertical</item>
  981. <item name="overlapAnchor">true</item>
  982. </style><style name="Base.Widget.AppCompat.Spinner.Underlined">
  983. <item name="android:background">@drawable/abc_spinner_textfield_background_material</item>
  984. </style><style name="Base.Widget.AppCompat.TextView" parent="android:Widget.TextView"/><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.TextView.SpinnerItem">
  985. <item name="android:textAppearance">@style/TextAppearance.AppCompat.Widget.TextView.SpinnerItem</item>
  986. <item name="android:paddingLeft">8dp</item>
  987. <item name="android:paddingRight">8dp</item>
  988. </style><style name="Base.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar"/><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget">
  989. <item name="android:background">?attr/controlBackground</item>
  990. <item name="android:minWidth">56dp</item>
  991. <item name="android:scaleType">center</item>
  992. </style><style name="Platform.AppCompat" parent="android:Theme.Holo">
  993. <item name="android:windowNoTitle">true</item>
  994. <item name="android:windowActionBar">false</item>
  995. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  996. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  997. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  998. <item name="android:colorForeground">@color/foreground_material_dark</item>
  999. <item name="android:colorForegroundInverse">@color/foreground_material_light</item>
  1000. <item name="android:colorBackground">@color/background_material_dark</item>
  1001. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_dark</item>
  1002. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_dark</item>
  1003. <item name="android:backgroundDimAmount">0.6</item>
  1004. <item name="android:windowBackground">@color/background_material_dark</item>
  1005. <item name="android:textColorPrimary">@color/abc_primary_text_material_dark</item>
  1006. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_light</item>
  1007. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  1008. <item name="android:textColorSecondary">@color/abc_secondary_text_material_dark</item>
  1009. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_light</item>
  1010. <item name="android:textColorTertiary">@color/abc_secondary_text_material_dark</item>
  1011. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_light</item>
  1012. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  1013. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  1014. <item name="android:textColorHighlight">@color/highlighted_text_material_dark</item>
  1015. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_light</item>
  1016. <item name="android:textColorLink">?attr/colorAccent</item>
  1017. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  1018. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_dark</item>
  1019. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  1020. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  1021. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  1022. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  1023. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  1024. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  1025. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  1026. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  1027. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  1028. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  1029. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  1030. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  1031. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  1032. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  1033. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  1034. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  1035. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  1036. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  1037. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  1038. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  1039. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  1040. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  1041. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  1042. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  1043. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  1044. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_dark</item>
  1045. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_dark</item>
  1046. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_dark</item>
  1047. </style><style name="Platform.AppCompat.Light" parent="android:Theme.Holo.Light">
  1048. <item name="android:windowNoTitle">true</item>
  1049. <item name="android:windowActionBar">false</item>
  1050. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  1051. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  1052. <item name="android:borderlessButtonStyle">?attr/borderlessButtonStyle</item>
  1053. <item name="android:colorForeground">@color/foreground_material_light</item>
  1054. <item name="android:colorForegroundInverse">@color/foreground_material_dark</item>
  1055. <item name="android:colorBackground">@color/background_material_light</item>
  1056. <item name="android:colorBackgroundCacheHint">@color/abc_background_cache_hint_selector_material_light</item>
  1057. <item name="android:disabledAlpha">@dimen/abc_disabled_alpha_material_light</item>
  1058. <item name="android:backgroundDimAmount">0.6</item>
  1059. <item name="android:windowBackground">@color/background_material_light</item>
  1060. <item name="android:textColorPrimary">@color/abc_primary_text_material_light</item>
  1061. <item name="android:textColorPrimaryInverse">@color/abc_primary_text_material_dark</item>
  1062. <item name="android:textColorSecondary">@color/abc_secondary_text_material_light</item>
  1063. <item name="android:textColorSecondaryInverse">@color/abc_secondary_text_material_dark</item>
  1064. <item name="android:textColorTertiary">@color/abc_secondary_text_material_light</item>
  1065. <item name="android:textColorTertiaryInverse">@color/abc_secondary_text_material_dark</item>
  1066. <item name="android:textColorPrimaryDisableOnly">@color/abc_primary_text_disable_only_material_light</item>
  1067. <item name="android:textColorPrimaryInverseDisableOnly">@color/abc_primary_text_disable_only_material_dark</item>
  1068. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  1069. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  1070. <item name="android:textColorHighlight">@color/highlighted_text_material_light</item>
  1071. <item name="android:textColorHighlightInverse">@color/highlighted_text_material_dark</item>
  1072. <item name="android:textColorLink">?attr/colorAccent</item>
  1073. <item name="android:textColorLinkInverse">?attr/colorAccent</item>
  1074. <item name="android:textColorAlertDialogListItem">@color/abc_primary_text_material_light</item>
  1075. <item name="android:textAppearance">@style/TextAppearance.AppCompat</item>
  1076. <item name="android:textAppearanceInverse">@style/TextAppearance.AppCompat.Inverse</item>
  1077. <item name="android:textAppearanceLarge">@style/TextAppearance.AppCompat.Large</item>
  1078. <item name="android:textAppearanceLargeInverse">@style/TextAppearance.AppCompat.Large.Inverse</item>
  1079. <item name="android:textAppearanceMedium">@style/TextAppearance.AppCompat.Medium</item>
  1080. <item name="android:textAppearanceMediumInverse">@style/TextAppearance.AppCompat.Medium.Inverse</item>
  1081. <item name="android:textAppearanceSmall">@style/TextAppearance.AppCompat.Small</item>
  1082. <item name="android:textAppearanceSmallInverse">@style/TextAppearance.AppCompat.Small.Inverse</item>
  1083. <item name="android:listChoiceIndicatorSingle">@drawable/abc_btn_radio_material</item>
  1084. <item name="listChoiceIndicatorSingleAnimated">@drawable/abc_btn_radio_material_anim</item>
  1085. <item name="android:listChoiceIndicatorMultiple">@drawable/abc_btn_check_material</item>
  1086. <item name="listChoiceIndicatorMultipleAnimated">@drawable/abc_btn_check_material_anim</item>
  1087. <item name="android:textAppearanceListItem">@style/TextAppearance.AppCompat.Subhead</item>
  1088. <item name="android:textAppearanceListItemSmall">@style/TextAppearance.AppCompat.Subhead</item>
  1089. <item name="android:listPreferredItemHeight">@dimen/abc_list_item_height_material</item>
  1090. <item name="android:listPreferredItemHeightSmall">@dimen/abc_list_item_height_small_material</item>
  1091. <item name="android:listPreferredItemHeightLarge">@dimen/abc_list_item_height_large_material</item>
  1092. <item name="android:listPreferredItemPaddingLeft">@dimen/abc_list_item_padding_horizontal_material</item>
  1093. <item name="android:listPreferredItemPaddingRight">@dimen/abc_list_item_padding_horizontal_material</item>
  1094. <item name="android:listPreferredItemPaddingStart">@dimen/abc_list_item_padding_horizontal_material</item>
  1095. <item name="android:listPreferredItemPaddingEnd">@dimen/abc_list_item_padding_horizontal_material</item>
  1096. <item name="android:actionModeCutDrawable">?actionModeCutDrawable</item>
  1097. <item name="android:actionModeCopyDrawable">?actionModeCopyDrawable</item>
  1098. <item name="android:actionModePasteDrawable">?actionModePasteDrawable</item>
  1099. <item name="android:actionModeSelectAllDrawable">?actionModeSelectAllDrawable</item>
  1100. <item name="android:textSelectHandle">@drawable/abc_text_select_handle_middle_mtrl_light</item>
  1101. <item name="android:textSelectHandleLeft">@drawable/abc_text_select_handle_left_mtrl_light</item>
  1102. <item name="android:textSelectHandleRight">@drawable/abc_text_select_handle_right_mtrl_light</item>
  1103. </style><style name="Platform.ThemeOverlay.AppCompat" parent=""/><style name="Platform.ThemeOverlay.AppCompat.Dark">
  1104. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_dark</item>
  1105. <item name="actionDropDownStyle">@style/Widget.AppCompat.Spinner.DropDown.ActionBar</item>
  1106. <item name="selectableItemBackground">@drawable/abc_item_background_holo_dark</item>
  1107. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.AutoCompleteTextView</item>
  1108. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  1109. </style><style name="Platform.ThemeOverlay.AppCompat.Light">
  1110. <item name="actionBarItemBackground">@drawable/abc_item_background_holo_light</item>
  1111. <item name="actionDropDownStyle">@style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar</item>
  1112. <item name="selectableItemBackground">@drawable/abc_item_background_holo_light</item>
  1113. <item name="android:autoCompleteTextViewStyle">@style/Widget.AppCompat.Light.AutoCompleteTextView</item>
  1114. <item name="android:dropDownItemStyle">@style/Widget.AppCompat.DropDownItem.Spinner</item>
  1115. </style><style name="Platform.Widget.AppCompat.Spinner" parent="android:Widget.Holo.Spinner"/><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
  1116. </style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
  1117. <item name="android:layout_gravity">center_vertical|left</item>
  1118. <item name="android:paddingRight">8dp</item>
  1119. </style><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
  1120. <item name="android:layout_marginRight">8dp</item>
  1121. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
  1122. <item name="android:paddingRight">16dp</item>
  1123. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
  1124. <item name="android:layout_marginLeft">16dp</item>
  1125. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
  1126. <item name="android:layout_marginLeft">16dp</item>
  1127. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
  1128. <item name="android:layout_marginLeft">8dp</item>
  1129. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
  1130. <item name="android:layout_alignParentLeft">true</item>
  1131. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
  1132. <item name="android:layout_marginLeft">16dp</item>
  1133. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
  1134. <item name="android:paddingLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  1135. <item name="android:paddingRight">4dp</item>
  1136. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
  1137. <item name="android:layout_alignParentLeft">true</item>
  1138. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
  1139. <item name="android:layout_toLeftOf">@id/edit_query</item>
  1140. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
  1141. <item name="android:layout_alignParentRight">true</item>
  1142. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
  1143. <item name="android:layout_toLeftOf">@android:id/icon2</item>
  1144. <item name="android:layout_toRightOf">@android:id/icon1</item>
  1145. </style><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
  1146. <item name="android:layout_marginLeft">@dimen/abc_dropdownitem_text_padding_left</item>
  1147. </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
  1148. <item name="android:paddingLeft">12dp</item>
  1149. <item name="android:paddingRight">12dp</item>
  1150. </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
  1151. <item name="android:paddingLeft">@dimen/abc_action_bar_overflow_padding_start_material</item>
  1152. <item name="android:paddingRight">@dimen/abc_action_bar_overflow_padding_end_material</item>
  1153. </style><style name="TextAppearance.AppCompat" parent="Base.TextAppearance.AppCompat"/><style name="TextAppearance.AppCompat.Body1" parent="Base.TextAppearance.AppCompat.Body1"/><style name="TextAppearance.AppCompat.Body2" parent="Base.TextAppearance.AppCompat.Body2"/><style name="TextAppearance.AppCompat.Button" parent="Base.TextAppearance.AppCompat.Button"/><style name="TextAppearance.AppCompat.Caption" parent="Base.TextAppearance.AppCompat.Caption"/><style name="TextAppearance.AppCompat.Display1" parent="Base.TextAppearance.AppCompat.Display1"/><style name="TextAppearance.AppCompat.Display2" parent="Base.TextAppearance.AppCompat.Display2"/><style name="TextAppearance.AppCompat.Display3" parent="Base.TextAppearance.AppCompat.Display3"/><style name="TextAppearance.AppCompat.Display4" parent="Base.TextAppearance.AppCompat.Display4"/><style name="TextAppearance.AppCompat.Headline" parent="Base.TextAppearance.AppCompat.Headline"/><style name="TextAppearance.AppCompat.Inverse" parent="Base.TextAppearance.AppCompat.Inverse"/><style name="TextAppearance.AppCompat.Large" parent="Base.TextAppearance.AppCompat.Large"/><style name="TextAppearance.AppCompat.Large.Inverse" parent="Base.TextAppearance.AppCompat.Large.Inverse"/><style name="TextAppearance.AppCompat.Light.SearchResult.Subtitle" parent="TextAppearance.AppCompat.SearchResult.Subtitle"/><style name="TextAppearance.AppCompat.Light.SearchResult.Title" parent="TextAppearance.AppCompat.SearchResult.Title"/><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="TextAppearance.AppCompat.Widget.PopupMenu.Large"/><style name="TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="TextAppearance.AppCompat.Widget.PopupMenu.Small"/><style name="TextAppearance.AppCompat.Medium" parent="Base.TextAppearance.AppCompat.Medium"/><style name="TextAppearance.AppCompat.Medium.Inverse" parent="Base.TextAppearance.AppCompat.Medium.Inverse"/><style name="TextAppearance.AppCompat.Menu" parent="Base.TextAppearance.AppCompat.Menu"/><style name="TextAppearance.AppCompat.SearchResult.Subtitle" parent="Base.TextAppearance.AppCompat.SearchResult.Subtitle">
  1154. </style><style name="TextAppearance.AppCompat.SearchResult.Title" parent="Base.TextAppearance.AppCompat.SearchResult.Title">
  1155. </style><style name="TextAppearance.AppCompat.Small" parent="Base.TextAppearance.AppCompat.Small"/><style name="TextAppearance.AppCompat.Small.Inverse" parent="Base.TextAppearance.AppCompat.Small.Inverse"/><style name="TextAppearance.AppCompat.Subhead" parent="Base.TextAppearance.AppCompat.Subhead"/><style name="TextAppearance.AppCompat.Subhead.Inverse" parent="Base.TextAppearance.AppCompat.Subhead.Inverse"/><style name="TextAppearance.AppCompat.Title" parent="Base.TextAppearance.AppCompat.Title"/><style name="TextAppearance.AppCompat.Title.Inverse" parent="Base.TextAppearance.AppCompat.Title.Inverse"/><style name="TextAppearance.AppCompat.Tooltip" parent="Base.TextAppearance.AppCompat.Tooltip"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu">
  1156. </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse">
  1157. </style><style name="TextAppearance.AppCompat.Widget.ActionBar.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title"/><style name="TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse">
  1158. </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle">
  1159. </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Subtitle"/><style name="TextAppearance.AppCompat.Widget.ActionMode.Title" parent="Base.TextAppearance.AppCompat.Widget.ActionMode.Title">
  1160. </style><style name="TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse" parent="TextAppearance.AppCompat.Widget.ActionMode.Title"/><style name="TextAppearance.AppCompat.Widget.Button" parent="Base.TextAppearance.AppCompat.Widget.Button"/><style name="TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"/><style name="TextAppearance.AppCompat.Widget.Button.Colored" parent="Base.TextAppearance.AppCompat.Widget.Button.Colored"/><style name="TextAppearance.AppCompat.Widget.Button.Inverse" parent="Base.TextAppearance.AppCompat.Widget.Button.Inverse"/><style name="TextAppearance.AppCompat.Widget.DropDownItem" parent="Base.TextAppearance.AppCompat.Widget.DropDownItem">
  1161. </style><style name="TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header"/><style name="TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large"/><style name="TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small"/><style name="TextAppearance.AppCompat.Widget.Switch" parent="Base.TextAppearance.AppCompat.Widget.Switch"/><style name="TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem"/><style name="TextAppearance.Widget.AppCompat.ExpandedMenu.Item" parent="Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item">
  1162. </style><style name="TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle">
  1163. </style><style name="TextAppearance.Widget.AppCompat.Toolbar.Title" parent="Base.TextAppearance.Widget.AppCompat.Toolbar.Title">
  1164. </style><style name="Theme.AppCompat" parent="Base.Theme.AppCompat"/><style name="Theme.AppCompat.CompactMenu" parent="Base.Theme.AppCompat.CompactMenu"/><style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat.Light"/><style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat.Light.DarkActionBar"/><style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Light.Dialog"/><style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Light.Dialog.Alert"/><style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Light.Dialog.MinWidth"/><style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.Light.DialogWhenLarge"/><style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/><style name="Theme.AppCompat.Dialog" parent="Base.Theme.AppCompat.Dialog"/><style name="Theme.AppCompat.Dialog.Alert" parent="Base.Theme.AppCompat.Dialog.Alert"/><style name="Theme.AppCompat.Dialog.MinWidth" parent="Base.Theme.AppCompat.Dialog.MinWidth"/><style name="Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.DialogWhenLarge">
  1165. </style><style name="Theme.AppCompat.Light" parent="Base.Theme.AppCompat.Light"/><style name="Theme.AppCompat.Light.DarkActionBar" parent="Base.Theme.AppCompat.Light.DarkActionBar"/><style name="Theme.AppCompat.Light.Dialog" parent="Base.Theme.AppCompat.Light.Dialog"/><style name="Theme.AppCompat.Light.Dialog.Alert" parent="Base.Theme.AppCompat.Light.Dialog.Alert"/><style name="Theme.AppCompat.Light.Dialog.MinWidth" parent="Base.Theme.AppCompat.Light.Dialog.MinWidth"/><style name="Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.DialogWhenLarge">
  1166. </style><style name="Theme.AppCompat.Light.NoActionBar">
  1167. <item name="windowActionBar">false</item>
  1168. <item name="windowNoTitle">true</item>
  1169. </style><style name="Theme.AppCompat.NoActionBar">
  1170. <item name="windowActionBar">false</item>
  1171. <item name="windowNoTitle">true</item>
  1172. </style><style name="ThemeOverlay.AppCompat" parent="Base.ThemeOverlay.AppCompat"/><style name="ThemeOverlay.AppCompat.ActionBar" parent="Base.ThemeOverlay.AppCompat.ActionBar"/><style name="ThemeOverlay.AppCompat.Dark" parent="Base.ThemeOverlay.AppCompat.Dark"/><style name="ThemeOverlay.AppCompat.Dark.ActionBar" parent="Base.ThemeOverlay.AppCompat.Dark.ActionBar"/><style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Light"/><style name="ThemeOverlay.AppCompat.DayNight.ActionBar">
  1173. <item name="colorControlNormal">?android:attr/textColorPrimary</item>
  1174. <item name="searchViewStyle">@style/Widget.AppCompat.SearchView.ActionBar</item>
  1175. </style><style name="ThemeOverlay.AppCompat.Dialog" parent="Base.ThemeOverlay.AppCompat.Dialog"/><style name="ThemeOverlay.AppCompat.Dialog.Alert" parent="Base.ThemeOverlay.AppCompat.Dialog.Alert"/><style name="ThemeOverlay.AppCompat.Light" parent="Base.ThemeOverlay.AppCompat.Light"/><style name="Widget.AppCompat.ActionBar" parent="Base.Widget.AppCompat.ActionBar">
  1176. </style><style name="Widget.AppCompat.ActionBar.Solid" parent="Base.Widget.AppCompat.ActionBar.Solid">
  1177. </style><style name="Widget.AppCompat.ActionBar.TabBar" parent="Base.Widget.AppCompat.ActionBar.TabBar">
  1178. </style><style name="Widget.AppCompat.ActionBar.TabText" parent="Base.Widget.AppCompat.ActionBar.TabText">
  1179. </style><style name="Widget.AppCompat.ActionBar.TabView" parent="Base.Widget.AppCompat.ActionBar.TabView">
  1180. </style><style name="Widget.AppCompat.ActionButton" parent="Base.Widget.AppCompat.ActionButton"/><style name="Widget.AppCompat.ActionButton.CloseMode" parent="Base.Widget.AppCompat.ActionButton.CloseMode"/><style name="Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton.Overflow"/><style name="Widget.AppCompat.ActionMode" parent="Base.Widget.AppCompat.ActionMode">
  1181. </style><style name="Widget.AppCompat.ActivityChooserView" parent="Base.Widget.AppCompat.ActivityChooserView">
  1182. </style><style name="Widget.AppCompat.AutoCompleteTextView" parent="Base.Widget.AppCompat.AutoCompleteTextView">
  1183. </style><style name="Widget.AppCompat.Button" parent="Base.Widget.AppCompat.Button"/><style name="Widget.AppCompat.Button.Borderless" parent="Base.Widget.AppCompat.Button.Borderless"/><style name="Widget.AppCompat.Button.Borderless.Colored" parent="Base.Widget.AppCompat.Button.Borderless.Colored"/><style name="Widget.AppCompat.Button.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.Button.ButtonBar.AlertDialog"/><style name="Widget.AppCompat.Button.Colored" parent="Base.Widget.AppCompat.Button.Colored"/><style name="Widget.AppCompat.Button.Small" parent="Base.Widget.AppCompat.Button.Small"/><style name="Widget.AppCompat.ButtonBar" parent="Base.Widget.AppCompat.ButtonBar"/><style name="Widget.AppCompat.ButtonBar.AlertDialog" parent="Base.Widget.AppCompat.ButtonBar.AlertDialog"/><style name="Widget.AppCompat.CompoundButton.CheckBox" parent="Base.Widget.AppCompat.CompoundButton.CheckBox"/><style name="Widget.AppCompat.CompoundButton.RadioButton" parent="Base.Widget.AppCompat.CompoundButton.RadioButton"/><style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch"/><style name="Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle">
  1184. <item name="color">?attr/colorControlNormal</item>
  1185. </style><style name="Widget.AppCompat.DropDownItem.Spinner" parent="RtlOverlay.Widget.AppCompat.Search.DropDown.Text"/><style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/><style name="Widget.AppCompat.ImageButton" parent="Base.Widget.AppCompat.ImageButton"/><style name="Widget.AppCompat.Light.ActionBar" parent="Base.Widget.AppCompat.Light.ActionBar">
  1186. </style><style name="Widget.AppCompat.Light.ActionBar.Solid" parent="Base.Widget.AppCompat.Light.ActionBar.Solid">
  1187. </style><style name="Widget.AppCompat.Light.ActionBar.Solid.Inverse"/><style name="Widget.AppCompat.Light.ActionBar.TabBar" parent="Base.Widget.AppCompat.Light.ActionBar.TabBar">
  1188. </style><style name="Widget.AppCompat.Light.ActionBar.TabBar.Inverse"/><style name="Widget.AppCompat.Light.ActionBar.TabText" parent="Base.Widget.AppCompat.Light.ActionBar.TabText">
  1189. </style><style name="Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse">
  1190. </style><style name="Widget.AppCompat.Light.ActionBar.TabView" parent="Base.Widget.AppCompat.Light.ActionBar.TabView">
  1191. </style><style name="Widget.AppCompat.Light.ActionBar.TabView.Inverse"/><style name="Widget.AppCompat.Light.ActionButton" parent="Widget.AppCompat.ActionButton"/><style name="Widget.AppCompat.Light.ActionButton.CloseMode" parent="Widget.AppCompat.ActionButton.CloseMode"/><style name="Widget.AppCompat.Light.ActionButton.Overflow" parent="Widget.AppCompat.ActionButton.Overflow"/><style name="Widget.AppCompat.Light.ActionMode.Inverse" parent="Widget.AppCompat.ActionMode"/><style name="Widget.AppCompat.Light.ActivityChooserView" parent="Widget.AppCompat.ActivityChooserView"/><style name="Widget.AppCompat.Light.AutoCompleteTextView" parent="Widget.AppCompat.AutoCompleteTextView"/><style name="Widget.AppCompat.Light.DropDownItem.Spinner" parent="Widget.AppCompat.DropDownItem.Spinner"/><style name="Widget.AppCompat.Light.ListPopupWindow" parent="Widget.AppCompat.ListPopupWindow"/><style name="Widget.AppCompat.Light.ListView.DropDown" parent="Widget.AppCompat.ListView.DropDown"/><style name="Widget.AppCompat.Light.PopupMenu" parent="Base.Widget.AppCompat.Light.PopupMenu"/><style name="Widget.AppCompat.Light.PopupMenu.Overflow" parent="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  1192. </style><style name="Widget.AppCompat.Light.SearchView" parent="Widget.AppCompat.SearchView"/><style name="Widget.AppCompat.Light.Spinner.DropDown.ActionBar" parent="Widget.AppCompat.Spinner.DropDown.ActionBar"/><style name="Widget.AppCompat.ListMenuView" parent="Base.Widget.AppCompat.ListMenuView"/><style name="Widget.AppCompat.ListPopupWindow" parent="Base.Widget.AppCompat.ListPopupWindow">
  1193. </style><style name="Widget.AppCompat.ListView" parent="Base.Widget.AppCompat.ListView"/><style name="Widget.AppCompat.ListView.DropDown" parent="Base.Widget.AppCompat.ListView.DropDown"/><style name="Widget.AppCompat.ListView.Menu" parent="Base.Widget.AppCompat.ListView.Menu"/><style name="Widget.AppCompat.PopupMenu" parent="Base.Widget.AppCompat.PopupMenu"/><style name="Widget.AppCompat.PopupMenu.Overflow" parent="Base.Widget.AppCompat.PopupMenu.Overflow">
  1194. </style><style name="Widget.AppCompat.PopupWindow" parent="Base.Widget.AppCompat.PopupWindow">
  1195. </style><style name="Widget.AppCompat.ProgressBar" parent="Base.Widget.AppCompat.ProgressBar">
  1196. </style><style name="Widget.AppCompat.ProgressBar.Horizontal" parent="Base.Widget.AppCompat.ProgressBar.Horizontal">
  1197. </style><style name="Widget.AppCompat.RatingBar" parent="Base.Widget.AppCompat.RatingBar"/><style name="Widget.AppCompat.RatingBar.Indicator" parent="Base.Widget.AppCompat.RatingBar.Indicator"/><style name="Widget.AppCompat.RatingBar.Small" parent="Base.Widget.AppCompat.RatingBar.Small"/><style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView"/><style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar"/><style name="Widget.AppCompat.SeekBar" parent="Base.Widget.AppCompat.SeekBar"/><style name="Widget.AppCompat.SeekBar.Discrete" parent="Base.Widget.AppCompat.SeekBar.Discrete"/><style name="Widget.AppCompat.Spinner" parent="Base.Widget.AppCompat.Spinner"/><style name="Widget.AppCompat.Spinner.DropDown"/><style name="Widget.AppCompat.Spinner.DropDown.ActionBar"/><style name="Widget.AppCompat.Spinner.Underlined" parent="Base.Widget.AppCompat.Spinner.Underlined"/><style name="Widget.AppCompat.TextView" parent="Base.Widget.AppCompat.TextView"/><style name="Widget.AppCompat.TextView.SpinnerItem" parent="Base.Widget.AppCompat.TextView.SpinnerItem"/><style name="Widget.AppCompat.Toolbar" parent="Base.Widget.AppCompat.Toolbar"/><style name="Widget.AppCompat.Toolbar.Button.Navigation" parent="Base.Widget.AppCompat.Toolbar.Button.Navigation"/><declare-styleable name="ActionBar">
  1198. <attr name="navigationMode">
  1199. <enum name="normal" value="0"/>
  1200. <enum name="listMode" value="1"/>
  1201. <enum name="tabMode" value="2"/>
  1202. </attr>
  1203. <attr name="displayOptions">
  1204. <flag name="none" value="0"/>
  1205. <flag name="useLogo" value="0x1"/>
  1206. <flag name="showHome" value="0x2"/>
  1207. <flag name="homeAsUp" value="0x4"/>
  1208. <flag name="showTitle" value="0x8"/>
  1209. <flag name="showCustom" value="0x10"/>
  1210. <flag name="disableHome" value="0x20"/>
  1211. </attr>
  1212. <attr name="title"/>
  1213. <attr format="string" name="subtitle"/>
  1214. <attr format="reference" name="titleTextStyle"/>
  1215. <attr format="reference" name="subtitleTextStyle"/>
  1216. <attr format="reference" name="icon"/>
  1217. <attr format="reference" name="logo"/>
  1218. <attr format="reference" name="divider"/>
  1219. <attr format="reference" name="background"/>
  1220. <attr format="reference|color" name="backgroundStacked"/>
  1221. <attr format="reference|color" name="backgroundSplit"/>
  1222. <attr format="reference" name="customNavigationLayout"/>
  1223. <attr name="height"/>
  1224. <attr format="reference" name="homeLayout"/>
  1225. <attr format="reference" name="progressBarStyle"/>
  1226. <attr format="reference" name="indeterminateProgressStyle"/>
  1227. <attr format="dimension" name="progressBarPadding"/>
  1228. <attr name="homeAsUpIndicator"/>
  1229. <attr format="dimension" name="itemPadding"/>
  1230. <attr format="boolean" name="hideOnContentScroll"/>
  1231. <attr format="dimension" name="contentInsetStart"/>
  1232. <attr format="dimension" name="contentInsetEnd"/>
  1233. <attr format="dimension" name="contentInsetLeft"/>
  1234. <attr format="dimension" name="contentInsetRight"/>
  1235. <attr format="dimension" name="contentInsetStartWithNavigation"/>
  1236. <attr format="dimension" name="contentInsetEndWithActions"/>
  1237. <attr format="dimension" name="elevation"/>
  1238. <attr format="reference" name="popupTheme"/>
  1239. </declare-styleable><declare-styleable name="ActionBarLayout">
  1240. <attr name="android:layout_gravity"/>
  1241. </declare-styleable><declare-styleable name="ActionMenuItemView">
  1242. <attr name="android:minWidth"/>
  1243. </declare-styleable><declare-styleable name="ActionMenuView">
  1244. </declare-styleable><declare-styleable name="ActionMode">
  1245. <attr name="titleTextStyle"/>
  1246. <attr name="subtitleTextStyle"/>
  1247. <attr name="background"/>
  1248. <attr name="backgroundSplit"/>
  1249. <attr name="height"/>
  1250. <attr format="reference" name="closeItemLayout"/>
  1251. </declare-styleable><declare-styleable name="ActivityChooserView">
  1252. <attr format="string" name="initialActivityCount"/>
  1253. <attr format="reference" name="expandActivityOverflowButtonDrawable"/>
  1254. </declare-styleable><declare-styleable name="AlertDialog">
  1255. <attr name="android:layout"/>
  1256. <attr format="reference" name="buttonPanelSideLayout"/>
  1257. <attr format="reference" name="listLayout"/>
  1258. <attr format="reference" name="multiChoiceItemLayout"/>
  1259. <attr format="reference" name="singleChoiceItemLayout"/>
  1260. <attr format="reference" name="listItemLayout"/>
  1261. <attr format="boolean" name="showTitle"/>
  1262. <attr format="dimension" name="buttonIconDimen"/>
  1263. </declare-styleable><declare-styleable name="AppCompatImageView">
  1264. <attr name="android:src"/>
  1265. <attr format="reference" name="srcCompat"/>
  1266. <attr format="color" name="tint"/>
  1267. <attr name="tintMode">
  1268. <enum name="src_over" value="3"/>
  1269. <enum name="src_in" value="5"/>
  1270. <enum name="src_atop" value="9"/>
  1271. <enum name="multiply" value="14"/>
  1272. <enum name="screen" value="15"/>
  1273. <enum name="add" value="16"/>
  1274. </attr>
  1275. </declare-styleable><declare-styleable name="AppCompatSeekBar">
  1276. <attr name="android:thumb"/>
  1277. <attr format="reference" name="tickMark"/>
  1278. <attr format="color" name="tickMarkTint"/>
  1279. <attr name="tickMarkTintMode">
  1280. <enum name="src_over" value="3"/>
  1281. <enum name="src_in" value="5"/>
  1282. <enum name="src_atop" value="9"/>
  1283. <enum name="multiply" value="14"/>
  1284. <enum name="screen" value="15"/>
  1285. <enum name="add" value="16"/>
  1286. </attr>
  1287. </declare-styleable><declare-styleable name="AppCompatTextHelper">
  1288. <attr name="android:drawableLeft"/>
  1289. <attr name="android:drawableTop"/>
  1290. <attr name="android:drawableRight"/>
  1291. <attr name="android:drawableBottom"/>
  1292. <attr name="android:drawableStart"/>
  1293. <attr name="android:drawableEnd"/>
  1294. <attr name="android:textAppearance"/>
  1295. </declare-styleable><declare-styleable name="AppCompatTextView">
  1296. <attr format="reference|boolean" name="textAllCaps"/>
  1297. <attr format="string" name="textLocale"/>
  1298. <attr name="android:textAppearance"/>
  1299. <attr format="enum" name="autoSizeTextType">
  1300. <enum name="none" value="0"/>
  1301. <enum name="uniform" value="1"/>
  1302. </attr>
  1303. <attr format="dimension" name="autoSizeStepGranularity"/>
  1304. <attr format="reference" name="autoSizePresetSizes"/>
  1305. <attr format="dimension" name="autoSizeMinTextSize"/>
  1306. <attr format="dimension" name="autoSizeMaxTextSize"/>
  1307. <attr format="string" name="fontFamily"/>
  1308. <attr format="dimension" name="lineHeight"/>
  1309. <attr format="dimension" name="firstBaselineToTopHeight"/>
  1310. <attr format="dimension" name="lastBaselineToBottomHeight"/>
  1311. <attr format="string" name="fontVariationSettings"/>
  1312. <attr format="reference" name="drawableLeftCompat"/>
  1313. <attr format="reference" name="drawableTopCompat"/>
  1314. <attr format="reference" name="drawableRightCompat"/>
  1315. <attr format="reference" name="drawableBottomCompat"/>
  1316. <attr format="reference" name="drawableStartCompat"/>
  1317. <attr format="reference" name="drawableEndCompat"/>
  1318. <attr format="color" name="drawableTint"/>
  1319. <attr name="drawableTintMode">
  1320. <enum name="src_over" value="3"/>
  1321. <enum name="src_in" value="5"/>
  1322. <enum name="src_atop" value="9"/>
  1323. <enum name="multiply" value="14"/>
  1324. <enum name="screen" value="15"/>
  1325. <enum name="add" value="16"/>
  1326. </attr>
  1327. </declare-styleable><declare-styleable name="AppCompatTheme">
  1328. <eat-comment/>
  1329. <attr format="boolean" name="windowActionBar"/>
  1330. <attr format="boolean" name="windowNoTitle"/>
  1331. <attr format="boolean" name="windowActionBarOverlay"/>
  1332. <attr format="boolean" name="windowActionModeOverlay"/>
  1333. <attr format="dimension|fraction" name="windowFixedWidthMajor"/>
  1334. <attr format="dimension|fraction" name="windowFixedHeightMinor"/>
  1335. <attr format="dimension|fraction" name="windowFixedWidthMinor"/>
  1336. <attr format="dimension|fraction" name="windowFixedHeightMajor"/>
  1337. <attr format="dimension|fraction" name="windowMinWidthMajor"/>
  1338. <attr format="dimension|fraction" name="windowMinWidthMinor"/>
  1339. <attr name="android:windowIsFloating"/>
  1340. <attr name="android:windowAnimationStyle"/>
  1341. <eat-comment/>
  1342. <attr format="reference" name="actionBarTabStyle"/>
  1343. <attr format="reference" name="actionBarTabBarStyle"/>
  1344. <attr format="reference" name="actionBarTabTextStyle"/>
  1345. <attr format="reference" name="actionOverflowButtonStyle"/>
  1346. <attr format="reference" name="actionOverflowMenuStyle"/>
  1347. <attr format="reference" name="actionBarPopupTheme"/>
  1348. <attr format="reference" name="actionBarStyle"/>
  1349. <attr format="reference" name="actionBarSplitStyle"/>
  1350. <attr format="reference" name="actionBarTheme"/>
  1351. <attr format="reference" name="actionBarWidgetTheme"/>
  1352. <attr format="dimension" name="actionBarSize">
  1353. <enum name="wrap_content" value="0"/>
  1354. </attr>
  1355. <attr format="reference" name="actionBarDivider"/>
  1356. <attr format="reference" name="actionBarItemBackground"/>
  1357. <attr format="reference" name="actionMenuTextAppearance"/>
  1358. <attr format="color|reference" name="actionMenuTextColor"/>
  1359. <eat-comment/>
  1360. <attr format="reference" name="actionModeStyle"/>
  1361. <attr format="reference" name="actionModeCloseButtonStyle"/>
  1362. <attr format="reference" name="actionModeBackground"/>
  1363. <attr format="reference" name="actionModeSplitBackground"/>
  1364. <attr format="reference" name="actionModeCloseDrawable"/>
  1365. <attr format="reference" name="actionModeCutDrawable"/>
  1366. <attr format="reference" name="actionModeCopyDrawable"/>
  1367. <attr format="reference" name="actionModePasteDrawable"/>
  1368. <attr format="reference" name="actionModeSelectAllDrawable"/>
  1369. <attr format="reference" name="actionModeShareDrawable"/>
  1370. <attr format="reference" name="actionModeFindDrawable"/>
  1371. <attr format="reference" name="actionModeWebSearchDrawable"/>
  1372. <attr format="reference" name="actionModePopupWindowStyle"/>
  1373. <eat-comment/>
  1374. <attr format="reference" name="textAppearanceLargePopupMenu"/>
  1375. <attr format="reference" name="textAppearanceSmallPopupMenu"/>
  1376. <attr format="reference" name="textAppearancePopupMenuHeader"/>
  1377. <eat-comment/>
  1378. <attr format="reference" name="dialogTheme"/>
  1379. <attr format="dimension" name="dialogPreferredPadding"/>
  1380. <attr format="reference" name="listDividerAlertDialog"/>
  1381. <attr format="dimension" name="dialogCornerRadius"/>
  1382. <eat-comment/>
  1383. <attr format="reference" name="actionDropDownStyle"/>
  1384. <attr format="dimension" name="dropdownListPreferredItemHeight"/>
  1385. <attr format="reference" name="spinnerDropDownItemStyle"/>
  1386. <attr format="reference" name="homeAsUpIndicator"/>
  1387. <attr format="reference" name="actionButtonStyle"/>
  1388. <attr format="reference" name="buttonBarStyle"/>
  1389. <attr format="reference" name="buttonBarButtonStyle"/>
  1390. <attr format="reference" name="selectableItemBackground"/>
  1391. <attr format="reference" name="selectableItemBackgroundBorderless"/>
  1392. <attr format="reference" name="borderlessButtonStyle"/>
  1393. <attr format="reference" name="dividerVertical"/>
  1394. <attr format="reference" name="dividerHorizontal"/>
  1395. <attr format="reference" name="activityChooserViewStyle"/>
  1396. <attr format="reference" name="toolbarStyle"/>
  1397. <attr format="reference" name="toolbarNavigationButtonStyle"/>
  1398. <attr format="reference" name="popupMenuStyle"/>
  1399. <attr format="reference" name="popupWindowStyle"/>
  1400. <attr format="reference|color" name="editTextColor"/>
  1401. <attr format="reference" name="editTextBackground"/>
  1402. <attr format="reference" name="imageButtonStyle"/>
  1403. <eat-comment/>
  1404. <attr format="reference" name="textAppearanceSearchResultTitle"/>
  1405. <attr format="reference" name="textAppearanceSearchResultSubtitle"/>
  1406. <attr format="reference|color" name="textColorSearchUrl"/>
  1407. <attr format="reference" name="searchViewStyle"/>
  1408. <eat-comment/>
  1409. <attr format="dimension" name="listPreferredItemHeight"/>
  1410. <attr format="dimension" name="listPreferredItemHeightSmall"/>
  1411. <attr format="dimension" name="listPreferredItemHeightLarge"/>
  1412. <attr format="dimension" name="listPreferredItemPaddingLeft"/>
  1413. <attr format="dimension" name="listPreferredItemPaddingRight"/>
  1414. <attr format="dimension" name="listPreferredItemPaddingStart"/>
  1415. <attr format="dimension" name="listPreferredItemPaddingEnd"/>
  1416. <attr format="reference" name="dropDownListViewStyle"/>
  1417. <attr format="reference" name="listPopupWindowStyle"/>
  1418. <attr format="reference" name="textAppearanceListItem"/>
  1419. <attr format="reference" name="textAppearanceListItemSecondary"/>
  1420. <attr format="reference" name="textAppearanceListItemSmall"/>
  1421. <eat-comment/>
  1422. <attr format="reference" name="panelBackground"/>
  1423. <attr format="dimension" name="panelMenuListWidth"/>
  1424. <attr format="reference" name="panelMenuListTheme"/>
  1425. <attr format="reference" name="listChoiceBackgroundIndicator"/>
  1426. <eat-comment/>
  1427. <attr format="color" name="colorPrimary"/>
  1428. <attr format="color" name="colorPrimaryDark"/>
  1429. <attr format="color" name="colorAccent"/>
  1430. <attr format="color" name="colorControlNormal"/>
  1431. <attr format="color" name="colorControlActivated"/>
  1432. <attr format="color" name="colorControlHighlight"/>
  1433. <attr format="color" name="colorButtonNormal"/>
  1434. <attr format="color" name="colorSwitchThumbNormal"/>
  1435. <attr format="reference" name="controlBackground"/>
  1436. <attr format="color" name="colorBackgroundFloating"/>
  1437. <eat-comment/>
  1438. <attr format="reference" name="alertDialogStyle"/>
  1439. <attr format="reference" name="alertDialogButtonGroupStyle"/>
  1440. <attr format="boolean" name="alertDialogCenterButtons"/>
  1441. <attr format="reference" name="alertDialogTheme"/>
  1442. <attr format="reference|color" name="textColorAlertDialogListItem"/>
  1443. <attr format="reference" name="buttonBarPositiveButtonStyle"/>
  1444. <attr format="reference" name="buttonBarNegativeButtonStyle"/>
  1445. <attr format="reference" name="buttonBarNeutralButtonStyle"/>
  1446. <eat-comment/>
  1447. <attr format="reference" name="autoCompleteTextViewStyle"/>
  1448. <attr format="reference" name="buttonStyle"/>
  1449. <attr format="reference" name="buttonStyleSmall"/>
  1450. <attr format="reference" name="checkboxStyle"/>
  1451. <attr format="reference" name="checkedTextViewStyle"/>
  1452. <attr format="reference" name="editTextStyle"/>
  1453. <attr format="reference" name="radioButtonStyle"/>
  1454. <attr format="reference" name="ratingBarStyle"/>
  1455. <attr format="reference" name="ratingBarStyleIndicator"/>
  1456. <attr format="reference" name="ratingBarStyleSmall"/>
  1457. <attr format="reference" name="seekBarStyle"/>
  1458. <attr format="reference" name="spinnerStyle"/>
  1459. <attr format="reference" name="switchStyle"/>
  1460. <attr format="reference" name="listMenuViewStyle"/>
  1461. <eat-comment/>
  1462. <attr format="reference" name="tooltipFrameBackground"/>
  1463. <attr format="reference|color" name="tooltipForegroundColor"/>
  1464. <attr format="reference|color" name="colorError"/>
  1465. <attr format="string" name="viewInflaterClass"/>
  1466. <eat-comment/>
  1467. <attr format="reference" name="listChoiceIndicatorMultipleAnimated"/>
  1468. <attr format="reference" name="listChoiceIndicatorSingleAnimated"/>
  1469. </declare-styleable><declare-styleable name="ButtonBarLayout">
  1470. <attr format="boolean" name="allowStacking"/>
  1471. </declare-styleable><declare-styleable name="CompoundButton">
  1472. <attr name="android:button"/>
  1473. <attr format="reference" name="buttonCompat"/>
  1474. <attr format="color" name="buttonTint"/>
  1475. <attr name="buttonTintMode">
  1476. <enum name="src_over" value="3"/>
  1477. <enum name="src_in" value="5"/>
  1478. <enum name="src_atop" value="9"/>
  1479. <enum name="multiply" value="14"/>
  1480. <enum name="screen" value="15"/>
  1481. <enum name="add" value="16"/>
  1482. </attr>
  1483. </declare-styleable><declare-styleable name="DrawerArrowToggle">
  1484. <attr format="color" name="color"/>
  1485. <attr format="boolean" name="spinBars"/>
  1486. <attr format="dimension" name="drawableSize"/>
  1487. <attr format="dimension" name="gapBetweenBars"/>
  1488. <attr format="dimension" name="arrowHeadLength"/>
  1489. <attr format="dimension" name="arrowShaftLength"/>
  1490. <attr format="dimension" name="barLength"/>
  1491. <attr format="dimension" name="thickness"/>
  1492. </declare-styleable><declare-styleable name="LinearLayoutCompat">
  1493. <attr name="android:orientation"/>
  1494. <attr name="android:gravity"/>
  1495. <attr name="android:baselineAligned"/>
  1496. <attr name="android:baselineAlignedChildIndex"/>
  1497. <attr name="android:weightSum"/>
  1498. <attr format="boolean" name="measureWithLargestChild"/>
  1499. <attr name="divider"/>
  1500. <attr name="showDividers">
  1501. <flag name="none" value="0"/>
  1502. <flag name="beginning" value="1"/>
  1503. <flag name="middle" value="2"/>
  1504. <flag name="end" value="4"/>
  1505. </attr>
  1506. <attr format="dimension" name="dividerPadding"/>
  1507. </declare-styleable><declare-styleable name="LinearLayoutCompat_Layout">
  1508. <attr name="android:layout_width"/>
  1509. <attr name="android:layout_height"/>
  1510. <attr name="android:layout_weight"/>
  1511. <attr name="android:layout_gravity"/>
  1512. </declare-styleable><declare-styleable name="ListPopupWindow">
  1513. <attr name="android:dropDownVerticalOffset"/>
  1514. <attr name="android:dropDownHorizontalOffset"/>
  1515. </declare-styleable><declare-styleable name="MenuGroup">
  1516. <attr name="android:id"/>
  1517. <attr name="android:menuCategory"/>
  1518. <attr name="android:orderInCategory"/>
  1519. <attr name="android:checkableBehavior"/>
  1520. <attr name="android:visible"/>
  1521. <attr name="android:enabled"/>
  1522. </declare-styleable><declare-styleable name="MenuItem">
  1523. <attr name="android:id"/>
  1524. <attr name="android:menuCategory"/>
  1525. <attr name="android:orderInCategory"/>
  1526. <attr name="android:title"/>
  1527. <attr name="android:titleCondensed"/>
  1528. <attr name="android:icon"/>
  1529. <attr name="android:alphabeticShortcut"/>
  1530. <attr name="alphabeticModifiers">
  1531. <flag name="META" value="0x10000"/>
  1532. <flag name="CTRL" value="0x1000"/>
  1533. <flag name="ALT" value="0x02"/>
  1534. <flag name="SHIFT" value="0x1"/>
  1535. <flag name="SYM" value="0x4"/>
  1536. <flag name="FUNCTION" value="0x8"/>
  1537. </attr>
  1538. <attr name="android:numericShortcut"/>
  1539. <attr name="numericModifiers">
  1540. <flag name="META" value="0x10000"/>
  1541. <flag name="CTRL" value="0x1000"/>
  1542. <flag name="ALT" value="0x02"/>
  1543. <flag name="SHIFT" value="0x1"/>
  1544. <flag name="SYM" value="0x4"/>
  1545. <flag name="FUNCTION" value="0x8"/>
  1546. </attr>
  1547. <attr name="android:checkable"/>
  1548. <attr name="android:checked"/>
  1549. <attr name="android:visible"/>
  1550. <attr name="android:enabled"/>
  1551. <attr name="android:onClick"/>
  1552. <attr name="showAsAction">
  1553. <flag name="never" value="0"/>
  1554. <flag name="ifRoom" value="1"/>
  1555. <flag name="always" value="2"/>
  1556. <flag name="withText" value="4"/>
  1557. <flag name="collapseActionView" value="8"/>
  1558. </attr>
  1559. <attr format="reference" name="actionLayout"/>
  1560. <attr format="string" name="actionViewClass"/>
  1561. <attr format="string" name="actionProviderClass"/>
  1562. <attr format="string" name="contentDescription"/>
  1563. <attr format="string" name="tooltipText"/>
  1564. <attr format="color" name="iconTint"/>
  1565. <attr name="iconTintMode">
  1566. <enum name="src_over" value="3"/>
  1567. <enum name="src_in" value="5"/>
  1568. <enum name="src_atop" value="9"/>
  1569. <enum name="multiply" value="14"/>
  1570. <enum name="screen" value="15"/>
  1571. <enum name="add" value="16"/>
  1572. </attr>
  1573. </declare-styleable><declare-styleable name="MenuView">
  1574. <attr name="android:itemTextAppearance"/>
  1575. <attr name="android:horizontalDivider"/>
  1576. <attr name="android:verticalDivider"/>
  1577. <attr name="android:headerBackground"/>
  1578. <attr name="android:itemBackground"/>
  1579. <attr name="android:windowAnimationStyle"/>
  1580. <attr name="android:itemIconDisabledAlpha"/>
  1581. <attr format="boolean" name="preserveIconSpacing"/>
  1582. <attr format="reference" name="subMenuArrow"/>
  1583. </declare-styleable><declare-styleable name="PopupWindow">
  1584. <attr format="boolean" name="overlapAnchor"/>
  1585. <attr name="android:popupBackground"/>
  1586. <attr name="android:popupAnimationStyle"/>
  1587. </declare-styleable><declare-styleable name="PopupWindowBackgroundState">
  1588. <attr format="boolean" name="state_above_anchor"/>
  1589. </declare-styleable><declare-styleable name="RecycleListView">
  1590. <attr format="dimension" name="paddingBottomNoButtons"/>
  1591. <attr format="dimension" name="paddingTopNoTitle"/>
  1592. </declare-styleable><declare-styleable name="SearchView">
  1593. <attr format="reference" name="layout"/>
  1594. <attr format="boolean" name="iconifiedByDefault"/>
  1595. <attr name="android:maxWidth"/>
  1596. <attr format="string" name="queryHint"/>
  1597. <attr format="string" name="defaultQueryHint"/>
  1598. <attr name="android:imeOptions"/>
  1599. <attr name="android:inputType"/>
  1600. <attr format="reference" name="closeIcon"/>
  1601. <attr format="reference" name="goIcon"/>
  1602. <attr format="reference" name="searchIcon"/>
  1603. <attr format="reference" name="searchHintIcon"/>
  1604. <attr format="reference" name="voiceIcon"/>
  1605. <attr format="reference" name="commitIcon"/>
  1606. <attr format="reference" name="suggestionRowLayout"/>
  1607. <attr format="reference" name="queryBackground"/>
  1608. <attr format="reference" name="submitBackground"/>
  1609. <attr name="android:focusable"/>
  1610. </declare-styleable><declare-styleable name="Spinner">
  1611. <attr name="android:prompt"/>
  1612. <attr name="popupTheme"/>
  1613. <attr name="android:popupBackground"/>
  1614. <attr name="android:dropDownWidth"/>
  1615. <attr name="android:entries"/>
  1616. </declare-styleable><declare-styleable name="SwitchCompat">
  1617. <attr name="android:thumb"/>
  1618. <attr format="color" name="thumbTint"/>
  1619. <attr name="thumbTintMode">
  1620. <enum name="src_over" value="3"/>
  1621. <enum name="src_in" value="5"/>
  1622. <enum name="src_atop" value="9"/>
  1623. <enum name="multiply" value="14"/>
  1624. <enum name="screen" value="15"/>
  1625. <enum name="add" value="16"/>
  1626. </attr>
  1627. <attr format="reference" name="track"/>
  1628. <attr format="color" name="trackTint"/>
  1629. <attr name="trackTintMode">
  1630. <enum name="src_over" value="3"/>
  1631. <enum name="src_in" value="5"/>
  1632. <enum name="src_atop" value="9"/>
  1633. <enum name="multiply" value="14"/>
  1634. <enum name="screen" value="15"/>
  1635. <enum name="add" value="16"/>
  1636. </attr>
  1637. <attr name="android:textOn"/>
  1638. <attr name="android:textOff"/>
  1639. <attr format="dimension" name="thumbTextPadding"/>
  1640. <attr format="reference" name="switchTextAppearance"/>
  1641. <attr format="dimension" name="switchMinWidth"/>
  1642. <attr format="dimension" name="switchPadding"/>
  1643. <attr format="boolean" name="splitTrack"/>
  1644. <attr format="boolean" name="showText"/>
  1645. </declare-styleable><declare-styleable name="TextAppearance">
  1646. <attr name="android:textSize"/>
  1647. <attr name="android:textColor"/>
  1648. <attr name="android:textColorHint"/>
  1649. <attr name="android:textColorLink"/>
  1650. <attr name="android:textStyle"/>
  1651. <attr name="android:textFontWeight"/>
  1652. <attr name="android:typeface"/>
  1653. <attr name="android:fontFamily"/>
  1654. <attr name="fontFamily"/>
  1655. <attr name="textAllCaps"/>
  1656. <attr name="textLocale"/>
  1657. <attr name="android:shadowColor"/>
  1658. <attr name="android:shadowDy"/>
  1659. <attr name="android:shadowDx"/>
  1660. <attr name="android:shadowRadius"/>
  1661. <attr name="fontVariationSettings"/>
  1662. </declare-styleable><declare-styleable name="Toolbar">
  1663. <attr format="reference" name="titleTextAppearance"/>
  1664. <attr format="reference" name="subtitleTextAppearance"/>
  1665. <attr name="title"/>
  1666. <attr name="subtitle"/>
  1667. <attr name="android:gravity"/>
  1668. <attr format="dimension" name="titleMargin"/>
  1669. <attr format="dimension" name="titleMarginStart"/>
  1670. <attr format="dimension" name="titleMarginEnd"/>
  1671. <attr format="dimension" name="titleMarginTop"/>
  1672. <attr format="dimension" name="titleMarginBottom"/>
  1673. <attr format="dimension" name="titleMargins"/>
  1674. <attr name="contentInsetStart"/>
  1675. <attr name="contentInsetEnd"/>
  1676. <attr name="contentInsetLeft"/>
  1677. <attr name="contentInsetRight"/>
  1678. <attr name="contentInsetStartWithNavigation"/>
  1679. <attr name="contentInsetEndWithActions"/>
  1680. <attr format="dimension" name="maxButtonHeight"/>
  1681. <attr name="buttonGravity">
  1682. <flag name="center_vertical" value="0x10"/>
  1683. <flag name="top" value="0x30"/>
  1684. <flag name="bottom" value="0x50"/>
  1685. </attr>
  1686. <attr format="reference" name="collapseIcon"/>
  1687. <attr format="string" name="collapseContentDescription"/>
  1688. <attr name="popupTheme"/>
  1689. <attr format="reference" name="navigationIcon"/>
  1690. <attr format="string" name="navigationContentDescription"/>
  1691. <attr name="logo"/>
  1692. <attr format="string" name="logoDescription"/>
  1693. <attr format="color" name="titleTextColor"/>
  1694. <attr format="color" name="subtitleTextColor"/>
  1695. <attr name="android:minHeight"/>
  1696. <attr format="reference" name="menu"/>
  1697. </declare-styleable><declare-styleable name="View">
  1698. <attr format="dimension" name="paddingStart"/>
  1699. <attr format="dimension" name="paddingEnd"/>
  1700. <attr name="android:focusable"/>
  1701. <attr format="reference" name="theme"/>
  1702. <attr name="android:theme"/>
  1703. </declare-styleable><declare-styleable name="ViewBackgroundHelper">
  1704. <attr name="android:background"/>
  1705. <attr format="color" name="backgroundTint"/>
  1706. <attr name="backgroundTintMode">
  1707. <enum name="src_over" value="3"/>
  1708. <enum name="src_in" value="5"/>
  1709. <enum name="src_atop" value="9"/>
  1710. <enum name="multiply" value="14"/>
  1711. <enum name="screen" value="15"/>
  1712. <enum name="add" value="16"/>
  1713. </attr>
  1714. </declare-styleable><declare-styleable name="ViewStubCompat">
  1715. <attr name="android:layout"/>
  1716. <attr name="android:inflatedId"/>
  1717. <attr name="android:id"/>
  1718. </declare-styleable></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-af\values-af.xml" qualifiers="af"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Gaan na tuisskerm"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Gaan op"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Nog opsies"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Klaar"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Sien alles"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Kies \'n program"</string><string msgid="3403923230105792483" name="abc_capital_off">"AF"</string><string msgid="7831734969929204599" name="abc_capital_on">"AAN"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funksie+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"spasiebalk"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Simbool+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Kieslys+"</string><string msgid="940844115270746197" name="abc_search_hint">"Soek …"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Vee navraag uit"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Soektognavraag"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Soek"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Dien navraag in"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Stemsoektog"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Deel met"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Deel met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Vou in"</string><string msgid="730395136688082741" name="search_menu_title">"Soek"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-am\values-am.xml" qualifiers="am"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"መነሻ ዳስስ"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ወደ ላይ ያስሱ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ተከናውኗል"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"አንድ መተግበሪያ ይምረጡ"</string><string msgid="3403923230105792483" name="abc_capital_off">"አጥፋ"</string><string msgid="7831734969929204599" name="abc_capital_on">"አብራ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ሰርዝ"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"ክፍተት"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ይፈልጉ…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"የፍለጋ መጠይቅ"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ፍለጋ"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"መጠይቅ አስገባ"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"የድምጽ ፍለጋ"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"አጋራ በ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"ለ<ns1:g id="APPLICATION_NAME">%s</ns1:g> አጋራ"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ሰብስብ"</string><string msgid="730395136688082741" name="search_menu_title">"ፍለጋ"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ar\values-ar.xml" qualifiers="ar"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"التوجه إلى المنزل"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"خيارات أكثر"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"تم"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"عرض الكل"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string><string msgid="3403923230105792483" name="abc_capital_off">"إيقاف"</string><string msgid="7831734969929204599" name="abc_capital_on">"تفعيل"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"حذف"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"فضاء"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"القائمة+"</string><string msgid="940844115270746197" name="abc_search_hint">"بحث…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"محو طلب البحث"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"طلب بحث"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"البحث"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"إرسال طلب البحث"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"بحث صوتي"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"مشاركة مع"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"مشاركة مع <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"تصغير"</string><string msgid="730395136688082741" name="search_menu_title">"البحث"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-as\values-as.xml" qualifiers="as"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"গৃহ পৃষ্ঠালৈ যাওক"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ওপৰলৈ যাওক"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"অধিক বিকল্প"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"সম্পন্ন হ’ল"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"সকলো চাওক"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"কোনো এপ্ বাছনি কৰক"</string><string msgid="3403923230105792483" name="abc_capital_off">"অফ"</string><string msgid="7831734969929204599" name="abc_capital_on">"অন"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"সন্ধান কৰক…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"সন্ধান কৰা প্ৰশ্ন মচক"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"সন্ধান কৰা প্ৰশ্ন"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"সন্ধান"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"প্ৰশ্ন দাখিল কৰক"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ৰ জৰিয়তে শ্বেয়াৰ কৰক"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"সংকোচন কৰক"</string><string msgid="730395136688082741" name="search_menu_title">"সন্ধান"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-az\values-az.xml" qualifiers="az"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Əsas səhifəyə keçin"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Yuxarı keçin"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Digər seçimlər"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Hazırdır"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string><string msgid="3403923230105792483" name="abc_capital_off">"DEAKTİV"</string><string msgid="7831734969929204599" name="abc_capital_on">"AKTİV"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"silin"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"daxil olun"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funksiya+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menyu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Axtarış..."</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Sorğunu silin"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Axtarış sorğusu"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Axtarın"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Sorğunu göndərin"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Səsli axtarış"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Paylaşın"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ilə paylaşın"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Yığcamlaşdırın"</string><string msgid="730395136688082741" name="search_menu_title">"Axtarın"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-b+sr+Latn\values-b+sr+Latn.xml" qualifiers="b+sr+Latn"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Idite na početnu"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Idite nagore"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Još opcija"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gotovo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Izaberite aplikaciju"</string><string msgid="3403923230105792483" name="abc_capital_off">"ISKLJUČENO"</string><string msgid="7831734969929204599" name="abc_capital_on">"UKLJUČENO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"taster za razmak"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Pretražite…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Obrišite upit"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Pretražite upit"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Pretražite"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Pošaljite upit"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Glasovna pretraga"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Delite pomoću"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Delite pomoću aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Skupi"</string><string msgid="730395136688082741" name="search_menu_title">"Pretražite"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-be\values-be.xml" qualifiers="be"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Перайсці ўверх"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Гатова"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Паказаць усе"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Выберыце праграму"</string><string msgid="3403923230105792483" name="abc_capital_off">"ВЫКЛ."</string><string msgid="7831734969929204599" name="abc_capital_on">"УКЛ."</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Прабел"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Меню +"</string><string msgid="940844115270746197" name="abc_search_hint">"Пошук…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Выдаліць запыт"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Пошукавы запыт"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Пошук"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Адправіць запыт"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Галасавы пошук"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Абагуліць праз"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Абагуліць праз праграму \"<ns1:g id="APPLICATION_NAME">%s</ns1:g>\""</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Згарнуць"</string><string msgid="730395136688082741" name="search_menu_title">"Пошук"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-bg\values-bg.xml" qualifiers="bg"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Навигиране към началния екран"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Навигиране нагоре"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Още опции"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Готово"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Преглед на всички"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Изберете приложение"</string><string msgid="3403923230105792483" name="abc_capital_off">"ИЗКЛ."</string><string msgid="7831734969929204599" name="abc_capital_on">"ВКЛ."</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"клавиша за интервал"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Търсете…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Изчистване на заявката"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Заявка за търсене"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Търсене"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Изпращане на заявката"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Гласово търсене"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Споделяне със:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Споделяне със: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Свиване"</string><string msgid="730395136688082741" name="search_menu_title">"Търсене"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-bn\values-bn.xml" qualifiers="bn"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"হোমে নেভিগেট করুন"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"উপরে নেভিগেট করুন"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"আরও বিকল্প"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"হয়ে গেছে"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"সবগুলি দেখুন"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"একটি অ্যাপ বেছে নিন"</string><string msgid="3403923230105792483" name="abc_capital_off">"বন্ধ আছে"</string><string msgid="7831734969929204599" name="abc_capital_on">"চালু করুন"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"মুছুন"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"সার্চ করুন…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"কোয়েরি মুছে ফেলুন"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"সার্চ কোয়েরি"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"সার্চ করুন"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"কোয়েরি জমা দিন"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ভয়েস সার্চ করুন"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"শেয়ার করুন"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-এর সাথে শেয়ার করুন"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string><string msgid="730395136688082741" name="search_menu_title">"সার্চ করুন"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-bs\values-bs.xml" qualifiers="bs"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Vratite se na početnu stranicu"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Idi gore"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Više opcija"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gotovo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string><string msgid="3403923230105792483" name="abc_capital_off">"ISKLJUČENO"</string><string msgid="7831734969929204599" name="abc_capital_on">"UKLJUČENO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"razmak"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Pretražite..."</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Obriši upit"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Pretraži upit"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Pretraži"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Dijeli sa"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Dijeli putem aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Suzi"</string><string msgid="730395136688082741" name="search_menu_title">"Pretražite"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ca\values-ca.xml" qualifiers="ca"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navega cap amunt"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Més opcions"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Fet"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Mostra-ho tot"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESACTIVA"</string><string msgid="7831734969929204599" name="abc_capital_on">"ACTIVA"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Supr"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Retorn"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funció+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Maj+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Espai"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menú+"</string><string msgid="940844115270746197" name="abc_search_hint">"Cerca…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Esborra la consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Consulta de cerca"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Cerca"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Envia la consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Cerca per veu"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Comparteix amb"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Comparteix amb <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Replega"</string><string msgid="730395136688082741" name="search_menu_title">"Cerca"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-cs\values-cs.xml" qualifiers="cs"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Přejít na plochu"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Přejít nahoru"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Více možností"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Hotovo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string><string msgid="3403923230105792483" name="abc_capital_off">"VYP"</string><string msgid="7831734969929204599" name="abc_capital_on">"ZAP"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"mezerník"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Vyhledat…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Smazat dotaz"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Dotaz pro vyhledávání"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Hledat"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Odeslat dotaz"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Sdílet s"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Sdílet s aplikací <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Sbalit"</string><string msgid="730395136688082741" name="search_menu_title">"Hledat"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-da\values-da.xml" qualifiers="da"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Find hjem"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Gå op"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Flere valgmuligheder"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Udfør"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Vælg en app"</string><string msgid="3403923230105792483" name="abc_capital_off">"FRA"</string><string msgid="7831734969929204599" name="abc_capital_on">"TIL"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"slet"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"mellemrum"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Søg…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Ryd forespørgsel"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Søgeforespørgsel"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Søg"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Indsend forespørgsel"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Talesøgning"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="730395136688082741" name="search_menu_title">"Søg"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-de\values-de.xml" qualifiers="de"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Zur Startseite"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Nach oben"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Weitere Optionen"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Fertig"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Alle anzeigen"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"App auswählen"</string><string msgid="3403923230105792483" name="abc_capital_off">"AUS"</string><string msgid="7831734969929204599" name="abc_capital_on">"AN"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Strg +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Löschen"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Eingabetaste"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funktionstaste +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta-Taste +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Umschalttaste +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Leertaste"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym-Taste +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menütaste +"</string><string msgid="940844115270746197" name="abc_search_hint">"Suchen…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Suchanfrage löschen"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Suchanfrage"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Suche"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Anfrage senden"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Sprachsuche"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Teilen mit"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Mit <ns1:g id="APPLICATION_NAME">%s</ns1:g> teilen"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Minimieren"</string><string msgid="730395136688082741" name="search_menu_title">"Suche"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-el\values-el.xml" qualifiers="el"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Τέλος"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Εμφάνιση όλων"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Επιλέξτε μια εφαρμογή"</string><string msgid="3403923230105792483" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"διάστημα"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Αναζήτηση…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Αναζήτηση"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Κοινοποίηση σε"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Κοινοποίηση στην εφαρμογή <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string><string msgid="730395136688082741" name="search_menu_title">"Αναζήτηση"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-en-rAU\values-en-rAU.xml" qualifiers="en-rAU"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"More options"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Done"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="3403923230105792483" name="abc_capital_off">"OFF"</string><string msgid="7831734969929204599" name="abc_capital_on">"ON"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Search…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Clear query"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Search query"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Search"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Submit query"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Voice search"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="730395136688082741" name="search_menu_title">"Search"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-en-rCA\values-en-rCA.xml" qualifiers="en-rCA"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"Done"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="121134116657445385" name="abc_capital_off">"OFF"</string><string msgid="3405795526292276155" name="abc_capital_on">"ON"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"space"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="7723749260725869598" name="abc_search_hint">"Search…"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="146198913615257606" name="search_menu_title">"Search"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-en-rGB\values-en-rGB.xml" qualifiers="en-rGB"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"More options"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Done"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="3403923230105792483" name="abc_capital_off">"OFF"</string><string msgid="7831734969929204599" name="abc_capital_on">"ON"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Search…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Clear query"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Search query"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Search"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Submit query"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Voice search"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="730395136688082741" name="search_menu_title">"Search"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-en-rIN\values-en-rIN.xml" qualifiers="en-rIN"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigate home"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navigate up"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"More options"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Done"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"See all"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Choose an app"</string><string msgid="3403923230105792483" name="abc_capital_off">"OFF"</string><string msgid="7831734969929204599" name="abc_capital_on">"ON"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Search…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Clear query"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Search query"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Search"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Submit query"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Voice search"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Share with"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Collapse"</string><string msgid="730395136688082741" name="search_menu_title">"Search"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-en-rXC\values-en-rXC.xml" qualifiers="en-rXC"><string msgid="4600421777120114993" name="abc_action_bar_home_description">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‏‏‏‏‏‎‏‎‏‏‏‏‏‏‏‏‎‏‏‎‎‏‏‏‎‏‏‎‏‏‏‎‎‏‎‎‎‏‏‎‏‏‏‎‎‏‏‏‎‎‏‎‎‏‏‎‎‎‏‎Navigate home‎‏‎‎‏‎"</string><string msgid="1594238315039666878" name="abc_action_bar_up_description">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‎‎‏‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‎‏‏‎‏‎‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‎‎‏‎‏‎‏‏‏‏‏‎‎Navigate up‎‏‎‎‏‎"</string><string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‎‏‏‏‎‎‏‏‏‎‎‎‏‎‎‏‏‏‎‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‎‎‏‏‏‎‏‎‎‎‏‏‎‏‎‎‎‏‎‎‏‏‎‎More options‎‏‎‎‏‎"</string><string msgid="4076576682505996667" name="abc_action_mode_done">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‏‎‎‏‎‎‏‎‏‏‏‎‏‎‎‎‏‏‏‎‎‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‏‎‎‏‎‎‎‎‏‎‎‏‎‏‏‏‏‎‏‏‎Done‎‏‎‎‏‎"</string><string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‏‎‎‏‏‎‏‎‏‏‎‏‏‏‏‏‎‎‏‏‏‎‎‏‏‏‏‎‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‎‏‎‎‏‏‏‏‎‏‎See all‎‏‎‎‏‎"</string><string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‏‏‎‎‎‎‏‏‎‎‏‎‎‏‏‏‎‎‎‏‏‏‏‏‏‎‎‎‏‎‎‏‎‏‎‎‎‏‏‎‏‎‏‏‎‎‏‏‏‏‏‎‏‎‎‏‏‏‏‎‎Choose an app‎‏‎‎‏‎"</string><string msgid="121134116657445385" name="abc_capital_off">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‎‏‏‏‎‏‎‏‏‏‎‎‏‎‏‏‎‏‎‏‏‎‏‎‏‏‎‎‏‎‏‏‎‎‏‏‎‎‎‏‏‎‎‎‎‏‏‏‎‏‎‎‎‎‎‏‎‎‏‎OFF‎‏‎‎‏‎"</string><string msgid="3405795526292276155" name="abc_capital_on">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‎‏‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‎‏‎‏‎‎‏‎‎‎‏‎‎‎‎‎‎‎‎‏‏‏‎‏‏‏‎‏‏‎ON‎‏‎‎‏‎"</string><string msgid="1302280443949172191" name="abc_menu_alt_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‎‎‏‎‎‏‎‏‎‏‎‎‎‎‏‎‎‏‎‏‎‎‏‏‏‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‎‎‎‏‎‏‏‏‎‏‏‏‏‏‎Alt+‎‏‎‎‏‎"</string><string msgid="1324831542140195728" name="abc_menu_ctrl_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‎‏‏‎‎‎‏‎‏‎‏‏‏‏‏‏‎‏‎‎‎‏‎‎‏‎‏‏‎‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‎‏‏‏‎‎‏‎‎‎‎‎Ctrl+‎‏‎‎‏‎"</string><string msgid="8362206064229013510" name="abc_menu_delete_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‏‎‎‎‎‎‎‏‏‎‎‏‎‎‎‎‏‏‎‎‎‎‏‏‏‎‎‎‏‎‎‏‏‎‎‏‏‏‏‏‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‎‏‏‎‎delete‎‏‎‎‏‎"</string><string msgid="8341180395196749340" name="abc_menu_enter_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‏‎‎‎‎‎‏‏‏‎‏‎‎‏‏‎‏‏‎‎‎‎‎‎‎‏‏‏‏‏‏‎‎‏‎‎‏‏‏‏‎‎‏‎‏‏‎‎‎‎‏‏‏‎‎‎enter‎‏‎‎‏‎"</string><string msgid="4792426091847145555" name="abc_menu_function_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‎‎‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‏‏‏‏‎‎‎‏‎‎‎‏‏‏‎‏‎‎‎‎‎‏‏‎‏‏‏‎‎‏‏‎‏‏‎‎‎‎‏‎‏‎‎‏‏‎Function+‎‏‎‎‏‎"</string><string msgid="7643535737296831317" name="abc_menu_meta_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‎‎‎‎‏‎‎‏‏‎‏‎‎‏‎‏‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‎‏‏‎‎‏‎‏‎‎‏‏‎‎‎‎‏‏‎‏‎‏‎‏‎‏‎Meta+‎‏‎‎‏‎"</string><string msgid="8126296154200614004" name="abc_menu_shift_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‏‏‏‎‏‎‎‏‏‎‎‎‎‎‏‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‎‏‎‎‎‏‏‏‎‏‎‎‎Shift+‎‏‎‎‏‎"</string><string msgid="2378550843553983978" name="abc_menu_space_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‎‏‎‎‎‎‎‎‏‎‎‏‎‎‏‏‏‏‎‏‏‎‎‎‏‏‏‏‎‏‏‏‏‎‎‎‏‏‏‏‎‏‏‎‏‎‏‏‎‏‏‏‏‎‏‎‏‎‎space‎‏‎‎‏‎"</string><string msgid="9002602288060866689" name="abc_menu_sym_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‏‎‎‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‏‎‎‎‏‎‏‎‏‎‏‎‎‏‎‎‏‏‏‏‏‏‏‎‎‏‎‏‎‎‎‎‎‏‎‎‎‎‎‎‏‎Sym+‎‏‎‎‏‎"</string><string msgid="1351762916121158029" name="abc_prepend_shortcut_label">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‎‏‎‏‏‎‎‎‎‏‎‎‏‏‎‏‏‎‏‎‎‏‏‎‏‎‏‏‏‎‏‎‎‏‏‏‏‏‏‎‎‏‎‏‎‏‎‎‎‎‏‏‎‎‎‏‏‎‏‎Menu+‎‏‎‎‏‎"</string><string msgid="7723749260725869598" name="abc_search_hint">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‎‏‎‏‏‎‎‏‏‎‎‎‎‎‏‎‎‎‏‎‏‎‎‎‎‎‏‏‏‏‏‎‎‏‎‏‏‏‏‎‎‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‏‏‏‎‎Search…‎‏‎‎‏‎"</string><string msgid="3691816814315814921" name="abc_searchview_description_clear">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‏‎‎‏‏‎‎‏‏‏‎‏‏‏‏‏‏‎‏‏‏‏‏‎‏‎‏‎‏‎‎‏‎‎‎‎‏‎‎‎‏‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‎‎‏‎Clear query‎‏‎‎‏‎"</string><string msgid="2550479030709304392" name="abc_searchview_description_query">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‎‎‏‏‎‏‏‎‎‏‎‏‎‎‎‏‏‏‏‏‎‎‏‎‏‎‏‎‎‏‎‏‏‎‎‎‏‎‎‎‎‎‏‎‏‎‏‏‏‏‎‎‎‏‎‎‏‎‎‎‎Search query‎‏‎‎‏‎"</string><string msgid="8264924765203268293" name="abc_searchview_description_search">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‎‎‏‎‏‎‏‏‎‎‏‎‏‏‏‎‏‎‎‏‎‏‎‎‏‎‎‎‏‏‎‏‎‏‎‏‎‏‎‎‎‏‎‏‎‎‎‎‎‎‏‎‏‏‎‎‎‏‎‏‎Search‎‏‎‎‏‎"</string><string msgid="8928215447528550784" name="abc_searchview_description_submit">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‏‏‏‏‏‎‏‏‏‏‏‎‎‏‏‏‎‏‏‎‎‏‎‎‏‎‏‎‎‏‎‏‎‏‎‏‎‏‎‎‎‎‎‏‏‎‎‎‎‎‏‏‎‎‎‏‏‎‎‎‎‎‎‎‎Submit query‎‏‎‎‏‎"</string><string msgid="893419373245838918" name="abc_searchview_description_voice">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‎‏‏‎‎‎‏‏‎‎‏‏‎‎‎‎‏‎‎‎‎‎‎‏‎‏‏‏‏‏‎‏‏‏‎‎‏‏‏‎‎‎‏‎‏‎‎‏‏‎‏‏‎‎‏‎‎‎‏‏‎‎Voice search‎‏‎‎‏‎"</string><string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‏‏‎‏‏‏‏‎‎‏‏‏‏‏‏‎‏‏‏‏‎‏‎‎‎‏‎‏‎‏‏‏‎‎‏‏‎‎‎‎‎‏‎‏‎‏‎‏‏‎‏‎‏‏‎‏‎‎‎Share with‎‏‎‎‏‎"</string><string msgid="3300176832234831527" name="abc_shareactionprovider_share_with_application">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‏‎‏‎‏‏‎‏‏‏‎‎‏‏‎‎‏‎‎‏‎‏‎‏‎‏‎‏‏‎‎‎‎‎‎‎‎‏‎‏‎‏‎‏‎‏‎‎‏‎‏‏‏‏‏‎‏‎‏‎‎‏‏‏‎Share with ‎‏‎‎‏‏‎<ns1:g id="APPLICATION_NAME">%s</ns1:g>‎‏‎‎‏‏‏‎‎‏‎‎‏‎"</string><string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‏‎‏‏‎‏‏‎‎‏‎‎‎‎‎‎‏‏‏‎‏‏‏‎‎‎‎‏‏‏‎‏‏‏‎‎‎‏‏‏‎‎‎‏‏‎‎‏‏‎‏‏‏‏‏‎‏‏‎‏‏‏‎‏‎Collapse‎‏‎‎‏‎"</string><string msgid="146198913615257606" name="search_menu_title">"‎‏‎‎‎‎‎‏‎‏‏‏‎‎‎‎‎‏‎‎‏‎‎‎‎‏‏‏‏‎‏‎‏‎‎‎‎‎‎‏‏‏‎‏‏‎‎‏‏‏‎‎‏‎‎‎‏‏‎‎‏‎‏‎‎‎‏‎‎‏‎‏‎‏‏‏‏‎‎‎‎‎‎‎‎‎‎‏‏‎‎Search‎‏‎‎‏‎"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-es\values-es.xml" qualifiers="es"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Ir a inicio"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Listo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESACTIVADO"</string><string msgid="7831734969929204599" name="abc_capital_on">"ACTIVADO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Suprimir"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Intro"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Función +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Mayús +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Espacio"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menú +"</string><string msgid="940844115270746197" name="abc_search_hint">"Buscar…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Consulta de búsqueda"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Buscar"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Ocultar"</string><string msgid="730395136688082741" name="search_menu_title">"Buscar"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-es-rUS\values-es-rUS.xml" qualifiers="es-rUS"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navegar a la página principal"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navegar hacia arriba"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Más opciones"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Listo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ver todas"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Elegir una app"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESACTIVAR"</string><string msgid="7831734969929204599" name="abc_capital_on">"ACTIVAR"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"borrar"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"intro"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Función+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Mayúscula+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espacio"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menú+"</string><string msgid="940844115270746197" name="abc_search_hint">"Buscar…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Borrar consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Búsqueda"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Buscar"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Búsqueda por voz"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Compartir con"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Contraer"</string><string msgid="730395136688082741" name="search_menu_title">"Buscar"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-et\values-et.xml" qualifiers="et"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Liigu avalehele"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Liigu üles"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Valmis"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Valige rakendus"</string><string msgid="3403923230105792483" name="abc_capital_off">"VÄLJAS"</string><string msgid="7831734969929204599" name="abc_capital_on">"SEES"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"kustuta"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"sisestusklahv"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funktsiooniklahv +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Tõstuklahv +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"tühik"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menüü +"</string><string msgid="940844115270746197" name="abc_search_hint">"Otsige …"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Päringu tühistamine"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Otsingupäring"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Otsing"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Päringu esitamine"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Häälotsing"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Jaga:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Jagamine rakendusega <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Ahendamine"</string><string msgid="730395136688082741" name="search_menu_title">"Otsing"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-eu\values-eu.xml" qualifiers="eu"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Joan orri nagusira"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Joan gora"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Aukera gehiago"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Eginda"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESAKTIBATU"</string><string msgid="7831734969929204599" name="abc_capital_on">"AKTIBATU"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ktrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ezabatu"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"sartu"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funtzioa +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Maius +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"zuriunea"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menua +"</string><string msgid="940844115270746197" name="abc_search_hint">"Bilatu…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Garbitu kontsulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Bilatu"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Bidali kontsulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Ahozko bilaketa"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Partekatu honekin"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Partekatu <ns1:g id="APPLICATION_NAME">%s</ns1:g> aplikazioarekin"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Tolestu"</string><string msgid="730395136688082741" name="search_menu_title">"Bilatu"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-fa\values-fa.xml" qualifiers="fa"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"رفتن به بالا"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"تمام"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"دیدن همه"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string><string msgid="3403923230105792483" name="abc_capital_off">"خاموش"</string><string msgid="7831734969929204599" name="abc_capital_on">"روشن"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"‎Alt+‎"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"‎Ctrl+‎"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"حذف"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"‎Function+‎"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"‎Meta+‎"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"‎Shift+‎"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"فاصله"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"‎Sym+‎"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"منو+"</string><string msgid="940844115270746197" name="abc_search_hint">"جستجو…‏"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"پاک کردن پُرسمان"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"درخواست جستجو"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"جستجو"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ارسال پُرسمان"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"جستجوی گفتاری"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"هم‌رسانی با"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"هم‌رسانی با <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"کوچک کردن"</string><string msgid="730395136688082741" name="search_menu_title">"جستجو"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-fi\values-fi.xml" qualifiers="fi"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Siirry etusivulle"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Siirry ylös"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Lisäasetukset"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Valmis"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string><string msgid="3403923230105792483" name="abc_capital_off">"POIS PÄÄLTÄ"</string><string msgid="7831734969929204599" name="abc_capital_on">"PÄÄLLÄ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Vaihto+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"välilyönti"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Valikko+"</string><string msgid="940844115270746197" name="abc_search_hint">"Haku…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Tyhjennä kysely"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Hakukysely"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Haku"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Lähetä kysely"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Puhehaku"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Jaa…"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Jaa: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Tiivistä"</string><string msgid="730395136688082741" name="search_menu_title">"Haku"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-fr\values-fr.xml" qualifiers="fr"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Revenir en haut de la page"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Autres options"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"OK"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Tout afficher"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string><string msgid="3403923230105792483" name="abc_capital_off">"NON"</string><string msgid="7831734969929204599" name="abc_capital_on">"OUI"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"supprimer"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"entrée"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fonction+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Méta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Maj+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espace"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Rechercher…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Rechercher"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Partager avec"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Partager avec <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="730395136688082741" name="search_menu_title">"Rechercher"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-fr-rCA\values-fr-rCA.xml" qualifiers="fr-rCA"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Revenir en arrière"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Autres options"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Terminé"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Tout afficher"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string><string msgid="3403923230105792483" name="abc_capital_off">"DÉSACTIVER"</string><string msgid="7831734969929204599" name="abc_capital_on">"ACTIVER"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"supprimer"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"entrée"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fonction+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Méta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Maj+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espace"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Rechercher…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Effacer la requête"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Requête de recherche"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Rechercher"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Envoyer la requête"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Recherche vocale"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Partager avec"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Partager avec <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Réduire"</string><string msgid="730395136688082741" name="search_menu_title">"Rechercher"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-gl\values-gl.xml" qualifiers="gl"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Vai ao inicio"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Vai cara arriba"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Máis opcións"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Feito"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ver todo"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Selecciona unha aplicación"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESACTIVAR"</string><string msgid="7831734969929204599" name="abc_capital_on">"ACTIVAR"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"eliminar"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"intro"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Función +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Maiús +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espazo"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menú +"</string><string msgid="940844115270746197" name="abc_search_hint">"Busca…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Borra a consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Busca a consulta"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Realiza buscas"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Envía a consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Busca por voz"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Comparte contido con"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Comparte contido coa aplicación <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Contrae"</string><string msgid="730395136688082741" name="search_menu_title">"Buscar"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-gu\values-gu.xml" qualifiers="gu"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ઘરનો રસ્તો બતાવો"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ઉપર નૅવિગેટ કરો"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"વધુ વિકલ્પો"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"થઈ ગયું"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"બધી જુઓ"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ઍપ્લિકેશન પસંદ કરો"</string><string msgid="3403923230105792483" name="abc_capital_off">"બંધ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ચાલુ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"શોધો…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ક્વેરી સાફ કરો"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"શોધ ક્વેરી"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"શોધો"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ક્વેરી સબમિટ કરો"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"વૉઇસ શોધ"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"આની સાથે શેર કરો"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ની સાથે શેર કરો"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"સંકુચિત કરો"</string><string msgid="730395136688082741" name="search_menu_title">"શોધો"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-h720dp-v13\values-h720dp-v13.xml" qualifiers="h720dp-v13"><dimen name="abc_alert_dialog_button_bar_height">54dip</dimen></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-hdpi-v4\values-hdpi-v4.xml" qualifiers="hdpi-v4"><style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
  1719. <item name="barLength">18.66dp</item>
  1720. <item name="gapBetweenBars">3.33dp</item>
  1721. <item name="drawableSize">24dp</item>
  1722. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-hi\values-hi.xml" qualifiers="hi"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"होम पेज पर जाएं"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"वापस जाएं"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ज़्यादा विकल्प"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"हो गया"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"सभी देखें"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"कोई ऐप्लिकेशन चुनें"</string><string msgid="3403923230105792483" name="abc_capital_off">"बंद"</string><string msgid="7831734969929204599" name="abc_capital_on">"चालू"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"खोजें…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"क्‍वेरी हटाएं"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"सर्च क्वेरी"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"खोजें"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"बोलकर खोजें"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"इससे शेयर करें:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> से शेयर करें"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"छोटा करें"</string><string msgid="730395136688082741" name="search_menu_title">"खोजें"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-hr\values-hr.xml" qualifiers="hr"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Idi na početnu"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Natrag"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Više opcija"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gotovo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string><string msgid="3403923230105792483" name="abc_capital_off">"ISKLJUČENO"</string><string msgid="7831734969929204599" name="abc_capital_on">"UKLJUČENO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"svemir"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Pretražite…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Izbriši upit"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Upit za pretraživanje"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Pretraži"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Pošalji upit"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Dijeli s"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Dijeli putem aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Sažmi"</string><string msgid="730395136688082741" name="search_menu_title">"Pretraži"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-hu\values-hu.xml" qualifiers="hu"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Fel"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"További lehetőségek"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Kész"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Az összes megtekintése"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Válasszon alkalmazást"</string><string msgid="3403923230105792483" name="abc_capital_off">"KI"</string><string msgid="7831734969929204599" name="abc_capital_on">"BE"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Szóköz"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Keresés…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Lekérdezés törlése"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Keresési lekérdezés"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Keresés"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Lekérdezés küldése"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Hangalapú keresés"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Megosztás a következő alkalmazással: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Összecsukás"</string><string msgid="730395136688082741" name="search_menu_title">"Keresés"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-hy\values-hy.xml" qualifiers="hy"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Անցնել գլխավոր էջ"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Անցնել վերև"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Այլ ընտրանքներ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Պատրաստ է"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Ընտրել հավելված"</string><string msgid="3403923230105792483" name="abc_capital_off">"ԱՆՋԱՏԵԼ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ՄԻԱՑՆԵԼ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"բացատ"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Որոնում…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Ջնջել հարցումը"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Որոնման հարցում"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Որոնել"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Ձայնային որոնում"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Կիսվել…"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Կիսվել <ns1:g id="APPLICATION_NAME">%s</ns1:g> հավելվածի միջոցով"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Ծալել"</string><string msgid="730395136688082741" name="search_menu_title">"Որոնել"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-in\values-in.xml" qualifiers="in"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Tunjukkan jalan ke rumah"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Kembali ke atas"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Opsi lain"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Selesai"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string><string msgid="3403923230105792483" name="abc_capital_off">"NONAKTIF"</string><string msgid="7831734969929204599" name="abc_capital_on">"AKTIF"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"spasi"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Telusuri..."</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Hapus kueri"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Telusuri kueri"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Telusuri"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Kirim kueri"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Penelusuran suara"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Bagikan dengan <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Ciutkan"</string><string msgid="730395136688082741" name="search_menu_title">"Telusuri"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-is\values-is.xml" qualifiers="is"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Fara heim"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Fara upp"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Lokið"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Sjá allt"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Veldu forrit"</string><string msgid="3403923230105792483" name="abc_capital_off">"SLÖKKT"</string><string msgid="7831734969929204599" name="abc_capital_on">"KVEIKT"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"eyða"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Aðgerðarlykill+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"bilslá"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Valmynd+"</string><string msgid="940844115270746197" name="abc_search_hint">"Leita…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Leitarfyrirspurn"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Leit"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Senda fyrirspurn"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Raddleit"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Deila með"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Deila með <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Minnka"</string><string msgid="730395136688082741" name="search_menu_title">"Leit"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-it\values-it.xml" qualifiers="it"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Portami a casa"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Torna indietro"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Altre opzioni"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Fine"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Mostra tutto"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Scelta di un\'app"</string><string msgid="3403923230105792483" name="abc_capital_off">"OFF"</string><string msgid="7831734969929204599" name="abc_capital_on">"ON"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"ALT +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"CTRL +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"CANC"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"INVIO"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"FUNZIONE +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"META +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"MAIUSC +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"SPAZIO"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"SYM +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"MENU +"</string><string msgid="940844115270746197" name="abc_search_hint">"Cerca…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Cancella query"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Query di ricerca"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Cerca"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Invia query"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Ricerca vocale"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Condividi con"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Condividi tramite <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Comprimi"</string><string msgid="730395136688082741" name="search_menu_title">"Cerca"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-iw\values-iw.xml" qualifiers="iw"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ניווט לדף הבית"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ניווט למעלה"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"סיום"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"הצגת הכול"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"בחירת אפליקציה"</string><string msgid="3403923230105792483" name="abc_capital_off">"כבוי"</string><string msgid="7831734969929204599" name="abc_capital_on">"מופעל"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+‎"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"מחיקה"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"רווח"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"תפריט+"</string><string msgid="940844115270746197" name="abc_search_hint">"חיפוש…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"מחיקת השאילתה"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"שאילתת חיפוש"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"חיפוש"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"שליחת שאילתה"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"חיפוש קולי"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"שיתוף עם"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"שיתוף עם <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"כיווץ"</string><string msgid="730395136688082741" name="search_menu_title">"חיפוש"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ja\values-ja.xml" qualifiers="ja"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ホームに戻る"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"前に戻る"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"その他のオプション"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"完了"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"すべて表示"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"アプリの選択"</string><string msgid="3403923230105792483" name="abc_capital_off">"OFF"</string><string msgid="7831734969929204599" name="abc_capital_on">"ON"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"検索…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"検索キーワードを削除"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"検索キーワード"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"検索"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"検索キーワードを送信"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"音声検索"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"共有"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>と共有"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"折りたたむ"</string><string msgid="730395136688082741" name="search_menu_title">"検索"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ka\values-ka.xml" qualifiers="ka"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"მთავარზე გადასვლა"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ზემოთ გადასვლა"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"სხვა ვარიანტები"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"მზადაა"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"აირჩიეთ აპი"</string><string msgid="3403923230105792483" name="abc_capital_off">"გამორთვა"</string><string msgid="7831734969929204599" name="abc_capital_on">"ჩართვა"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"შორისი"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ძიება…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"მოთხოვნის ძიება"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ძიება"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"გაზიარება:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-ით გაზიარება"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ჩაკეცვა"</string><string msgid="730395136688082741" name="search_menu_title">"ძიება"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-kk\values-kk.xml" qualifiers="kk"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Негізгі бетке өту"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Жоғары қарай өту"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Басқа опциялар"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Дайын"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string><string msgid="3403923230105792483" name="abc_capital_off">"ӨШІРУ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ҚОСУ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"бос орын"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Іздеу…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Сұрауды өшіру"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Іздеу сұрауы"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Іздеу"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Сұрауды жіберу"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Дауыспен іздеу"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Бөлісу"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> қолданбасымен бөлісу"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Жию"</string><string msgid="730395136688082741" name="search_menu_title">"Іздеу"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-km\values-km.xml" qualifiers="km"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"​ទៅទំព័រដើម"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"រំកិលឡើងលើ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ជម្រើសច្រើនទៀត"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"រួចរាល់"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"មើលទាំងអស់"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ជ្រើសរើស​កម្មវិធី​​"</string><string msgid="3403923230105792483" name="abc_capital_off">"បិទ"</string><string msgid="7831734969929204599" name="abc_capital_on">"បើក"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"លុប"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ស្វែងរក…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"សម្អាត​សំណួរ"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ស្វែងរកសំណួរ​"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ស្វែងរក"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ដាក់បញ្ជូន​សំណួរ"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ស្វែងរក​តាម​សំឡេង"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជា​មួយ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"ចែក​រំលែក​ជា​មួយ <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"បង្រួម"</string><string msgid="730395136688082741" name="search_menu_title">"ស្វែងរក"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-kn\values-kn.xml" qualifiers="kn"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ಹೋಮ್‌ಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ಆ್ಯಪ್‌ವೊಂದನ್ನು ಆಯ್ಕೆಮಾಡಿ"</string><string msgid="3403923230105792483" name="abc_capital_off">"ಆಫ್"</string><string msgid="7831734969929204599" name="abc_capital_on">"ಆನ್"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ಹುಡುಕಿ…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸಿ"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ಹುಡುಕಿ"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸಿ"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ಕುಗ್ಗಿಸಿ"</string><string msgid="730395136688082741" name="search_menu_title">"ಹುಡುಕಿ"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ko\values-ko.xml" qualifiers="ko"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"홈으로 이동"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"위로 이동"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"추가 옵션"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"완료"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"전체 보기"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"앱 선택"</string><string msgid="3403923230105792483" name="abc_capital_off">"사용 중지"</string><string msgid="7831734969929204599" name="abc_capital_on">"사용"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"스페이스바"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"검색..."</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"검색어 삭제"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"검색어"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"검색"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"검색어 보내기"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"음성 검색"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"공유 대상:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>과(와) 공유"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"접기"</string><string msgid="730395136688082741" name="search_menu_title">"검색"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ky\values-ky.xml" qualifiers="ky"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Башкы бетке чабыттоо"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Мурунку экранга өтүү"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Дагы параметрлер"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Бүттү"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Баарын көрүү"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Колдонмо тандоо"</string><string msgid="3403923230105792483" name="abc_capital_off">"ӨЧҮК"</string><string msgid="7831734969929204599" name="abc_capital_on">"КҮЙҮК"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"боштук"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Издөө…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Сурамды өчүрүү"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Изделген сурам"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Издөө"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Сурам тапшыруу"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Үн менен издөө"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Төмөнкү менен бөлүшүү"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> аркылуу бөлүшүү"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Жыйыштыруу"</string><string msgid="730395136688082741" name="search_menu_title">"Издөө"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-land\values-land.xml" qualifiers="land"><dimen name="abc_action_bar_default_height_material">48dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">12dp</dimen><dimen name="abc_text_size_title_material_toolbar">14dp</dimen></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-large-v4\values-large-v4.xml" qualifiers="large-v4"><dimen name="abc_config_prefDialogWidth">440dp</dimen><item name="abc_dialog_fixed_height_major" type="dimen">60%</item><item name="abc_dialog_fixed_height_minor" type="dimen">90%</item><item name="abc_dialog_fixed_width_major" type="dimen">60%</item><item name="abc_dialog_fixed_width_minor" type="dimen">90%</item><item name="abc_dialog_min_width_major" type="dimen">55%</item><item name="abc_dialog_min_width_minor" type="dimen">80%</item><style name="Base.Theme.AppCompat.DialogWhenLarge" parent="Base.Theme.AppCompat.Dialog.FixedSize"/><style name="Base.Theme.AppCompat.Light.DialogWhenLarge" parent="Base.Theme.AppCompat.Light.Dialog.FixedSize"/></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ldltr-v21\values-ldltr-v21.xml" qualifiers="ldltr-v21"><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-lo\values-lo.xml" qualifiers="lo"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ກັບໄປໜ້າຫຼັກ"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ເລື່ອນຂຶ້ນເທິງ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ຕົວເລືອກເພີ່ມເຕີມ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ແລ້ວໆ"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ເບິ່ງທັງໝົດ"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ເລືອກແອັບ"</string><string msgid="3403923230105792483" name="abc_capital_off">"ປິດ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ເປີດ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ລຶບ"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"ຍະຫວ່າງ"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ຊອກຫາ…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ລຶບຂໍ້ຄວາມຊອກຫາ"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ຄຳສຳລັບຄົ້ນຫາ"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ຊອກຫາ"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ສົ່ງຂໍ້ມູນ"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ຊອກຫາດ້ວຍສຽງ"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ແບ່ງປັນກັບ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"ແບ່ງປັນດ້ວຍ <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ຫຍໍ້ລົງ"</string><string msgid="730395136688082741" name="search_menu_title">"ຊອກຫາ"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-lt\values-lt.xml" qualifiers="lt"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Eiti į pagrindinį puslapį"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Naršyti aukštyn"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Daugiau parinkčių"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Atlikta"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Žr. viską"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Pasirinkite programą"</string><string msgid="3403923230105792483" name="abc_capital_off">"IŠJUNGTI"</string><string msgid="7831734969929204599" name="abc_capital_on">"ĮJUNGTI"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"„Alt“ +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"„Ctrl“ +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"„delete“"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"„enter“"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"„Function“ +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"„Meta“ +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"„Shift“ +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"„space“"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"„Sym“ +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"„Menu“ +"</string><string msgid="940844115270746197" name="abc_search_hint">"Ieškoti…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Išvalyti užklausą"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Paieškos užklausa"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Ieškoti"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Pateikti užklausą"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Paieška balsu"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Bendrinti su"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Bendrinti naudojant programą „<ns1:g id="APPLICATION_NAME">%s</ns1:g>“"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Sutraukti"</string><string msgid="730395136688082741" name="search_menu_title">"Ieškoti"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-lv\values-lv.xml" qualifiers="lv"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Pārvietoties uz sākuma ekrānu"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Pārvietoties uz augšu"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Citas opcijas"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gatavs"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Skatīt visu"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Izvēlieties lietotni"</string><string msgid="3403923230105792483" name="abc_capital_off">"IZSLĒGT"</string><string msgid="7831734969929204599" name="abc_capital_on">"IESLĒGT"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alternēšanas taustiņš +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Vadīšanas taustiņš +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"dzēšanas taustiņš"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"ievadīšanas taustiņš"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funkcijas taustiņš +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta taustiņš +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Pārslēgšanas taustiņš +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"atstarpes taustiņš"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Simbolu taustiņš +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Poga Izvēlne +"</string><string msgid="940844115270746197" name="abc_search_hint">"Meklējiet…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Notīrīt vaicājumu"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Meklēšanas vaicājums"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Meklēt"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Iesniegt vaicājumu"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Meklēt ar balsi"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Kopīgot ar:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Kopīgot ar lietojumprogrammu <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Sakļaut"</string><string msgid="730395136688082741" name="search_menu_title">"Meklēt"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-mk\values-mk.xml" qualifiers="mk"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Движи се кон дома"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Движи се нагоре"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Повеќе опции"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Готово"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Прикажи ги сите"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Избери апликација"</string><string msgid="3403923230105792483" name="abc_capital_off">"ИСКЛУЧЕНО"</string><string msgid="7831734969929204599" name="abc_capital_on">"ВКЛУЧЕНО"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"избриши"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"вселена"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Пребарување…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Исчисти барање"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Пребарај барање"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Пребарај"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Поднеси барање"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Гласовно пребарување"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Сподели со"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Сподели со <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Собери"</string><string msgid="730395136688082741" name="search_menu_title">"Пребарај"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ml\values-ml.xml" qualifiers="ml"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ഹോമിലേക്ക് പോവുക"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"മുകളിലേക്ക് പോവുക"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"കൂടുതൽ ഓപ്ഷനുകൾ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"പൂർത്തിയായി"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"എല്ലാം കാണുക"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ആപ്പ് തിരഞ്ഞെടുക്കുക"</string><string msgid="3403923230105792483" name="abc_capital_off">"ഓഫ്"</string><string msgid="7831734969929204599" name="abc_capital_on">"ഓൺ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ഇല്ലാതാക്കുക"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"ഫംഗ്ഷന്‍+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"മെറ്റ+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"സ്‌പെയ്‌സ്"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"മെനു+"</string><string msgid="940844115270746197" name="abc_search_hint">"തിരയുക…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ചോദ്യം മായ്‌ക്കുക"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ചോദ്യം തിരയുക"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"തിരയുക"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ചോദ്യം സമർപ്പിക്കുക"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"സംസാരത്തിലൂടെ തിരയുക"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ഇനിപ്പറയുന്നതുമായി പങ്കിടുക"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> എന്നതുമായി പങ്കിടുക"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ചുരുക്കുക"</string><string msgid="730395136688082741" name="search_menu_title">"തിരയുക"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-mn\values-mn.xml" qualifiers="mn"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Нүүр хуудас уруу шилжих"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Дээш шилжих"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Бусад сонголт"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Болсон"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Бүгдийг харах"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Аппыг сонгох"</string><string msgid="3403923230105792483" name="abc_capital_off">"ИДЭВХГҮЙ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ИДЭВХТЭЙ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"устгах"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"оруулах"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Функц+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Мета+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Шифт+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"зай"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Цэс+"</string><string msgid="940844115270746197" name="abc_search_hint">"Хайх…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Асуулга арилгах"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Хайх асуулга"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Хайх"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Асуулга илгээх"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Дуут хайлт"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Дараахтай хуваалцах"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-тай хуваалцах"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Буулгах"</string><string msgid="730395136688082741" name="search_menu_title">"Хайх"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-mr\values-mr.xml" qualifiers="mr"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"घराकडे नेव्हिगेट करा"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"वर नेव्‍हिगेट करा"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"आणखी पर्याय"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"पूर्ण झाले"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"सर्व पाहा"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"अ‍ॅप निवडा"</string><string msgid="3403923230105792483" name="abc_capital_off">"बंद"</string><string msgid="7831734969929204599" name="abc_capital_on">"सुरू"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"हटवा"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"एंटर करा"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"मेनू+"</string><string msgid="940844115270746197" name="abc_search_hint">"शोधा…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"क्‍वेरी साफ करा"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"शोध क्वेरी"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"शोध"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"क्वेरी सबमिट करा"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"व्हॉइस शोध"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"यांच्यासोबत शेअर करा"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> सह शेअर करा"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"कोलॅप्स करा"</string><string msgid="730395136688082741" name="search_menu_title">"शोध"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ms\values-ms.xml" qualifiers="ms"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigasi laman utama"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navigasi ke atas"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Lagi pilihan"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Selesai"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Lihat semua"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Pilih apl"</string><string msgid="3403923230105792483" name="abc_capital_off">"MATI"</string><string msgid="7831734969929204599" name="abc_capital_on">"HIDUP"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fungsi+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"ruang"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Cari…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Kosongkan pertanyaan"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Pertanyaan carian"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Cari"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Serah pertanyaan"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Carian suara"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Kongsi dengan"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Kongsi dengan <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Runtuhkan"</string><string msgid="730395136688082741" name="search_menu_title">"Cari"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-my\values-my.xml" qualifiers="my"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"မူလနေရာကို ပြန်သွားရန်"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"အပေါ်သို့ ရွှေ့ရန်"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"နောက်ထပ် ရွေးစရာများ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ပြီးပြီ"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"အားလုံး ကြည့်ရန်"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"အက်ပ်တစ်ခုကို ရွေးရန်"</string><string msgid="3403923230105792483" name="abc_capital_off">"ပိတ်ရန်"</string><string msgid="7831734969929204599" name="abc_capital_on">"ဖွင့်ရန်"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ရှာဖွေရန်…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ရှာဖွေမှုကို ဖယ်ရှားရန်"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ရှာဖွေရန် မေးခွန်း"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ရှာရန်"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ရှာဖွေစရာ အချက်အလက်ကို ပေးပို့ရန်"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"အသံဖြင့် ရှာရန်"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"နှင့် မျှဝေရန်"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ဖြင့် မျှဝေရန်"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"လျှော့ပြရန်"</string><string msgid="730395136688082741" name="search_menu_title">"ရှာဖွေမှု"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-nb\values-nb.xml" qualifiers="nb"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Naviger hjem"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Gå opp"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Flere alternativer"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Ferdig"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Se alle"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Velg en app"</string><string msgid="3403923230105792483" name="abc_capital_off">"AV"</string><string msgid="7831734969929204599" name="abc_capital_on">"PÅ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"slett"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funksjon+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"mellomrom"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Meny+"</string><string msgid="940844115270746197" name="abc_search_hint">"Søk"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Slett søket"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Søkeord"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Søk"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Utfør søket"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Talesøk"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Del med"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Skjul"</string><string msgid="730395136688082741" name="search_menu_title">"Søk"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ne\values-ne.xml" qualifiers="ne"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"गृह पृष्ठमा जानुहोस्"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"माथि नेभिगेट गर्नुहोस्"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"थप विकल्पहरू"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"सम्पन्न भयो"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"सबै हेर्नुहोस्"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"एउटा अनुप्रयोग छान्नुहोस्"</string><string msgid="3403923230105792483" name="abc_capital_off">"निष्क्रिय"</string><string msgid="7831734969929204599" name="abc_capital_on">"सक्रिय"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"खोज्नुहोस्…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"क्वेरी खाली गर्नुहोस्"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"खोज प्रश्न"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"खोज"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"क्वेरी पेस गर्नुहोस्"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"आवाजमा आधारित खोजी"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"यसमार्फत आदान प्रदान गर्नुहोस्"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> मार्फत आदान प्रदान गर्नुहोस्"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"संक्षिप्त गर्नुहोस्"</string><string msgid="730395136688082741" name="search_menu_title">"खोज"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-night-v8\values-night-v8.xml" qualifiers="night-v8"><style name="Theme.AppCompat.DayNight" parent="Theme.AppCompat"/><style name="Theme.AppCompat.DayNight.DarkActionBar" parent="Theme.AppCompat"/><style name="Theme.AppCompat.DayNight.Dialog" parent="Theme.AppCompat.Dialog"/><style name="Theme.AppCompat.DayNight.Dialog.Alert" parent="Theme.AppCompat.Dialog.Alert"/><style name="Theme.AppCompat.DayNight.Dialog.MinWidth" parent="Theme.AppCompat.Dialog.MinWidth"/><style name="Theme.AppCompat.DayNight.DialogWhenLarge" parent="Theme.AppCompat.DialogWhenLarge"/><style name="Theme.AppCompat.DayNight.NoActionBar" parent="Theme.AppCompat.NoActionBar"/><style name="ThemeOverlay.AppCompat.DayNight" parent="ThemeOverlay.AppCompat.Dark"/></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-nl\values-nl.xml" qualifiers="nl"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigeren naar startpositie"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Omhoog navigeren"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Meer opties"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gereed"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Alles weergeven"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Een app selecteren"</string><string msgid="3403923230105792483" name="abc_capital_off">"UIT"</string><string msgid="7831734969929204599" name="abc_capital_on">"AAN"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Functie +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"spatie"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="940844115270746197" name="abc_search_hint">"Zoeken…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Zoekopdracht wissen"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Zoekopdracht"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Zoeken"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Zoekopdracht verzenden"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Gesproken zoekopdracht"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Delen met"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Delen met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Samenvouwen"</string><string msgid="730395136688082741" name="search_menu_title">"Zoeken"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-or\values-or.xml" qualifiers="or"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ହୋମ୍ ପେଜ୍‌କୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ଉପରକୁ ନେଭିଗେଟ୍ କରନ୍ତୁ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ଅଧିକ ବିକଳ୍ପ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ହୋଇଗଲା"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ସବୁ ଦେଖନ୍ତୁ"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ଗୋଟିଏ ଆପ୍‍ ବାଛନ୍ତୁ"</string><string msgid="3403923230105792483" name="abc_capital_off">"ଅଫ୍"</string><string msgid="7831734969929204599" name="abc_capital_on">"ଅନ୍"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ଡିଲିଟ୍‍"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"ଏଣ୍ଟର୍"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"ସ୍ପେସ୍‍"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"ମେନୁ"</string><string msgid="940844115270746197" name="abc_search_hint">"ସର୍ଚ୍ଚ କରନ୍ତୁ…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"କ୍ୱେରୀ ଖାଲି କରନ୍ତୁ"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ସର୍ଚ୍ଚ କ୍ୱେରୀ"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ସର୍ଚ୍ଚ କରନ୍ତୁ"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"କ୍ୱେରୀ ଦାଖଲ କରନ୍ତୁ"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ଭଏସ୍‌ ସର୍ଚ୍ଚ"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ଏହାଙ୍କ ସହ ସେୟାର୍‌ କରନ୍ତୁ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ସହ ସେୟାର୍‍ କରନ୍ତୁ"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ସଂକୁଚିତ କରନ୍ତୁ"</string><string msgid="730395136688082741" name="search_menu_title">"ସର୍ଚ୍ଚ କରନ୍ତୁ"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-pa\values-pa.xml" qualifiers="pa"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"ਹੋਮ \'ਤੇ ਜਾਓ"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ਉੱਪਰ ਜਾਓ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ਹੋਰ ਵਿਕਲਪ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ਹੋ ਗਿਆ"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ਸਭ ਦੇਖੋ"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ਇੱਕ ਐਪ ਚੁਣੋ"</string><string msgid="3403923230105792483" name="abc_capital_off">"ਬੰਦ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ਚਾਲੂ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ਮਿਟਾਓ"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"ਖੋਜ…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ਪੁੱਛਗਿੱਛ ਕਲੀਅਰ ਕਰੋ"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"ਖੋਜ ਪੁੱਛਗਿੱਛ"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ਖੋਜ"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ਪੁੱਛਗਿੱਛ ਸਪੁਰਦ ਕਰੋ"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ਅਵਾਜ਼ੀ ਖੋਜ"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"ਇਸ ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ਨਾਲ ਸਾਂਝਾ ਕਰੋ"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ਸਮੇਟੋ"</string><string msgid="730395136688082741" name="search_menu_title">"ਖੋਜ"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-pl\values-pl.xml" qualifiers="pl"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Przejdź na stronę główną"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Przejdź wyżej"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Więcej opcji"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gotowe"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Pokaż wszystko"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Wybierz aplikację"</string><string msgid="3403923230105792483" name="abc_capital_off">"WYŁ."</string><string msgid="7831734969929204599" name="abc_capital_on">"WŁ."</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funkcyjny+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"spacja"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Szukaj…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Wyczyść zapytanie"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Zapytanie"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Szukaj"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Wyślij zapytanie"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Wyszukiwanie głosowe"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Udostępnij przez:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Udostępnij przez: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Zwiń"</string><string msgid="730395136688082741" name="search_menu_title">"Szukaj"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-port\values-port.xml" qualifiers="port"><bool name="abc_action_bar_embed_tabs">false</bool></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-pt\values-pt.xml" qualifiers="pt"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Concluído"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Selecionar um app"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESATIVADO"</string><string msgid="7831734969929204599" name="abc_capital_on">"ATIVADO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espaço"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Pesquisar…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Compartilhar com <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="730395136688082741" name="search_menu_title">"Pesquisar"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-pt-rBR\values-pt-rBR.xml" qualifiers="pt-rBR"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navegar para a página inicial"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Concluído"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Selecionar um app"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESATIVADO"</string><string msgid="7831734969929204599" name="abc_capital_on">"ATIVADO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espaço"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Pesquisar…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Compartilhar com"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Compartilhar com <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Recolher"</string><string msgid="730395136688082741" name="search_menu_title">"Pesquisar"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-pt-rPT\values-pt-rPT.xml" qualifiers="pt-rPT"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navegar para casa"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navegar para cima"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Mais opções"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Concluído"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Ver tudo"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Escolher uma aplicação"</string><string msgid="3403923230105792483" name="abc_capital_off">"DESATIVADO"</string><string msgid="7831734969929204599" name="abc_capital_on">"ATIVADO"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"eliminar"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Função +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"espaço"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="940844115270746197" name="abc_search_hint">"Pesquisar…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Limpar consulta"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Consulta de pesquisa"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Pesquisar"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Enviar consulta"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Pesquisa por voz"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Partilhar com"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Partilhar com a aplicação <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Reduzir"</string><string msgid="730395136688082741" name="search_menu_title">"Pesquisar"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ro\values-ro.xml" qualifiers="ro"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigați la ecranul de pornire"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navigați în sus"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Mai multe opțiuni"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Gata"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Afișați tot"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Alegeți o aplicație"</string><string msgid="3403923230105792483" name="abc_capital_off">"DEZACTIVAT"</string><string msgid="7831734969929204599" name="abc_capital_on">"ACTIVAT"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Meniu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Căutați…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Ștergeți interogarea"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Termen de căutare"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Căutați"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Trimiteți interogarea"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Căutare vocală"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Trimiteți la"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Trimiteți folosind <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Restrângeți"</string><string msgid="730395136688082741" name="search_menu_title">"Căutați"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ru\values-ru.xml" qualifiers="ru"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Перейти на главный экран"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Перейти вверх"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Ещё"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Готово"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Показать все"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Выберите приложение"</string><string msgid="3403923230105792483" name="abc_capital_off">"ВЫКЛ"</string><string msgid="7831734969929204599" name="abc_capital_on">"ВКЛ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Ввод"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Пробел"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Меню +"</string><string msgid="940844115270746197" name="abc_search_hint">"Введите запрос"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Удалить запрос"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Поисковый запрос"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Поиск"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Отправить запрос"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Голосовой поиск"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Поделиться с помощью"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Поделиться с помощью <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Свернуть"</string><string msgid="730395136688082741" name="search_menu_title">"Поиск"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-si\values-si.xml" qualifiers="si"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"මුල් පිටුවට සංචාලනය කරන්න"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"ඉහළට සංචාලනය කරන්න"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"තවත් විකල්ප"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"කළා"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"සියල්ල බලන්න"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"යෙදුමක් තෝරන්න"</string><string msgid="3403923230105792483" name="abc_capital_off">"ක්‍රියාවිරහිතයි"</string><string msgid="7831734969929204599" name="abc_capital_on">"ක්‍රියාත්මකයි"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"මකන්න"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"සොයන්න..."</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"විමසුම හිස් කරන්න"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"සෙවුම් විමසුම"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"සෙවීම"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"විමසුම යොමු කරන්න"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"හඬ සෙවීම"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"සමග බෙදා ගන්න"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> සමඟ බෙදා ගන්න"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"හකුළන්න"</string><string msgid="730395136688082741" name="search_menu_title">"සෙවීම"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sk\values-sk.xml" qualifiers="sk"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Prejsť na plochu"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Prejsť nahor"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Ďalšie možnosti"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Hotovo"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Zobraziť všetky"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Vybrať aplikáciu"</string><string msgid="3403923230105792483" name="abc_capital_off">"VYP."</string><string msgid="7831734969929204599" name="abc_capital_on">"ZAP."</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"odstrániť"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"medzerník"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Vyhľadať…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Vymazať dopyt"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Vyhľadávací dopyt"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Hľadať"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Odoslať dopyt"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Hlasové vyhľadávanie"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Zdieľať s"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Zdieľať s aplikáciou <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Zbaliť"</string><string msgid="730395136688082741" name="search_menu_title">"Hľadať"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sl\values-sl.xml" qualifiers="sl"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Krmarjenje na začetek"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Pomik navzgor"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Več možnosti"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Končano"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Pokaži vse"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Izbira aplikacije"</string><string msgid="3403923230105792483" name="abc_capital_off">"IZKLOP"</string><string msgid="7831734969929204599" name="abc_capital_on">"VKLOP"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"preslednica"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Meni +"</string><string msgid="940844115270746197" name="abc_search_hint">"Iskanje …"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Izbris poizvedbe"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Iskalna poizvedba"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Iskanje"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Pošiljanje poizvedbe"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Glasovno iskanje"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Skupna raba z:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Skupna raba z drugimi prek aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Strnitev"</string><string msgid="730395136688082741" name="search_menu_title">"Iskanje"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sq\values-sq.xml" qualifiers="sq"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Orientohu për në shtëpi"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Ngjitu lart"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Opsione të tjera"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"U krye"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Shfaq çdo gjë"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Zgjidh një aplikacion"</string><string msgid="3403923230105792483" name="abc_capital_off">"JOAKTIV"</string><string msgid="7831734969929204599" name="abc_capital_on">"AKTIV"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funksioni+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"hapësirë"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menyja+"</string><string msgid="940844115270746197" name="abc_search_hint">"Kërko…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Pastro pyetjen"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Kërko pyetjen"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Kërko"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Dërgo pyetjen"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Kërkim me zë"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Ndaje me"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Ndaje me <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Palos"</string><string msgid="730395136688082741" name="search_menu_title">"Kërko"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sr\values-sr.xml" qualifiers="sr"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Идите на почетну"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Идите нагоре"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Још опција"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Готово"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Прикажи све"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Изаберите апликацију"</string><string msgid="3403923230105792483" name="abc_capital_off">"ИСКЉУЧЕНО"</string><string msgid="7831734969929204599" name="abc_capital_on">"УКЉУЧЕНО"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"тастер за размак"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Претражите…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Обришите упит"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Претражите упит"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Претражите"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Пошаљите упит"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Гласовна претрага"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Делите помоћу"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Делите помоћу апликације <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Скупи"</string><string msgid="730395136688082741" name="search_menu_title">"Претражите"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sv\values-sv.xml" qualifiers="sv"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Navigera hem"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Navigera uppåt"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Fler alternativ"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Klar"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Visa alla"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Välj en app"</string><string msgid="3403923230105792483" name="abc_capital_off">"AV"</string><string msgid="7831734969929204599" name="abc_capital_on">"PÅ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt + "</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl + "</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"retur"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Funktion + "</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta + "</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Skift + "</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"blanksteg"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Symbol + "</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Meny + "</string><string msgid="940844115270746197" name="abc_search_hint">"Sök …"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Ta bort frågan"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Sökfråga"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Sök"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Skicka fråga"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Röstsökning"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Dela med"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Dela med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Komprimera"</string><string msgid="730395136688082741" name="search_menu_title">"Sök"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sw\values-sw.xml" qualifiers="sw"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Nenda mwanzo"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Sogeza juu"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Chaguo zaidi"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Nimemaliza"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Angalia zote"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Chagua programu"</string><string msgid="3403923230105792483" name="abc_capital_off">"IMEZIMWA"</string><string msgid="7831734969929204599" name="abc_capital_on">"IMEWASHWA"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Tafuta…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Futa hoja"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Hoja ya utafutaji"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Tafuta"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Wasilisha hoja"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Kutafuta kwa kutamka"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Shiriki na"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Shiriki ukitumia <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Kunja"</string><string msgid="730395136688082741" name="search_menu_title">"Tafuta"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-sw600dp-v13\values-sw600dp-v13.xml" qualifiers="sw600dp-v13"><dimen name="abc_action_bar_content_inset_material">24dp</dimen><dimen name="abc_action_bar_content_inset_with_nav">80dp</dimen><dimen name="abc_action_bar_default_height_material">64dp</dimen><dimen name="abc_action_bar_default_padding_end_material">8dp</dimen><dimen name="abc_action_bar_default_padding_start_material">8dp</dimen><dimen name="abc_config_prefDialogWidth">580dp</dimen><dimen name="abc_text_size_subtitle_material_toolbar">16dp</dimen><dimen name="abc_text_size_title_material_toolbar">20dp</dimen></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ta\values-ta.xml" qualifiers="ta"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"முகப்பிற்குச் செல்லும்"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"மேலே செல்லும்"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"மேலும் விருப்பங்கள்"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"முடிந்தது"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"அனைத்தையும் காட்டு"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ஆப்ஸைத் தேர்வுசெய்க"</string><string msgid="3403923230105792483" name="abc_capital_off">"ஆஃப்"</string><string msgid="7831734969929204599" name="abc_capital_on">"ஆன்"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt மற்றும்"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl மற்றும்"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function மற்றும்"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta மற்றும்"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift மற்றும்"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym மற்றும்"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu மற்றும்"</string><string msgid="940844115270746197" name="abc_search_hint">"தேடுக…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"வினவலை அழிக்கும்"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"தேடல் வினவல்"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"தேடும்"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"வினவலைச் சமர்ப்பிக்கும்"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"குரல் தேடல்"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"இதில் பகிர்"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> மூலம் பகிர்"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"சுருக்கும்"</string><string msgid="730395136688082741" name="search_menu_title">"தேடல்"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-te\values-te.xml" qualifiers="te"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"హోమ్‌కు నావిగేట్ చేస్తుంది"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"పైకి నావిగేట్ చేస్తుంది"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"మరిన్ని ఎంపికలు"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"పూర్తయింది"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"అన్నీ చూడండి"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"యాప్‌ను ఎంచుకోండి"</string><string msgid="3403923230105792483" name="abc_capital_off">"ఆఫ్"</string><string msgid="7831734969929204599" name="abc_capital_on">"ఆన్"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"స్పేస్"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"వెతకండి…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ప్రశ్నను తీసివేస్తుంది"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"శోధన ప్రశ్న"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"శోధన"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ప్రశ్నని సమర్పిస్తుంది"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"వాయిస్ శోధన"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"వీరితో షేర్ చేస్తుంది"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>తో షేర్ చేస్తుంది"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"కుదిస్తుంది"</string><string msgid="730395136688082741" name="search_menu_title">"శోధన"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-th\values-th.xml" qualifiers="th"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"นำทางไปหน้าแรก"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"กลับ"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"ตัวเลือกอื่น"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"เสร็จ"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"ดูทั้งหมด"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"เลือกแอป"</string><string msgid="3403923230105792483" name="abc_capital_off">"ปิด"</string><string msgid="7831734969929204599" name="abc_capital_on">"เปิด"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"ลบ"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"เมนู+"</string><string msgid="940844115270746197" name="abc_search_hint">"ค้นหา…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"ล้างคำค้นหา"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"คำค้นหา"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"ค้นหา"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"ส่งคำค้นหา"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"ค้นหาด้วยเสียง"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"แชร์กับ"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"แชร์ทาง <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"ยุบ"</string><string msgid="730395136688082741" name="search_menu_title">"ค้นหา"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-tl\values-tl.xml" qualifiers="tl"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Mag-navigate sa home"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Mag-navigate pataas"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Higit pang opsyon"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Tapos na"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Tingnan lahat"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Pumili ng app"</string><string msgid="3403923230105792483" name="abc_capital_off">"I-OFF"</string><string msgid="7831734969929204599" name="abc_capital_on">"I-ON"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Maghanap…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"I-clear ang query"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Query sa paghahanap"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Maghanap"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Isumite ang query"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Paghahanap gamit ang boses"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Ibahagi sa/kay"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Ibahagi gamit ang <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"I-collapse"</string><string msgid="730395136688082741" name="search_menu_title">"Maghanap"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-tr\values-tr.xml" qualifiers="tr"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Eve gidiş yolunu göster"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Yukarı git"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Diğer seçenekler"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Bitti"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Tümünü göster"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Bir uygulama seçin"</string><string msgid="3403923230105792483" name="abc_capital_off">"KAPAT"</string><string msgid="7831734969929204599" name="abc_capital_on">"AÇ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"sil"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Üst Karakter+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"boşluk"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menü+"</string><string msgid="940844115270746197" name="abc_search_hint">"Ara…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Sorguyu temizle"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Arama sorgusu"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Ara"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Sorguyu gönder"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Sesli arama"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Şununla paylaş:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ile paylaş"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Daralt"</string><string msgid="730395136688082741" name="search_menu_title">"Ara"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-uk\values-uk.xml" qualifiers="uk"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Перейти на головну"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Перейти вгору"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Більше опцій"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Готово"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Показати всі"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Вибрати програму"</string><string msgid="3403923230105792483" name="abc_capital_off">"ЗНИЖКА"</string><string msgid="7831734969929204599" name="abc_capital_on">"УВІМК."</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"пробіл"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Введіть пошуковий запит…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Очистити запит"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Пошуковий запит"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Пошук"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Наіслати запит"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Голосовий пошук"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Поділитися:"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Поділитися через додаток <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Згорнути"</string><string msgid="730395136688082741" name="search_menu_title">"Пошук"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-ur\values-ur.xml" qualifiers="ur"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"گھر کی طرف نیویگیٹ کریں"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"اوپر نیویگیٹ کریں"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"مزید اختیارات"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"ہو گیا"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"سبھی دیکھیں"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"ایک ایپ منتخب کریں"</string><string msgid="3403923230105792483" name="abc_capital_off">"آف"</string><string msgid="7831734969929204599" name="abc_capital_on">"آن"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+‎"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+‎"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+‎"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+‎"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+‎"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+‎"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+‎"</string><string msgid="940844115270746197" name="abc_search_hint">"تلاش کریں…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"استفسار صاف کریں"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"تلاش کا استفسار"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"تلاش کریں"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"استفسار جمع کرائیں"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"صوتی تلاش"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"اس کے ساتھ اشتراک کریں"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> کے ساتھ اشتراک کریں"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"سکیڑیں"</string><string msgid="730395136688082741" name="search_menu_title">"تلاش کریں"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-uz\values-uz.xml" qualifiers="uz"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Boshiga o‘tish"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Yopish"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Yana"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"OK"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Hammasi"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Ilovani tanlang"</string><string msgid="3403923230105792483" name="abc_capital_off">"YOQILMAGAN"</string><string msgid="7831734969929204599" name="abc_capital_on">"YONIQ"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"Probel"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menyu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Qidirish…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"So‘rovni o‘chirish"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Qidiruv so‘rovi"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Qidiruv"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"So‘rov yaratish"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Ovozli qidiruv"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Ulashish"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> orqali ulashish"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Yig‘ish"</string><string msgid="730395136688082741" name="search_menu_title">"Qidiruv"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v16\values-v16.xml" qualifiers="v16"><style name="TextAppearance.AppCompat.Tooltip">
  1723. <item name="android:fontFamily">sans-serif</item>
  1724. <item name="android:textSize">14sp</item>
  1725. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v17\values-v17.xml" qualifiers="v17"><style name="RtlOverlay.DialogWindowTitle.AppCompat" parent="Base.DialogWindowTitle.AppCompat">
  1726. <item name="android:textAlignment">viewStart</item>
  1727. </style><style name="RtlOverlay.Widget.AppCompat.ActionBar.TitleItem" parent="android:Widget">
  1728. <item name="android:layout_gravity">center_vertical|start</item>
  1729. <item name="android:paddingEnd">8dp</item>
  1730. </style><style name="RtlOverlay.Widget.AppCompat.DialogTitle.Icon" parent="android:Widget">
  1731. <item name="android:layout_marginEnd">8dp</item>
  1732. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem" parent="android:Widget">
  1733. <item name="android:paddingEnd">16dp</item>
  1734. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup" parent="android:Widget">
  1735. <item name="android:layout_marginStart">16dp</item>
  1736. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut" parent="android:Widget">
  1737. <item name="android:layout_marginStart">16dp</item>
  1738. <item name="android:textAlignment">viewEnd</item>
  1739. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow" parent="android:Widget">
  1740. <item name="android:layout_marginStart">8dp</item>
  1741. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Text" parent="android:Widget">
  1742. <item name="android:layout_alignParentStart">true</item>
  1743. <item name="android:textAlignment">viewStart</item>
  1744. </style><style name="RtlOverlay.Widget.AppCompat.PopupMenuItem.Title" parent="android:Widget">
  1745. <item name="android:layout_marginStart">16dp</item>
  1746. <item name="android:textAlignment">viewStart</item>
  1747. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown" parent="android:Widget">
  1748. <item name="android:paddingStart">@dimen/abc_dropdownitem_text_padding_left</item>
  1749. <item name="android:paddingEnd">4dp</item>
  1750. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1" parent="android:Widget">
  1751. <item name="android:layout_alignParentStart">true</item>
  1752. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2" parent="android:Widget">
  1753. <item name="android:layout_toStartOf">@id/edit_query</item>
  1754. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Query" parent="android:Widget">
  1755. <item name="android:layout_alignParentEnd">true</item>
  1756. </style><style name="RtlOverlay.Widget.AppCompat.Search.DropDown.Text" parent="Base.Widget.AppCompat.DropDownItem.Spinner">
  1757. <item name="android:layout_toStartOf">@android:id/icon2</item>
  1758. <item name="android:layout_toEndOf">@android:id/icon1</item>
  1759. </style><style name="RtlOverlay.Widget.AppCompat.SearchView.MagIcon" parent="android:Widget">
  1760. <item name="android:layout_marginStart">@dimen/abc_dropdownitem_text_padding_left</item>
  1761. </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton" parent="android:Widget">
  1762. <item name="android:paddingStart">12dp</item>
  1763. <item name="android:paddingEnd">12dp</item>
  1764. </style><style name="RtlUnderlay.Widget.AppCompat.ActionButton.Overflow" parent="Base.Widget.AppCompat.ActionButton">
  1765. <item name="android:paddingStart">@dimen/abc_action_bar_overflow_padding_start_material</item>
  1766. <item name="android:paddingEnd">@dimen/abc_action_bar_overflow_padding_end_material</item>
  1767. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v18\values-v18.xml" qualifiers="v18"><dimen name="abc_switch_padding">0px</dimen></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v21\values-v21.xml" qualifiers="v21"><style name="Base.TextAppearance.AppCompat" parent="android:TextAppearance.Material"/><style name="Base.TextAppearance.AppCompat.Body1" parent="android:TextAppearance.Material.Body1"/><style name="Base.TextAppearance.AppCompat.Body2" parent="android:TextAppearance.Material.Body2"/><style name="Base.TextAppearance.AppCompat.Button" parent="android:TextAppearance.Material.Button"/><style name="Base.TextAppearance.AppCompat.Caption" parent="android:TextAppearance.Material.Caption"/><style name="Base.TextAppearance.AppCompat.Display1" parent="android:TextAppearance.Material.Display1"/><style name="Base.TextAppearance.AppCompat.Display2" parent="android:TextAppearance.Material.Display2"/><style name="Base.TextAppearance.AppCompat.Display3" parent="android:TextAppearance.Material.Display3"/><style name="Base.TextAppearance.AppCompat.Display4" parent="android:TextAppearance.Material.Display4"/><style name="Base.TextAppearance.AppCompat.Headline" parent="android:TextAppearance.Material.Headline"/><style name="Base.TextAppearance.AppCompat.Inverse" parent="android:TextAppearance.Material.Inverse"/><style name="Base.TextAppearance.AppCompat.Large" parent="android:TextAppearance.Material.Large"/><style name="Base.TextAppearance.AppCompat.Large.Inverse" parent="android:TextAppearance.Material.Large.Inverse"/><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
  1768. </style><style name="Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
  1769. </style><style name="Base.TextAppearance.AppCompat.Medium" parent="android:TextAppearance.Material.Medium"/><style name="Base.TextAppearance.AppCompat.Medium.Inverse" parent="android:TextAppearance.Material.Medium.Inverse"/><style name="Base.TextAppearance.AppCompat.Menu" parent="android:TextAppearance.Material.Menu"/><style name="Base.TextAppearance.AppCompat.SearchResult.Subtitle" parent="android:TextAppearance.Material.SearchResult.Subtitle">
  1770. </style><style name="Base.TextAppearance.AppCompat.SearchResult.Title" parent="android:TextAppearance.Material.SearchResult.Title">
  1771. </style><style name="Base.TextAppearance.AppCompat.Small" parent="android:TextAppearance.Material.Small"/><style name="Base.TextAppearance.AppCompat.Small.Inverse" parent="android:TextAppearance.Material.Small.Inverse"/><style name="Base.TextAppearance.AppCompat.Subhead" parent="android:TextAppearance.Material.Subhead"/><style name="Base.TextAppearance.AppCompat.Title" parent="android:TextAppearance.Material.Title"/><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
  1772. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle.Inverse">
  1773. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
  1774. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse" parent="android:TextAppearance.Material.Widget.ActionBar.Title.Inverse">
  1775. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle" parent="android:TextAppearance.Material.Widget.ActionMode.Subtitle">
  1776. </style><style name="Base.TextAppearance.AppCompat.Widget.ActionMode.Title" parent="android:TextAppearance.Material.Widget.ActionMode.Title">
  1777. </style><style name="Base.TextAppearance.AppCompat.Widget.Button" parent="android:TextAppearance.Material.Widget.Button"/><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Header" parent="TextAppearance.AppCompat">
  1778. <item name="android:fontFamily">sans-serif-medium</item>
  1779. <item name="android:textSize">@dimen/abc_text_size_menu_header_material</item>
  1780. <item name="android:textColor">?android:attr/textColorSecondary</item>
  1781. </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Large" parent="android:TextAppearance.Material.Widget.PopupMenu.Large">
  1782. </style><style name="Base.TextAppearance.AppCompat.Widget.PopupMenu.Small" parent="android:TextAppearance.Material.Widget.PopupMenu.Small">
  1783. </style><style name="Base.TextAppearance.AppCompat.Widget.Switch" parent="android:TextAppearance.Material.Button"/><style name="Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem" parent="android:TextAppearance.Material.Widget.TextView.SpinnerItem"/><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle" parent="android:TextAppearance.Material.Widget.ActionBar.Subtitle">
  1784. </style><style name="Base.TextAppearance.Widget.AppCompat.Toolbar.Title" parent="android:TextAppearance.Material.Widget.ActionBar.Title">
  1785. </style><style name="Base.Theme.AppCompat" parent="Base.V21.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog"/><style name="Base.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light"/><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog"/><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog"/><style name="Base.V21.Theme.AppCompat" parent="Base.V7.Theme.AppCompat">
  1786. <item name="actionBarSize">?android:attr/actionBarSize</item>
  1787. <item name="actionBarDivider">?android:attr/actionBarDivider</item>
  1788. <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
  1789. <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
  1790. <item name="actionModeBackground">?android:attr/actionModeBackground</item>
  1791. <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
  1792. <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
  1793. <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
  1794. <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
  1795. <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
  1796. <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
  1797. <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
  1798. <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
  1799. <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
  1800. <item name="dividerVertical">?android:attr/dividerVertical</item>
  1801. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  1802. <item name="editTextColor">?android:attr/editTextColor</item>
  1803. <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
  1804. <item name="buttonStyle">?android:attr/buttonStyle</item>
  1805. <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
  1806. <item name="checkboxStyle">?android:attr/checkboxStyle</item>
  1807. <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
  1808. <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
  1809. <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
  1810. <item name="spinnerStyle">?android:attr/spinnerStyle</item>
  1811. <item name="android:colorPrimary">?attr/colorPrimary</item>
  1812. <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
  1813. <item name="android:colorAccent">?attr/colorAccent</item>
  1814. <item name="android:colorControlNormal">?attr/colorControlNormal</item>
  1815. <item name="android:colorControlActivated">?attr/colorControlActivated</item>
  1816. <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
  1817. <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
  1818. </style><style name="Base.V21.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
  1819. <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
  1820. </style><style name="Base.V21.Theme.AppCompat.Light" parent="Base.V7.Theme.AppCompat.Light">
  1821. <item name="actionBarSize">?android:attr/actionBarSize</item>
  1822. <item name="actionBarDivider">?android:attr/actionBarDivider</item>
  1823. <item name="actionBarItemBackground">@drawable/abc_action_bar_item_background_material</item>
  1824. <item name="actionButtonStyle">?android:attr/actionButtonStyle</item>
  1825. <item name="actionModeBackground">?android:attr/actionModeBackground</item>
  1826. <item name="actionModeCloseDrawable">?android:attr/actionModeCloseDrawable</item>
  1827. <item name="homeAsUpIndicator">?android:attr/homeAsUpIndicator</item>
  1828. <item name="listPreferredItemHeightSmall">?android:attr/listPreferredItemHeightSmall</item>
  1829. <item name="textAppearanceLargePopupMenu">?android:attr/textAppearanceLargePopupMenu</item>
  1830. <item name="textAppearanceSmallPopupMenu">?android:attr/textAppearanceSmallPopupMenu</item>
  1831. <item name="selectableItemBackground">?android:attr/selectableItemBackground</item>
  1832. <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>
  1833. <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
  1834. <item name="dividerHorizontal">?android:attr/dividerHorizontal</item>
  1835. <item name="dividerVertical">?android:attr/dividerVertical</item>
  1836. <item name="editTextBackground">@drawable/abc_edit_text_material</item>
  1837. <item name="editTextColor">?android:attr/editTextColor</item>
  1838. <item name="listChoiceBackgroundIndicator">?android:attr/listChoiceBackgroundIndicator</item>
  1839. <item name="buttonStyle">?android:attr/buttonStyle</item>
  1840. <item name="buttonStyleSmall">?android:attr/buttonStyleSmall</item>
  1841. <item name="checkboxStyle">?android:attr/checkboxStyle</item>
  1842. <item name="checkedTextViewStyle">?android:attr/checkedTextViewStyle</item>
  1843. <item name="radioButtonStyle">?android:attr/radioButtonStyle</item>
  1844. <item name="ratingBarStyle">?android:attr/ratingBarStyle</item>
  1845. <item name="spinnerStyle">?android:attr/spinnerStyle</item>
  1846. <item name="android:colorPrimary">?attr/colorPrimary</item>
  1847. <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
  1848. <item name="android:colorAccent">?attr/colorAccent</item>
  1849. <item name="android:colorControlNormal">?attr/colorControlNormal</item>
  1850. <item name="android:colorControlActivated">?attr/colorControlActivated</item>
  1851. <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
  1852. <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
  1853. </style><style name="Base.V21.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
  1854. <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
  1855. </style><style name="Base.V21.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
  1856. <item name="android:windowElevation">@dimen/abc_floating_window_z</item>
  1857. </style><style name="Base.Widget.AppCompat.ActionBar.TabText" parent="android:Widget.Material.ActionBar.TabText">
  1858. </style><style name="Base.Widget.AppCompat.ActionBar.TabView" parent="android:Widget.Material.ActionBar.TabView">
  1859. </style><style name="Base.Widget.AppCompat.ActionButton" parent="android:Widget.Material.ActionButton">
  1860. </style><style name="Base.Widget.AppCompat.ActionButton.CloseMode" parent="android:Widget.Material.ActionButton.CloseMode">
  1861. <item name="android:minWidth">56dp</item>
  1862. </style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow">
  1863. <item name="android:src">@null</item>
  1864. <item name="srcCompat">@drawable/abc_ic_menu_overflow_material</item>
  1865. </style><style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView">
  1866. <item name="android:background">?attr/editTextBackground</item>
  1867. </style><style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button"/><style name="Base.Widget.AppCompat.Button.Borderless" parent="android:Widget.Material.Button.Borderless"/><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored">
  1868. <item name="android:textColor">@color/abc_btn_colored_borderless_text_material</item>
  1869. </style><style name="Base.Widget.AppCompat.Button.Small" parent="android:Widget.Material.Button.Small"/><style name="Base.Widget.AppCompat.ButtonBar" parent="android:Widget.Material.ButtonBar"/><style name="Base.Widget.AppCompat.CompoundButton.CheckBox" parent="android:Widget.Material.CompoundButton.CheckBox"/><style name="Base.Widget.AppCompat.CompoundButton.RadioButton" parent="android:Widget.Material.CompoundButton.RadioButton"/><style name="Base.Widget.AppCompat.DropDownItem.Spinner" parent="android:Widget.Material.DropDownItem.Spinner"/><style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText">
  1870. <item name="android:background">?attr/editTextBackground</item>
  1871. </style><style name="Base.Widget.AppCompat.ImageButton" parent="android:Widget.Material.ImageButton"/><style name="Base.Widget.AppCompat.Light.ActionBar.TabText" parent="android:Widget.Material.Light.ActionBar.TabText">
  1872. </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse" parent="android:Widget.Material.Light.ActionBar.TabText">
  1873. </style><style name="Base.Widget.AppCompat.Light.ActionBar.TabView" parent="android:Widget.Material.Light.ActionBar.TabView">
  1874. </style><style name="Base.Widget.AppCompat.Light.PopupMenu" parent="android:Widget.Material.Light.PopupMenu">
  1875. </style><style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow">
  1876. <item name="android:dropDownHorizontalOffset">-4dip</item>
  1877. <item name="android:overlapAnchor">true</item>
  1878. </style><style name="Base.Widget.AppCompat.ListPopupWindow" parent="android:Widget.Material.ListPopupWindow">
  1879. </style><style name="Base.Widget.AppCompat.ListView" parent="android:Widget.Material.ListView"/><style name="Base.Widget.AppCompat.ListView.DropDown" parent="android:Widget.Material.ListView.DropDown"/><style name="Base.Widget.AppCompat.ListView.Menu"/><style name="Base.Widget.AppCompat.PopupMenu" parent="android:Widget.Material.PopupMenu">
  1880. </style><style name="Base.Widget.AppCompat.PopupMenu.Overflow">
  1881. <item name="android:dropDownHorizontalOffset">-4dip</item>
  1882. <item name="android:overlapAnchor">true</item>
  1883. </style><style name="Base.Widget.AppCompat.ProgressBar" parent="android:Widget.Material.ProgressBar">
  1884. </style><style name="Base.Widget.AppCompat.ProgressBar.Horizontal" parent="android:Widget.Material.ProgressBar.Horizontal">
  1885. </style><style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar"/><style name="Base.Widget.AppCompat.SeekBar" parent="android:Widget.Material.SeekBar"/><style name="Base.Widget.AppCompat.Spinner" parent="android:Widget.Material.Spinner"/><style name="Base.Widget.AppCompat.TextView" parent="android:Widget.Material.TextView"/><style name="Base.Widget.AppCompat.TextView.SpinnerItem" parent="android:Widget.Material.TextView.SpinnerItem"/><style name="Base.Widget.AppCompat.Toolbar.Button.Navigation" parent="android:Widget.Material.Toolbar.Button.Navigation">
  1886. </style><style name="Platform.AppCompat" parent="Platform.V21.AppCompat"/><style name="Platform.AppCompat.Light" parent="Platform.V21.AppCompat.Light"/><style name="Platform.ThemeOverlay.AppCompat" parent="">
  1887. <item name="android:colorPrimary">?attr/colorPrimary</item>
  1888. <item name="android:colorPrimaryDark">?attr/colorPrimaryDark</item>
  1889. <item name="android:colorAccent">?attr/colorAccent</item>
  1890. <item name="android:colorControlNormal">?attr/colorControlNormal</item>
  1891. <item name="android:colorControlActivated">?attr/colorControlActivated</item>
  1892. <item name="android:colorControlHighlight">?attr/colorControlHighlight</item>
  1893. <item name="android:colorButtonNormal">?attr/colorButtonNormal</item>
  1894. </style><style name="Platform.ThemeOverlay.AppCompat.Dark"/><style name="Platform.ThemeOverlay.AppCompat.Light"/><style name="Platform.V21.AppCompat" parent="android:Theme.Material.NoActionBar">
  1895. <item name="android:textColorLink">?android:attr/colorAccent</item>
  1896. <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
  1897. <item name="android:textColorHint">@color/abc_hint_foreground_material_dark</item>
  1898. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_light</item>
  1899. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  1900. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  1901. </style><style name="Platform.V21.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
  1902. <item name="android:textColorLink">?android:attr/colorAccent</item>
  1903. <item name="android:textColorLinkInverse">?android:attr/colorAccent</item>
  1904. <item name="android:textColorHint">@color/abc_hint_foreground_material_light</item>
  1905. <item name="android:textColorHintInverse">@color/abc_hint_foreground_material_dark</item>
  1906. <item name="android:buttonBarStyle">?attr/buttonBarStyle</item>
  1907. <item name="android:buttonBarButtonStyle">?attr/buttonBarButtonStyle</item>
  1908. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v22\values-v22.xml" qualifiers="v22"><style name="Base.Theme.AppCompat" parent="Base.V22.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light"/><style name="Base.V22.Theme.AppCompat" parent="Base.V21.Theme.AppCompat">
  1909. <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
  1910. <item name="editTextBackground">?android:attr/editTextBackground</item>
  1911. </style><style name="Base.V22.Theme.AppCompat.Light" parent="Base.V21.Theme.AppCompat.Light">
  1912. <item name="actionModeShareDrawable">?android:attr/actionModeShareDrawable</item>
  1913. <item name="editTextBackground">?android:attr/editTextBackground</item>
  1914. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v23\values-v23.xml" qualifiers="v23"><style name="Base.TextAppearance.AppCompat.Widget.ActionBar.Menu" parent="android:TextAppearance.Material.Widget.ActionBar.Menu"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Inverse" parent="android:TextAppearance.Material.Widget.Button.Inverse"/><style name="Base.Theme.AppCompat" parent="Base.V23.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light"/><style name="Base.V23.Theme.AppCompat" parent="Base.V22.Theme.AppCompat">
  1915. <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
  1916. <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
  1917. <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
  1918. <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
  1919. <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
  1920. <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
  1921. <item name="controlBackground">@drawable/abc_control_background_material</item>
  1922. </style><style name="Base.V23.Theme.AppCompat.Light" parent="Base.V22.Theme.AppCompat.Light">
  1923. <item name="ratingBarStyleIndicator">?android:attr/ratingBarStyleIndicator</item>
  1924. <item name="ratingBarStyleSmall">?android:attr/ratingBarStyleSmall</item>
  1925. <item name="actionBarItemBackground">?android:attr/actionBarItemBackground</item>
  1926. <item name="actionMenuTextColor">?android:attr/actionMenuTextColor</item>
  1927. <item name="actionMenuTextAppearance">?android:attr/actionMenuTextAppearance</item>
  1928. <item name="actionOverflowButtonStyle">?android:attr/actionOverflowButtonStyle</item>
  1929. <item name="controlBackground">@drawable/abc_control_background_material</item>
  1930. </style><style name="Base.Widget.AppCompat.ActionButton.Overflow" parent="android:Widget.Material.ActionButton.Overflow"/><style name="Base.Widget.AppCompat.Button.Borderless.Colored" parent="android:Widget.Material.Button.Borderless.Colored"/><style name="Base.Widget.AppCompat.Button.Colored" parent="android:Widget.Material.Button.Colored"/><style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText">
  1931. <item name="android:hyphenationFrequency">none</item>
  1932. <item name="android:breakStrategy">simple</item>
  1933. </style><style name="Base.Widget.AppCompat.RatingBar.Indicator" parent="android:Widget.Material.RatingBar.Indicator"/><style name="Base.Widget.AppCompat.RatingBar.Small" parent="android:Widget.Material.RatingBar.Small"/><style name="Base.Widget.AppCompat.Spinner.Underlined" parent="android:Widget.Material.Spinner.Underlined"/><style name="Base.Widget.AppCompat.TextView" parent="android:Widget.Material.TextView">
  1934. <item name="android:hyphenationFrequency">none</item>
  1935. <item name="android:breakStrategy">high_quality</item>
  1936. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v24\values-v24.xml" qualifiers="v24"><style name="Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored" parent="android:TextAppearance.Material.Widget.Button.Borderless.Colored"/><style name="Base.TextAppearance.AppCompat.Widget.Button.Colored" parent="android:TextAppearance.Material.Widget.Button.Colored"/></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v25\values-v25.xml" qualifiers="v25"><style name="Platform.AppCompat" parent="Platform.V25.AppCompat"/><style name="Platform.AppCompat.Light" parent="Platform.V25.AppCompat.Light"/><style name="Platform.V25.AppCompat" parent="android:Theme.Material.NoActionBar">
  1937. </style><style name="Platform.V25.AppCompat.Light" parent="android:Theme.Material.Light.NoActionBar">
  1938. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v26\values-v26.xml" qualifiers="v26"><style name="Base.Theme.AppCompat" parent="Base.V26.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light"/><style name="Base.V26.Theme.AppCompat" parent="Base.V23.Theme.AppCompat">
  1939. <item name="colorError">?android:attr/colorError</item>
  1940. </style><style name="Base.V26.Theme.AppCompat.Light" parent="Base.V23.Theme.AppCompat.Light">
  1941. <item name="colorError">?android:attr/colorError</item>
  1942. </style><style name="Base.V26.Widget.AppCompat.Toolbar" parent="Base.V7.Widget.AppCompat.Toolbar">
  1943. <item name="android:touchscreenBlocksFocus">true</item>
  1944. <item name="android:keyboardNavigationCluster">true</item>
  1945. </style><style name="Base.Widget.AppCompat.Toolbar" parent="Base.V26.Widget.AppCompat.Toolbar"/></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-v28\values-v28.xml" qualifiers="v28"><style name="Base.Theme.AppCompat" parent="Base.V28.Theme.AppCompat"/><style name="Base.Theme.AppCompat.Light" parent="Base.V28.Theme.AppCompat.Light"/><style name="Base.V28.Theme.AppCompat" parent="Base.V26.Theme.AppCompat">
  1946. <item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item>
  1947. </style><style name="Base.V28.Theme.AppCompat.Light" parent="Base.V26.Theme.AppCompat.Light">
  1948. <item name="dialogCornerRadius">?android:attr/dialogCornerRadius</item>
  1949. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-vi\values-vi.xml" qualifiers="vi"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Chỉ đường về nhà"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Di chuyển lên"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Tùy chọn khác"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Xong"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Xem tất cả"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Chọn một ứng dụng"</string><string msgid="3403923230105792483" name="abc_capital_off">"TẮT"</string><string msgid="7831734969929204599" name="abc_capital_on">"BẬT"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Tìm kiếm…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Xóa truy vấn"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Truy vấn tìm kiếm"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Tìm kiếm"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Gửi truy vấn"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Tìm kiếm bằng giọng nói"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Chia sẻ với"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Chia sẻ với <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Thu gọn"</string><string msgid="730395136688082741" name="search_menu_title">"Tìm kiếm"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-watch-v20\values-watch-v20.xml" qualifiers="watch-v20"><style name="Base.Theme.AppCompat.Dialog" parent="Base.V7.Theme.AppCompat.Dialog">
  1950. <item name="android:windowIsFloating">false</item>
  1951. </style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V7.Theme.AppCompat.Light.Dialog">
  1952. <item name="android:windowIsFloating">false</item>
  1953. </style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V7.ThemeOverlay.AppCompat.Dialog">
  1954. <item name="android:windowIsFloating">false</item>
  1955. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-watch-v21\values-watch-v21.xml" qualifiers="watch-v21"><style name="Base.Theme.AppCompat.Dialog" parent="Base.V21.Theme.AppCompat.Dialog">
  1956. <item name="android:windowIsFloating">false</item>
  1957. <item name="android:windowElevation">0dp</item>
  1958. </style><style name="Base.Theme.AppCompat.Light.Dialog" parent="Base.V21.Theme.AppCompat.Light.Dialog">
  1959. <item name="android:windowIsFloating">false</item>
  1960. <item name="android:windowElevation">0dp</item>
  1961. </style><style name="Base.ThemeOverlay.AppCompat.Dialog" parent="Base.V21.ThemeOverlay.AppCompat.Dialog">
  1962. <item name="android:windowIsFloating">false</item>
  1963. <item name="android:windowElevation">0dp</item>
  1964. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-xlarge-v4\values-xlarge-v4.xml" qualifiers="xlarge-v4"><item name="abc_dialog_fixed_height_major" type="dimen">60%</item><item name="abc_dialog_fixed_height_minor" type="dimen">90%</item><item name="abc_dialog_fixed_width_major" type="dimen">50%</item><item name="abc_dialog_fixed_width_minor" type="dimen">70%</item><item name="abc_dialog_min_width_major" type="dimen">45%</item><item name="abc_dialog_min_width_minor" type="dimen">72%</item></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-zh-rCN\values-zh-rCN.xml" qualifiers="zh-rCN"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"转到首页"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"转到上一层级"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"更多选项"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"完成"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"选择应用"</string><string msgid="3403923230105792483" name="abc_capital_off">"关闭"</string><string msgid="7831734969929204599" name="abc_capital_on">"开启"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete 键"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter 键"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"空格键"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu+"</string><string msgid="940844115270746197" name="abc_search_hint">"搜索…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"清除查询"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"搜索查询"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"搜索"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"提交查询"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"语音搜索"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"分享对象"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"与<ns1:g id="APPLICATION_NAME">%s</ns1:g>分享"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"收起"</string><string msgid="730395136688082741" name="search_menu_title">"搜索"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-zh-rHK\values-zh-rHK.xml" qualifiers="zh-rHK"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"瀏覽主頁"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"完成"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="3403923230105792483" name="abc_capital_off">"關閉"</string><string msgid="7831734969929204599" name="abc_capital_on">"開啟"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"刪除"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter 鍵"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"空白鍵"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="940844115270746197" name="abc_search_hint">"搜尋…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"搜尋"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"分享對象"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"使用「<ns1:g id="APPLICATION_NAME">%s</ns1:g>」分享"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"收合"</string><string msgid="730395136688082741" name="search_menu_title">"搜尋"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-zh-rTW\values-zh-rTW.xml" qualifiers="zh-rTW"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"瀏覽首頁"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"向上瀏覽"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"更多選項"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"完成"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"查看全部"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"選擇應用程式"</string><string msgid="3403923230105792483" name="abc_capital_off">"關閉"</string><string msgid="7831734969929204599" name="abc_capital_on">"開啟"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt +"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"Delete 鍵"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"Enter 鍵"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Fn +"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta +"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift +"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"空格鍵"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym +"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Menu +"</string><string msgid="940844115270746197" name="abc_search_hint">"搜尋…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"清除查詢"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"搜尋查詢"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"搜尋"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"提交查詢"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"語音搜尋"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"分享對象"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"與「<ns1:g id="APPLICATION_NAME">%s</ns1:g>」分享"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"收合"</string><string msgid="730395136688082741" name="search_menu_title">"搜尋"</string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0dcffdfc404f4682a054954dbf7981a8\appcompat-1.1.0\res\values-zu\values-zu.xml" qualifiers="zu"><string msgid="7903180715631665059" name="abc_action_bar_home_description">"Zulazulela ekhaya"</string><string msgid="6794660482873516081" name="abc_action_bar_up_description">"Zulazulela phezulu"</string><string msgid="1155814932213556626" name="abc_action_menu_overflow_description">"Ezinye izinketho"</string><string msgid="2571498368472823490" name="abc_action_mode_done">"Kwenziwe"</string><string msgid="3732416590524162402" name="abc_activity_chooser_view_see_all">"Buka konke"</string><string msgid="1798588241954930982" name="abc_activitychooserview_choose_application">"Khetha insiza"</string><string msgid="3403923230105792483" name="abc_capital_off">"VALA"</string><string msgid="7831734969929204599" name="abc_capital_on">"VULA"</string><string msgid="5725160506500770567" name="abc_menu_alt_shortcut_label">"Alt+"</string><string msgid="944415252197684443" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string><string msgid="129742188101734366" name="abc_menu_delete_shortcut_label">"delete"</string><string msgid="6840127756824236027" name="abc_menu_enter_shortcut_label">"enter"</string><string msgid="4974283687810130415" name="abc_menu_function_shortcut_label">"Function+"</string><string msgid="8046416353848716905" name="abc_menu_meta_shortcut_label">"Meta+"</string><string msgid="3271697756921353410" name="abc_menu_shift_shortcut_label">"Shift+"</string><string msgid="2304645930658438191" name="abc_menu_space_shortcut_label">"space"</string><string msgid="8327365089695024394" name="abc_menu_sym_shortcut_label">"Sym+"</string><string msgid="3570106412128999382" name="abc_prepend_shortcut_label">"Imenyu+"</string><string msgid="940844115270746197" name="abc_search_hint">"Sesha…"</string><string msgid="1769270744562318534" name="abc_searchview_description_clear">"Sula inkinga"</string><string msgid="908784302972860853" name="abc_searchview_description_query">"Sesha umbuzo"</string><string msgid="5466662225065974044" name="abc_searchview_description_search">"Sesha"</string><string msgid="8203855622131699655" name="abc_searchview_description_submit">"Thumela umbuzo"</string><string msgid="3478748990613108725" name="abc_searchview_description_voice">"Ukusesha ngezwi"</string><string msgid="2650565705514630347" name="abc_shareactionprovider_share_with">"Yabelana no"</string><string msgid="9009661856846212431" name="abc_shareactionprovider_share_with_application">"Yabelana ne-<ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string><string msgid="6389460216547290468" name="abc_toolbar_collapse_description">"Goqa"</string><string msgid="730395136688082741" name="search_menu_title">"Sesha"</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.umeng.umsdk:asms:1.8.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\9bee6e39ab41b1d73f99ed845ad693b7\asms-1.8.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.umeng.umsdk:asms:1.8.0" from-dependency="true" generated-set="com.umeng.umsdk:asms:1.8.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\9bee6e39ab41b1d73f99ed845ad693b7\asms-1.8.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\9bee6e39ab41b1d73f99ed845ad693b7\asms-1.8.0\res\values\values.xml" qualifiers=""><string name="app_name">aidum</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="io.github.jeremyliao:live-event-bus-x:1.8.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\024dc31996665de597dce1f08ffb1e32\live-event-bus-x-1.8.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="io.github.jeremyliao:live-event-bus-x:1.8.0" from-dependency="true" generated-set="io.github.jeremyliao:live-event-bus-x:1.8.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\024dc31996665de597dce1f08ffb1e32\live-event-bus-x-1.8.0\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\024dc31996665de597dce1f08ffb1e32\live-event-bus-x-1.8.0\res\values\values.xml" qualifiers=""><string name="app_name">liveeventbus</string></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.google.android.material:material:1.0.0$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.google.android.material:material:1.0.0" from-dependency="true" generated-set="com.google.android.material:material:1.0.0$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res"><file name="design_bottom_sheet_slide_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\anim\design_bottom_sheet_slide_in.xml" qualifiers="" type="anim"/><file name="design_bottom_sheet_slide_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\anim\design_bottom_sheet_slide_out.xml" qualifiers="" type="anim"/><file name="design_snackbar_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\anim\design_snackbar_in.xml" qualifiers="" type="anim"/><file name="design_snackbar_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\anim\design_snackbar_out.xml" qualifiers="" type="anim"/><file name="design_bottom_sheet_slide_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\anim-v21\design_bottom_sheet_slide_in.xml" qualifiers="v21" type="anim"/><file name="design_bottom_sheet_slide_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\anim-v21\design_bottom_sheet_slide_out.xml" qualifiers="v21" type="anim"/><file name="design_fab_hide_motion_spec" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\design_fab_hide_motion_spec.xml" qualifiers="" type="animator"/><file name="design_fab_show_motion_spec" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\design_fab_show_motion_spec.xml" qualifiers="" type="animator"/><file name="mtrl_btn_state_list_anim" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_btn_state_list_anim.xml" qualifiers="" type="animator"/><file name="mtrl_btn_unelevated_state_list_anim" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_btn_unelevated_state_list_anim.xml" qualifiers="" type="animator"/><file name="mtrl_chip_state_list_anim" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_chip_state_list_anim.xml" qualifiers="" type="animator"/><file name="mtrl_fab_hide_motion_spec" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_fab_hide_motion_spec.xml" qualifiers="" type="animator"/><file name="mtrl_fab_show_motion_spec" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_fab_show_motion_spec.xml" qualifiers="" type="animator"/><file name="mtrl_fab_transformation_sheet_collapse_spec" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_fab_transformation_sheet_collapse_spec.xml" qualifiers="" type="animator"/><file name="mtrl_fab_transformation_sheet_expand_spec" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator\mtrl_fab_transformation_sheet_expand_spec.xml" qualifiers="" type="animator"/><file name="design_appbar_state_list_animator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\animator-v21\design_appbar_state_list_animator.xml" qualifiers="v21" type="animator"/><file name="design_error" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\design_error.xml" qualifiers="" type="color"/><file name="design_tint_password_toggle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\design_tint_password_toggle.xml" qualifiers="" type="color"/><file name="mtrl_bottom_nav_colored_item_tint" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_bottom_nav_colored_item_tint.xml" qualifiers="" type="color"/><file name="mtrl_bottom_nav_item_tint" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_bottom_nav_item_tint.xml" qualifiers="" type="color"/><file name="mtrl_btn_bg_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_btn_bg_color_selector.xml" qualifiers="" type="color"/><file name="mtrl_btn_ripple_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_btn_ripple_color.xml" qualifiers="" type="color"/><file name="mtrl_btn_stroke_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_btn_stroke_color_selector.xml" qualifiers="" type="color"/><file name="mtrl_btn_text_btn_ripple_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_btn_text_btn_ripple_color.xml" qualifiers="" type="color"/><file name="mtrl_btn_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_btn_text_color_selector.xml" qualifiers="" type="color"/><file name="mtrl_chip_background_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_chip_background_color.xml" qualifiers="" type="color"/><file name="mtrl_chip_close_icon_tint" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_chip_close_icon_tint.xml" qualifiers="" type="color"/><file name="mtrl_chip_ripple_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_chip_ripple_color.xml" qualifiers="" type="color"/><file name="mtrl_chip_text_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_chip_text_color.xml" qualifiers="" type="color"/><file name="mtrl_fab_ripple_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_fab_ripple_color.xml" qualifiers="" type="color"/><file name="mtrl_tabs_colored_ripple_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_tabs_colored_ripple_color.xml" qualifiers="" type="color"/><file name="mtrl_tabs_icon_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_tabs_icon_color_selector.xml" qualifiers="" type="color"/><file name="mtrl_tabs_icon_color_selector_colored" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_tabs_icon_color_selector_colored.xml" qualifiers="" type="color"/><file name="mtrl_tabs_legacy_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_tabs_legacy_text_color_selector.xml" qualifiers="" type="color"/><file name="mtrl_tabs_ripple_color" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_tabs_ripple_color.xml" qualifiers="" type="color"/><file name="mtrl_text_btn_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color\mtrl_text_btn_text_color_selector.xml" qualifiers="" type="color"/><file name="design_tint_password_toggle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\color-v23\design_tint_password_toggle.xml" qualifiers="v23" type="color"/><file name="design_bottom_navigation_item_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\design_bottom_navigation_item_background.xml" qualifiers="" type="drawable"/><file name="design_fab_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\design_fab_background.xml" qualifiers="" type="drawable"/><file name="design_password_eye" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\design_password_eye.xml" qualifiers="" type="drawable"/><file name="design_snackbar_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\design_snackbar_background.xml" qualifiers="" type="drawable"/><file name="ic_mtrl_chip_checked_black" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\ic_mtrl_chip_checked_black.xml" qualifiers="" type="drawable"/><file name="ic_mtrl_chip_checked_circle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\ic_mtrl_chip_checked_circle.xml" qualifiers="" type="drawable"/><file name="ic_mtrl_chip_close_circle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\ic_mtrl_chip_close_circle.xml" qualifiers="" type="drawable"/><file name="mtrl_snackbar_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\mtrl_snackbar_background.xml" qualifiers="" type="drawable"/><file name="mtrl_tabs_default_indicator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\mtrl_tabs_default_indicator.xml" qualifiers="" type="drawable"/><file name="navigation_empty_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable\navigation_empty_icon.xml" qualifiers="" type="drawable"/><file name="design_ic_visibility" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-anydpi-v21\design_ic_visibility.xml" qualifiers="anydpi-v21" type="drawable"/><file name="design_ic_visibility_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-anydpi-v21\design_ic_visibility_off.xml" qualifiers="anydpi-v21" type="drawable"/><file name="design_ic_visibility" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-hdpi-v4\design_ic_visibility.png" qualifiers="hdpi-v4" type="drawable"/><file name="design_ic_visibility_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-hdpi-v4\design_ic_visibility_off.png" qualifiers="hdpi-v4" type="drawable"/><file name="design_ic_visibility" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-mdpi-v4\design_ic_visibility.png" qualifiers="mdpi-v4" type="drawable"/><file name="design_ic_visibility_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-mdpi-v4\design_ic_visibility_off.png" qualifiers="mdpi-v4" type="drawable"/><file name="avd_hide_password" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-v21\avd_hide_password.xml" qualifiers="v21" type="drawable"/><file name="avd_show_password" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-v21\avd_show_password.xml" qualifiers="v21" type="drawable"/><file name="design_bottom_navigation_item_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-v21\design_bottom_navigation_item_background.xml" qualifiers="v21" type="drawable"/><file name="design_password_eye" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-v21\design_password_eye.xml" qualifiers="v21" type="drawable"/><file name="design_ic_visibility" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-xhdpi-v4\design_ic_visibility.png" qualifiers="xhdpi-v4" type="drawable"/><file name="design_ic_visibility_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-xhdpi-v4\design_ic_visibility_off.png" qualifiers="xhdpi-v4" type="drawable"/><file name="design_ic_visibility" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-xxhdpi-v4\design_ic_visibility.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="design_ic_visibility_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-xxhdpi-v4\design_ic_visibility_off.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="design_ic_visibility" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-xxxhdpi-v4\design_ic_visibility.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="design_ic_visibility_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\drawable-xxxhdpi-v4\design_ic_visibility_off.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="mtrl_fast_out_linear_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator\mtrl_fast_out_linear_in.xml" qualifiers="" type="interpolator"/><file name="mtrl_fast_out_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator\mtrl_fast_out_slow_in.xml" qualifiers="" type="interpolator"/><file name="mtrl_linear" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator\mtrl_linear.xml" qualifiers="" type="interpolator"/><file name="mtrl_linear_out_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator\mtrl_linear_out_slow_in.xml" qualifiers="" type="interpolator"/><file name="mtrl_fast_out_linear_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator-v21\mtrl_fast_out_linear_in.xml" qualifiers="v21" type="interpolator"/><file name="mtrl_fast_out_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator-v21\mtrl_fast_out_slow_in.xml" qualifiers="v21" type="interpolator"/><file name="mtrl_linear_out_slow_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\interpolator-v21\mtrl_linear_out_slow_in.xml" qualifiers="v21" type="interpolator"/><file name="design_bottom_navigation_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_bottom_navigation_item.xml" qualifiers="" type="layout"/><file name="design_bottom_sheet_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_bottom_sheet_dialog.xml" qualifiers="" type="layout"/><file name="design_layout_snackbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_layout_snackbar.xml" qualifiers="" type="layout"/><file name="design_layout_snackbar_include" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_layout_snackbar_include.xml" qualifiers="" type="layout"/><file name="design_layout_tab_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_layout_tab_icon.xml" qualifiers="" type="layout"/><file name="design_layout_tab_text" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_layout_tab_text.xml" qualifiers="" type="layout"/><file name="design_menu_item_action_area" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_menu_item_action_area.xml" qualifiers="" type="layout"/><file name="design_navigation_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_navigation_item.xml" qualifiers="" type="layout"/><file name="design_navigation_item_header" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_navigation_item_header.xml" qualifiers="" type="layout"/><file name="design_navigation_item_separator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_navigation_item_separator.xml" qualifiers="" type="layout"/><file name="design_navigation_item_subheader" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_navigation_item_subheader.xml" qualifiers="" type="layout"/><file name="design_navigation_menu" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_navigation_menu.xml" qualifiers="" type="layout"/><file name="design_navigation_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_navigation_menu_item.xml" qualifiers="" type="layout"/><file name="design_text_input_password_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\design_text_input_password_icon.xml" qualifiers="" type="layout"/><file name="mtrl_layout_snackbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\mtrl_layout_snackbar.xml" qualifiers="" type="layout"/><file name="mtrl_layout_snackbar_include" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout\mtrl_layout_snackbar_include.xml" qualifiers="" type="layout"/><file name="design_layout_snackbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout-sw600dp-v13\design_layout_snackbar.xml" qualifiers="sw600dp-v13" type="layout"/><file name="mtrl_layout_snackbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\layout-sw600dp-v13\mtrl_layout_snackbar.xml" qualifiers="sw600dp-v13" type="layout"/><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\values\values.xml" qualifiers=""><attr format="reference" name="bottomAppBarStyle"/><attr format="reference" name="bottomNavigationStyle"/><attr format="reference" name="bottomSheetDialogTheme"/><attr format="reference" name="bottomSheetStyle"/><attr format="reference" name="chipGroupStyle"/><attr format="reference" name="chipStandaloneStyle"/><attr format="reference" name="chipStyle"/><attr format="color" name="colorSecondary"/><attr name="floatingActionButtonStyle"/><attr format="reference" name="hideMotionSpec"/><attr format="reference" name="materialButtonStyle"/><attr format="reference" name="materialCardViewStyle"/><attr format="reference" name="navigationViewStyle"/><attr format="color" name="rippleColor"/><attr format="color|reference" name="scrimBackground"/><attr format="reference" name="showMotionSpec"/><attr format="color" name="strokeColor"/><attr format="dimension" name="strokeWidth"/><attr format="reference" name="tabStyle"/><attr format="reference" name="textAppearanceBody1"/><attr format="reference" name="textAppearanceBody2"/><attr format="reference" name="textAppearanceButton"/><attr format="reference" name="textAppearanceCaption"/><attr format="reference" name="textAppearanceHeadline1"/><attr format="reference" name="textAppearanceHeadline2"/><attr format="reference" name="textAppearanceHeadline3"/><attr format="reference" name="textAppearanceHeadline4"/><attr format="reference" name="textAppearanceHeadline5"/><attr format="reference" name="textAppearanceHeadline6"/><attr format="reference" name="textAppearanceOverline"/><attr format="reference" name="textAppearanceSubtitle1"/><attr format="reference" name="textAppearanceSubtitle2"/><attr format="reference" name="textInputStyle"/><bool name="mtrl_btn_textappearance_all_caps">true</bool><color name="design_bottom_navigation_shadow_color">#14000000</color><color name="design_default_color_primary">#3F51B5</color><color name="design_default_color_primary_dark">#303F9F</color><color name="design_fab_shadow_end_color">@android:color/transparent</color><color name="design_fab_shadow_mid_color">#14000000</color><color name="design_fab_shadow_start_color">#44000000</color><color name="design_fab_stroke_end_inner_color">#0A000000</color><color name="design_fab_stroke_end_outer_color">#0F000000</color><color name="design_fab_stroke_top_inner_color">#1AFFFFFF</color><color name="design_fab_stroke_top_outer_color">#2EFFFFFF</color><color name="design_snackbar_background_color">#323232</color><color name="mtrl_btn_bg_color_disabled">#1F000000</color><color name="mtrl_btn_text_color_disabled">#61000000</color><color name="mtrl_btn_transparent_bg_color">#00ffffff</color><color name="mtrl_scrim_color">#52000000</color><color name="mtrl_textinput_default_box_stroke_color">#6B000000</color><color name="mtrl_textinput_disabled_color">#1F000000</color><color name="mtrl_textinput_filled_box_default_background_color">#0A000000</color><color name="mtrl_textinput_hovered_box_stroke_color">#DE000000</color><declare-styleable name="AppBarLayout"><attr name="elevation"/><attr name="android:background"/><attr format="boolean" name="expanded"/><attr name="android:keyboardNavigationCluster"/><attr name="android:touchscreenBlocksFocus"/><attr format="boolean" name="liftOnScroll"/></declare-styleable><declare-styleable name="AppBarLayoutStates"><attr format="boolean" name="state_collapsed"/><attr format="boolean" name="state_collapsible"/><attr format="boolean" name="state_lifted"/><attr format="boolean" name="state_liftable"/></declare-styleable><declare-styleable name="AppBarLayout_Layout"><attr name="layout_scrollFlags">
  1965. <flag name="scroll" value="0x1"/>
  1966. <flag name="exitUntilCollapsed" value="0x2"/>
  1967. <flag name="enterAlways" value="0x4"/>
  1968. <flag name="enterAlwaysCollapsed" value="0x8"/>
  1969. <flag name="snap" value="0x10"/>
  1970. <flag name="snapMargins" value="0x20"/>
  1971. </attr><attr format="reference" name="layout_scrollInterpolator"/></declare-styleable><declare-styleable name="BottomAppBar"><attr name="backgroundTint"/><attr name="fabAlignmentMode">
  1972. <enum name="center" value="0"/>
  1973. <enum name="end" value="1"/>
  1974. </attr><attr format="dimension" name="fabCradleMargin"/><attr format="dimension" name="fabCradleRoundedCornerRadius"/><attr format="dimension" name="fabCradleVerticalOffset"/><attr format="boolean" name="hideOnScroll"/></declare-styleable><declare-styleable name="BottomNavigationView"><attr name="menu"/><attr name="labelVisibilityMode">
  1975. <enum name="auto" value="-1"/>
  1976. <enum name="selected" value="0"/>
  1977. <enum name="labeled" value="1"/>
  1978. <enum name="unlabeled" value="2"/>
  1979. </attr><attr name="itemBackground"/><attr format="dimension" name="itemIconSize"/><attr name="itemIconTint"/><attr format="reference" name="itemTextAppearanceInactive"/><attr format="reference" name="itemTextAppearanceActive"/><attr name="itemTextColor"/><attr format="boolean" name="itemHorizontalTranslationEnabled"/><attr name="elevation"/></declare-styleable><declare-styleable name="BottomSheetBehavior_Layout"><attr format="dimension" name="behavior_peekHeight">
  1980. <enum name="auto" value="-1"/>
  1981. </attr><attr format="boolean" name="behavior_hideable"/><attr format="boolean" name="behavior_skipCollapsed"/><attr format="boolean" name="behavior_fitToContents"/></declare-styleable><declare-styleable name="Chip"><attr format="color" name="chipBackgroundColor"/><attr format="dimension" name="chipMinHeight"/><attr format="dimension" name="chipCornerRadius"/><attr format="color" name="chipStrokeColor"/><attr format="dimension" name="chipStrokeWidth"/><attr name="rippleColor"/><attr name="android:text"/><attr name="android:textAppearance"/><attr name="android:ellipsize"/><attr name="android:maxWidth"/><attr format="boolean" name="chipIconVisible"/><attr format="boolean" name="chipIconEnabled"/><attr format="reference" name="chipIcon"/><attr format="color" name="chipIconTint"/><attr format="dimension" name="chipIconSize"/><attr format="boolean" name="closeIconVisible"/><attr format="boolean" name="closeIconEnabled"/><attr format="reference" name="closeIcon"/><attr format="color" name="closeIconTint"/><attr format="dimension" name="closeIconSize"/><attr name="android:checkable"/><attr format="boolean" name="checkedIconVisible"/><attr format="boolean" name="checkedIconEnabled"/><attr format="reference" name="checkedIcon"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/><attr format="dimension" name="chipStartPadding"/><attr format="dimension" name="iconStartPadding"/><attr format="dimension" name="iconEndPadding"/><attr format="dimension" name="textStartPadding"/><attr format="dimension" name="textEndPadding"/><attr format="dimension" name="closeIconStartPadding"/><attr format="dimension" name="closeIconEndPadding"/><attr format="dimension" name="chipEndPadding"/></declare-styleable><declare-styleable name="ChipGroup"><attr format="dimension" name="chipSpacing"/><attr format="dimension" name="chipSpacingHorizontal"/><attr format="dimension" name="chipSpacingVertical"/><attr format="boolean" name="singleLine"/><attr format="boolean" name="singleSelection"/><attr format="reference" name="checkedChip"/></declare-styleable><declare-styleable name="CollapsingToolbarLayout"><attr format="dimension" name="expandedTitleMargin"/><attr format="dimension" name="expandedTitleMarginStart"/><attr format="dimension" name="expandedTitleMarginTop"/><attr format="dimension" name="expandedTitleMarginEnd"/><attr format="dimension" name="expandedTitleMarginBottom"/><attr format="reference" name="expandedTitleTextAppearance"/><attr format="reference" name="collapsedTitleTextAppearance"/><attr format="color" name="contentScrim"/><attr format="color" name="statusBarScrim"/><attr format="reference" name="toolbarId"/><attr format="dimension" name="scrimVisibleHeightTrigger"/><attr format="integer" name="scrimAnimationDuration"/><attr name="collapsedTitleGravity">
  1982. <flag name="top" value="0x30"/>
  1983. <flag name="bottom" value="0x50"/>
  1984. <flag name="left" value="0x03"/>
  1985. <flag name="right" value="0x05"/>
  1986. <flag name="center_vertical" value="0x10"/>
  1987. <flag name="fill_vertical" value="0x70"/>
  1988. <flag name="center_horizontal" value="0x01"/>
  1989. <flag name="center" value="0x11"/>
  1990. <flag name="start" value="0x00800003"/>
  1991. <flag name="end" value="0x00800005"/>
  1992. </attr><attr name="expandedTitleGravity">
  1993. <flag name="top" value="0x30"/>
  1994. <flag name="bottom" value="0x50"/>
  1995. <flag name="left" value="0x03"/>
  1996. <flag name="right" value="0x05"/>
  1997. <flag name="center_vertical" value="0x10"/>
  1998. <flag name="fill_vertical" value="0x70"/>
  1999. <flag name="center_horizontal" value="0x01"/>
  2000. <flag name="center" value="0x11"/>
  2001. <flag name="start" value="0x00800003"/>
  2002. <flag name="end" value="0x00800005"/>
  2003. </attr><attr format="boolean" name="titleEnabled"/><attr name="title"/></declare-styleable><declare-styleable name="CollapsingToolbarLayout_Layout"><attr name="layout_collapseMode">
  2004. <enum name="none" value="0"/>
  2005. <enum name="pin" value="1"/>
  2006. <enum name="parallax" value="2"/>
  2007. </attr><attr format="float" name="layout_collapseParallaxMultiplier"/></declare-styleable><declare-styleable name="DesignTheme"><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/></declare-styleable><declare-styleable name="FloatingActionButton"><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr name="rippleColor"/><attr name="fabSize">
  2008. <enum name="auto" value="-1"/>
  2009. <enum name="normal" value="0"/>
  2010. <enum name="mini" value="1"/>
  2011. </attr><attr format="dimension" name="fabCustomSize"/><attr name="elevation"/><attr format="dimension" name="hoveredFocusedTranslationZ"/><attr format="dimension" name="pressedTranslationZ"/><attr format="dimension" name="borderWidth"/><attr format="boolean" name="useCompatPadding"/><attr format="dimension" name="maxImageSize"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/></declare-styleable><declare-styleable name="FloatingActionButton_Behavior_Layout"><attr format="boolean" name="behavior_autoHide"/></declare-styleable><declare-styleable name="FlowLayout"><attr format="dimension" name="itemSpacing"/><attr format="dimension" name="lineSpacing"/></declare-styleable><declare-styleable name="ForegroundLinearLayout"><attr name="android:foreground"/><attr name="android:foregroundGravity"/><attr format="boolean" name="foregroundInsidePadding"/></declare-styleable><declare-styleable name="MaterialButton"><attr name="android:insetLeft"/><attr name="android:insetRight"/><attr name="android:insetTop"/><attr name="android:insetBottom"/><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr format="reference" name="icon"/><attr format="dimension" name="iconSize"/><attr format="dimension" name="iconPadding"/><attr name="iconGravity">
  2012. <flag name="start" value="0x1"/>
  2013. <flag name="textStart" value="0x2"/>
  2014. </attr><attr format="color" name="iconTint"/><attr name="iconTintMode"/><attr name="strokeColor"/><attr name="strokeWidth"/><attr format="dimension" name="cornerRadius"/><attr name="rippleColor"/></declare-styleable><declare-styleable name="MaterialCardView"><attr name="strokeColor"/><attr name="strokeWidth"/></declare-styleable><declare-styleable name="MaterialComponentsTheme"><attr name="colorAccent"/><attr name="colorPrimary"/><attr name="colorPrimaryDark"/><attr name="colorSecondary"/><attr name="scrimBackground"/><attr name="colorBackgroundFloating"/><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/><attr name="materialButtonStyle"/><attr name="chipGroupStyle"/><attr name="chipStyle"/><attr name="chipStandaloneStyle"/><attr name="editTextStyle"/><attr name="floatingActionButtonStyle"/><attr name="materialCardViewStyle"/><attr name="navigationViewStyle"/><attr name="tabStyle"/><attr name="textInputStyle"/><attr name="snackbarButtonStyle"/><attr name="textAppearanceHeadline1"/><attr name="textAppearanceHeadline2"/><attr name="textAppearanceHeadline3"/><attr name="textAppearanceHeadline4"/><attr name="textAppearanceHeadline5"/><attr name="textAppearanceHeadline6"/><attr name="textAppearanceSubtitle1"/><attr name="textAppearanceSubtitle2"/><attr name="textAppearanceBody1"/><attr name="textAppearanceBody2"/><attr name="textAppearanceCaption"/><attr name="textAppearanceButton"/><attr name="textAppearanceOverline"/></declare-styleable><declare-styleable name="NavigationView"><attr name="android:background"/><attr name="android:fitsSystemWindows"/><attr name="android:maxWidth"/><attr name="elevation"/><attr format="reference" name="menu"/><attr format="color" name="itemIconTint"/><attr format="color" name="itemTextColor"/><attr format="reference" name="itemBackground"/><attr format="reference" name="itemTextAppearance"/><attr format="reference" name="headerLayout"/><attr format="dimension" name="itemHorizontalPadding"/><attr format="dimension" name="itemIconPadding"/></declare-styleable><declare-styleable name="ScrimInsetsFrameLayout"><attr format="color|reference" name="insetForeground"/></declare-styleable><declare-styleable name="ScrollingViewBehavior_Layout"><attr format="dimension" name="behavior_overlapTop"/></declare-styleable><declare-styleable name="Snackbar"><attr format="reference" name="snackbarStyle"/><attr format="reference" name="snackbarButtonStyle"/></declare-styleable><declare-styleable name="SnackbarLayout"><attr name="android:maxWidth"/><attr name="elevation"/><attr format="dimension" name="maxActionInlineWidth"/></declare-styleable><declare-styleable name="TabItem"><attr name="android:text"/><attr name="android:icon"/><attr name="android:layout"/></declare-styleable><declare-styleable name="TabLayout"><attr format="color" name="tabIndicatorColor"/><attr format="dimension" name="tabIndicatorHeight"/><attr format="dimension" name="tabContentStart"/><attr format="reference" name="tabBackground"/><attr format="reference" name="tabIndicator"/><attr name="tabIndicatorGravity">
  2015. <enum name="bottom" value="0"/>
  2016. <enum name="center" value="1"/>
  2017. <enum name="top" value="2"/>
  2018. <enum name="stretch" value="3"/>
  2019. </attr><attr format="integer" name="tabIndicatorAnimationDuration"/><attr format="boolean" name="tabIndicatorFullWidth"/><attr name="tabMode">
  2020. <enum name="scrollable" value="0"/>
  2021. <enum name="fixed" value="1"/>
  2022. </attr><attr name="tabGravity">
  2023. <enum name="fill" value="0"/>
  2024. <enum name="center" value="1"/>
  2025. </attr><attr format="boolean" name="tabInlineLabel"/><attr format="dimension" name="tabMinWidth"/><attr format="dimension" name="tabMaxWidth"/><attr format="reference" name="tabTextAppearance"/><attr format="color" name="tabTextColor"/><attr format="color" name="tabSelectedTextColor"/><attr format="dimension" name="tabPaddingStart"/><attr format="dimension" name="tabPaddingTop"/><attr format="dimension" name="tabPaddingEnd"/><attr format="dimension" name="tabPaddingBottom"/><attr format="dimension" name="tabPadding"/><attr format="color" name="tabIconTint"/><attr name="tabIconTintMode">
  2026. <enum name="src_over" value="3"/>
  2027. <enum name="src_in" value="5"/>
  2028. <enum name="src_atop" value="9"/>
  2029. <enum name="multiply" value="14"/>
  2030. <enum name="screen" value="15"/>
  2031. <enum name="add" value="16"/>
  2032. </attr><attr format="color" name="tabRippleColor"/><attr format="boolean" name="tabUnboundedRipple"/></declare-styleable><declare-styleable name="TextInputLayout"><attr name="android:textColorHint"/><attr name="android:hint"/><attr format="boolean" name="hintEnabled"/><attr format="boolean" name="hintAnimationEnabled"/><attr format="reference" name="hintTextAppearance"/><attr format="string" name="helperText"/><attr format="boolean" name="helperTextEnabled"/><attr format="reference" name="helperTextTextAppearance"/><attr format="boolean" name="errorEnabled"/><attr format="reference" name="errorTextAppearance"/><attr format="boolean" name="counterEnabled"/><attr format="integer" name="counterMaxLength"/><attr format="reference" name="counterTextAppearance"/><attr format="reference" name="counterOverflowTextAppearance"/><attr format="boolean" name="passwordToggleEnabled"/><attr format="reference" name="passwordToggleDrawable"/><attr format="string" name="passwordToggleContentDescription"/><attr format="color" name="passwordToggleTint"/><attr name="passwordToggleTintMode">
  2033. <enum name="src_over" value="3"/>
  2034. <enum name="src_in" value="5"/>
  2035. <enum name="src_atop" value="9"/>
  2036. <enum name="multiply" value="14"/>
  2037. <enum name="screen" value="15"/>
  2038. </attr><attr name="boxBackgroundMode">
  2039. <enum name="none" value="0"/>
  2040. <enum name="filled" value="1"/>
  2041. <enum name="outline" value="2"/>
  2042. </attr><attr format="dimension" name="boxCollapsedPaddingTop"/><attr format="dimension" name="boxCornerRadiusTopStart"/><attr format="dimension" name="boxCornerRadiusTopEnd"/><attr format="dimension" name="boxCornerRadiusBottomStart"/><attr format="dimension" name="boxCornerRadiusBottomEnd"/><attr format="color" name="boxStrokeColor"/><attr format="color" name="boxBackgroundColor"/><attr format="dimension" name="boxStrokeWidth"/></declare-styleable><declare-styleable name="ThemeEnforcement"><attr format="boolean" name="enforceMaterialTheme"/><attr format="boolean" name="enforceTextAppearance"/><attr name="android:textAppearance"/></declare-styleable><dimen name="design_appbar_elevation">4dp</dimen><dimen name="design_bottom_navigation_active_item_max_width">168dp</dimen><dimen name="design_bottom_navigation_active_item_min_width">96dp</dimen><dimen name="design_bottom_navigation_active_text_size">14sp</dimen><dimen name="design_bottom_navigation_elevation">8dp</dimen><dimen name="design_bottom_navigation_height">56dp</dimen><dimen name="design_bottom_navigation_icon_size">24dp</dimen><dimen name="design_bottom_navigation_item_max_width">96dp</dimen><dimen name="design_bottom_navigation_item_min_width">56dp</dimen><dimen name="design_bottom_navigation_margin">8dp</dimen><dimen name="design_bottom_navigation_shadow_height">1dp</dimen><dimen name="design_bottom_navigation_text_size">12sp</dimen><dimen name="design_bottom_sheet_modal_elevation">16dp</dimen><dimen name="design_bottom_sheet_peek_height_min">64dp</dimen><dimen name="design_fab_border_width">0.5dp</dimen><dimen name="design_fab_elevation">6dp</dimen><dimen name="design_fab_image_size">24dp</dimen><dimen name="design_fab_size_mini">40dp</dimen><dimen name="design_fab_size_normal">56dp</dimen><dimen name="design_fab_translation_z_hovered_focused">6dp</dimen><dimen name="design_fab_translation_z_pressed">6dp</dimen><dimen name="design_navigation_elevation">16dp</dimen><dimen name="design_navigation_icon_padding">32dp</dimen><dimen name="design_navigation_icon_size">24dp</dimen><dimen name="design_navigation_item_horizontal_padding">16dp</dimen><dimen name="design_navigation_item_icon_padding">32dp</dimen><dimen name="design_navigation_max_width">280dp</dimen><dimen name="design_navigation_padding_bottom">8dp</dimen><dimen name="design_navigation_separator_vertical_padding">8dp</dimen><dimen name="design_snackbar_action_inline_max_width">128dp</dimen><dimen name="design_snackbar_background_corner_radius">0dp</dimen><dimen name="design_snackbar_elevation">6dp</dimen><dimen name="design_snackbar_extra_spacing_horizontal">0dp</dimen><dimen name="design_snackbar_max_width">-1px</dimen><dimen name="design_snackbar_min_width">-1px</dimen><dimen name="design_snackbar_padding_horizontal">12dp</dimen><dimen name="design_snackbar_padding_vertical">14dp</dimen><dimen name="design_snackbar_padding_vertical_2lines">24dp</dimen><dimen name="design_snackbar_text_size">14sp</dimen><dimen name="design_tab_max_width">264dp</dimen><dimen name="design_tab_scrollable_min_width">72dp</dimen><dimen name="design_tab_text_size">14sp</dimen><dimen name="design_tab_text_size_2line">12sp</dimen><dimen name="design_textinput_caption_translate_y">5dp</dimen><dimen name="mtrl_bottomappbar_fabOffsetEndMode">60dp</dimen><dimen name="mtrl_bottomappbar_fab_cradle_margin">5dp</dimen><dimen name="mtrl_bottomappbar_fab_cradle_rounded_corner_radius">8dp</dimen><dimen name="mtrl_bottomappbar_fab_cradle_vertical_offset">0dp</dimen><dimen name="mtrl_bottomappbar_height">56dp</dimen><dimen name="mtrl_btn_corner_radius">4dp</dimen><dimen name="mtrl_btn_dialog_btn_min_width">64dp</dimen><dimen name="mtrl_btn_disabled_elevation">0dp</dimen><dimen name="mtrl_btn_disabled_z">0dp</dimen><dimen name="mtrl_btn_elevation">2dp</dimen><dimen name="mtrl_btn_focused_z">2dp</dimen><dimen name="mtrl_btn_hovered_z">2dp</dimen><dimen name="mtrl_btn_icon_btn_padding_left">12dp</dimen><dimen name="mtrl_btn_icon_padding">8dp</dimen><dimen name="mtrl_btn_inset">6dp</dimen><item format="float" name="mtrl_btn_letter_spacing" type="dimen">0.07</item><dimen name="mtrl_btn_padding_bottom">4dp</dimen><dimen name="mtrl_btn_padding_left">16dp</dimen><dimen name="mtrl_btn_padding_right">16dp</dimen><dimen name="mtrl_btn_padding_top">4dp</dimen><dimen name="mtrl_btn_pressed_z">6dp</dimen><dimen name="mtrl_btn_stroke_size">1dp</dimen><dimen name="mtrl_btn_text_btn_icon_padding">4dp</dimen><dimen name="mtrl_btn_text_btn_padding_left">8dp</dimen><dimen name="mtrl_btn_text_btn_padding_right">8dp</dimen><dimen name="mtrl_btn_text_size">14sp</dimen><dimen name="mtrl_btn_z">0dp</dimen><dimen name="mtrl_card_elevation">1dp</dimen><dimen name="mtrl_card_spacing">8dp</dimen><dimen name="mtrl_chip_pressed_translation_z">3dp</dimen><dimen name="mtrl_chip_text_size">14sp</dimen><dimen name="mtrl_fab_elevation">6dp</dimen><dimen name="mtrl_fab_translation_z_hovered_focused">2dp</dimen><dimen name="mtrl_fab_translation_z_pressed">6dp</dimen><dimen name="mtrl_navigation_elevation">0dp</dimen><dimen name="mtrl_navigation_item_horizontal_padding">22dp</dimen><dimen name="mtrl_navigation_item_icon_padding">14dp</dimen><dimen name="mtrl_snackbar_background_corner_radius">4dp</dimen><dimen name="mtrl_snackbar_margin">8dp</dimen><dimen name="mtrl_textinput_box_bottom_offset">3dp</dimen><dimen name="mtrl_textinput_box_corner_radius_medium">4dp</dimen><dimen name="mtrl_textinput_box_corner_radius_small">0dp</dimen><dimen name="mtrl_textinput_box_label_cutout_padding">4dp</dimen><dimen name="mtrl_textinput_box_padding_end">12dp</dimen><dimen name="mtrl_textinput_box_stroke_width_default">1dp</dimen><dimen name="mtrl_textinput_box_stroke_width_focused">2dp</dimen><dimen name="mtrl_textinput_outline_box_expanded_padding">16dp</dimen><dimen name="mtrl_toolbar_default_height">56dp</dimen><item name="mtrl_child_content_container" type="id"/><item name="mtrl_internal_children_alpha_tag" type="id"/><item name="snackbar_action" type="id"/><item name="snackbar_text" type="id"/><item name="textinput_counter" type="id"/><item name="textinput_error" type="id"/><item name="textinput_helper_text" type="id"/><item name="view_offset_helper" type="id"/><integer name="app_bar_elevation_anim_duration">150</integer><integer name="bottom_sheet_slide_duration">150</integer><integer name="design_snackbar_text_max_lines">2</integer><integer name="design_tab_indicator_anim_duration_ms">300</integer><integer name="hide_password_duration">320</integer><integer name="mtrl_btn_anim_delay_ms">100</integer><integer name="mtrl_btn_anim_duration_ms">100</integer><integer name="mtrl_chip_anim_duration">100</integer><integer name="mtrl_tab_indicator_anim_duration_ms">250</integer><integer name="show_password_duration">200</integer><string name="appbar_scrolling_view_behavior" translatable="false">com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior</string><string name="bottom_sheet_behavior" translatable="false">com.google.android.material.bottomsheet.BottomSheetBehavior</string><string name="character_counter_content_description">Character limit exceeded %1$d of %2$d</string><string name="character_counter_pattern" translatable="false">%1$d / %2$d</string><string name="fab_transformation_scrim_behavior" translatable="false">com.google.android.material.transformation.FabTransformationScrimBehavior</string><string name="fab_transformation_sheet_behavior" translatable="false">com.google.android.material.transformation.FabTransformationSheetBehavior</string><string name="hide_bottom_view_on_scroll_behavior" translatable="false">com.google.android.material.behavior.HideBottomViewOnScrollBehavior</string><string name="mtrl_chip_close_icon_content_description">Remove %1$s</string><string name="password_toggle_content_description">Show password</string><string name="path_password_eye" translatable="false">M12,4.5C7,4.5 2.73,7.61 1,12c1.73,4.39 6,7.5 11,7.5s9.27,-3.11 11,-7.5c-1.73,-4.39 -6,-7.5 -11,-7.5zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5zM12,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3 3,-1.34 3,-3 -1.34,-3 -3,-3z</string><string name="path_password_eye_mask_strike_through" translatable="false">M2,4.27 L19.73,22 L22.27,19.46 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string><string name="path_password_eye_mask_visible" translatable="false">M2,4.27 L2,4.27 L4.54,1.73 L4.54,1.73 L4.54,1 L23,1 L23,23 L1,23 L1,4.27 Z</string><string name="path_password_strike_through" translatable="false">M3.27,4.27 L19.74,20.74</string><style name="Animation.Design.BottomSheetDialog" parent="Animation.AppCompat.Dialog">
  2043. <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slide_in</item>
  2044. <item name="android:windowExitAnimation">@anim/design_bottom_sheet_slide_out</item>
  2045. </style><style name="Base.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents"/><style name="Base.Theme.MaterialComponents.Bridge" parent="Base.V14.Theme.MaterialComponents.Bridge"/><style name="Base.Theme.MaterialComponents.CompactMenu" parent="">
  2046. <item name="android:itemTextAppearance">?android:attr/textAppearanceMedium</item>
  2047. <item name="android:listViewStyle">@style/Widget.AppCompat.ListView.Menu</item>
  2048. <item name="android:windowAnimationStyle">@style/Animation.AppCompat.DropDownUp</item>
  2049. </style><style name="Base.Theme.MaterialComponents.Dialog" parent="Base.V14.Theme.MaterialComponents.Dialog"/><style name="Base.Theme.MaterialComponents.Dialog.Alert">
  2050. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2051. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2052. </style><style name="Base.Theme.MaterialComponents.Dialog.FixedSize">
  2053. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2054. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2055. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2056. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2057. </style><style name="Base.Theme.MaterialComponents.Dialog.MinWidth">
  2058. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2059. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2060. </style><style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Theme.MaterialComponents"/><style name="Base.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light"/><style name="Base.Theme.MaterialComponents.Light.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.Bridge"/><style name="Base.Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light">
  2061. <item name="actionBarPopupTheme">@style/ThemeOverlay.MaterialComponents.Light</item>
  2062. <item name="actionBarWidgetTheme">@null</item>
  2063. <item name="actionBarTheme">@style/ThemeOverlay.MaterialComponents.Dark.ActionBar</item>
  2064. <item name="listChoiceBackgroundIndicator">@drawable/abc_list_selector_holo_dark</item>
  2065. <item name="colorPrimaryDark">@color/primary_dark_material_dark</item>
  2066. <item name="colorPrimary">@color/primary_material_dark</item>
  2067. </style><style name="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/><style name="Base.Theme.MaterialComponents.Light.Dialog" parent="Base.V14.Theme.MaterialComponents.Light.Dialog"/><style name="Base.Theme.MaterialComponents.Light.Dialog.Alert">
  2068. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2069. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2070. </style><style name="Base.Theme.MaterialComponents.Light.Dialog.FixedSize">
  2071. <item name="windowFixedWidthMajor">@dimen/abc_dialog_fixed_width_major</item>
  2072. <item name="windowFixedWidthMinor">@dimen/abc_dialog_fixed_width_minor</item>
  2073. <item name="windowFixedHeightMajor">@dimen/abc_dialog_fixed_height_major</item>
  2074. <item name="windowFixedHeightMinor">@dimen/abc_dialog_fixed_height_minor</item>
  2075. </style><style name="Base.Theme.MaterialComponents.Light.Dialog.MinWidth">
  2076. <item name="windowMinWidthMajor">@dimen/abc_dialog_min_width_major</item>
  2077. <item name="windowMinWidthMinor">@dimen/abc_dialog_min_width_minor</item>
  2078. </style><style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Theme.MaterialComponents.Light"/><style name="Base.ThemeOverlay.MaterialComponents.Dialog" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog"/><style name="Base.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert"/><style name="Base.V14.Theme.MaterialComponents" parent="Base.V14.Theme.MaterialComponents.Bridge">
  2079. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2080. <item name="colorPrimary">@color/design_default_color_primary</item>
  2081. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2082. <item name="colorAccent">?attr/colorSecondary</item>
  2083. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2084. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2085. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView.Colored</item>
  2086. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2087. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2088. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2089. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2090. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2091. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2092. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2093. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2094. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2095. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout.Colored</item>
  2096. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2097. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2098. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  2099. <item name="android:datePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2100. <item name="android:timePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2101. </style><style name="Base.V14.Theme.MaterialComponents.Bridge" parent="Platform.MaterialComponents">
  2102. <item name="colorSecondary">?attr/colorPrimary</item>
  2103. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2104. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2105. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2106. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2107. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2108. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2109. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2110. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2111. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2112. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2113. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2114. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2115. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2116. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2117. </style><style name="Base.V14.Theme.MaterialComponents.Dialog" parent="Platform.MaterialComponents.Dialog">
  2118. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2119. <item name="colorPrimary">@color/design_default_color_primary</item>
  2120. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2121. <item name="colorSecondary">?attr/colorPrimary</item>
  2122. <item name="colorAccent">?attr/colorSecondary</item>
  2123. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2124. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2125. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2126. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView.Colored</item>
  2127. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2128. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2129. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2130. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2131. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2132. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2133. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2134. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2135. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2136. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2137. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout.Colored</item>
  2138. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2139. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2140. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2141. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2142. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2143. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2144. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2145. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2146. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2147. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2148. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2149. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2150. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2151. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2152. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2153. </style><style name="Base.V14.Theme.MaterialComponents.Light" parent="Base.V14.Theme.MaterialComponents.Light.Bridge">
  2154. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2155. <item name="colorPrimary">@color/design_default_color_primary</item>
  2156. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2157. <item name="colorAccent">?attr/colorSecondary</item>
  2158. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2159. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2160. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  2161. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2162. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2163. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2164. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2165. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2166. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2167. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2168. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2169. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2170. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  2171. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2172. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2173. <item name="alertDialogTheme">@style/ThemeOverlay.MaterialComponents.Dialog.Alert</item>
  2174. <item name="android:datePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2175. <item name="android:timePickerDialogTheme" ns2:ignore="NewApi">@style/ThemeOverlay.MaterialComponents.Dialog</item>
  2176. </style><style name="Base.V14.Theme.MaterialComponents.Light.Bridge" parent="Platform.MaterialComponents.Light">
  2177. <item name="colorSecondary">?attr/colorPrimary</item>
  2178. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2179. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2180. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2181. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2182. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2183. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2184. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2185. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2186. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2187. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2188. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2189. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2190. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2191. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2192. </style><style name="Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Theme.AppCompat.Light.DarkActionBar">
  2193. <item name="colorSecondary">?attr/colorPrimary</item>
  2194. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2195. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2196. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2197. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2198. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2199. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2200. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2201. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2202. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2203. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2204. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2205. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2206. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2207. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2208. </style><style name="Base.V14.Theme.MaterialComponents.Light.Dialog" parent="Platform.MaterialComponents.Light.Dialog">
  2209. <item name="viewInflaterClass">com.google.android.material.theme.MaterialComponentsViewInflater</item>
  2210. <item name="colorPrimary">@color/design_default_color_primary</item>
  2211. <item name="colorPrimaryDark">@color/design_default_color_primary_dark</item>
  2212. <item name="colorSecondary">?attr/colorPrimary</item>
  2213. <item name="colorAccent">?attr/colorSecondary</item>
  2214. <item name="scrimBackground">@color/mtrl_scrim_color</item>
  2215. <item name="borderlessButtonStyle">@style/Widget.MaterialComponents.Button.TextButton</item>
  2216. <item name="bottomAppBarStyle">@style/Widget.MaterialComponents.BottomAppBar</item>
  2217. <item name="bottomNavigationStyle">@style/Widget.MaterialComponents.BottomNavigationView</item>
  2218. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2219. <item name="chipStyle">@style/Widget.MaterialComponents.Chip.Action</item>
  2220. <item name="chipGroupStyle">@style/Widget.MaterialComponents.ChipGroup</item>
  2221. <item name="chipStandaloneStyle">@style/Widget.MaterialComponents.Chip.Entry</item>
  2222. <item name="floatingActionButtonStyle">@style/Widget.MaterialComponents.FloatingActionButton</item>
  2223. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
  2224. <item name="materialCardViewStyle">@style/Widget.MaterialComponents.CardView</item>
  2225. <item name="navigationViewStyle">@style/Widget.MaterialComponents.NavigationView</item>
  2226. <item name="snackbarStyle">@style/Widget.MaterialComponents.Snackbar</item>
  2227. <item name="snackbarButtonStyle">?attr/borderlessButtonStyle</item>
  2228. <item name="tabStyle">@style/Widget.MaterialComponents.TabLayout</item>
  2229. <item name="textInputStyle">@style/Widget.Design.TextInputLayout</item>
  2230. <item name="toolbarStyle">@style/Widget.MaterialComponents.Toolbar</item>
  2231. <item name="textAppearanceHeadline1">@style/TextAppearance.MaterialComponents.Headline1</item>
  2232. <item name="textAppearanceHeadline2">@style/TextAppearance.MaterialComponents.Headline2</item>
  2233. <item name="textAppearanceHeadline3">@style/TextAppearance.MaterialComponents.Headline3</item>
  2234. <item name="textAppearanceHeadline4">@style/TextAppearance.MaterialComponents.Headline4</item>
  2235. <item name="textAppearanceHeadline5">@style/TextAppearance.MaterialComponents.Headline5</item>
  2236. <item name="textAppearanceHeadline6">@style/TextAppearance.MaterialComponents.Headline6</item>
  2237. <item name="textAppearanceSubtitle1">@style/TextAppearance.MaterialComponents.Subtitle1</item>
  2238. <item name="textAppearanceSubtitle2">@style/TextAppearance.MaterialComponents.Subtitle2</item>
  2239. <item name="textAppearanceBody1">@style/TextAppearance.MaterialComponents.Body1</item>
  2240. <item name="textAppearanceBody2">@style/TextAppearance.MaterialComponents.Body2</item>
  2241. <item name="textAppearanceCaption">@style/TextAppearance.MaterialComponents.Caption</item>
  2242. <item name="textAppearanceButton">@style/TextAppearance.MaterialComponents.Button</item>
  2243. <item name="textAppearanceOverline">@style/TextAppearance.MaterialComponents.Overline</item>
  2244. </style><style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog" parent="ThemeOverlay.AppCompat.Dialog">
  2245. <item name="materialButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2246. </style><style name="Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert" parent="ThemeOverlay.AppCompat.Dialog.Alert">
  2247. <item name="buttonBarButtonStyle">@style/Widget.MaterialComponents.Button.TextButton.Dialog</item>
  2248. </style><style name="Base.Widget.Design.TabLayout" parent="android:Widget">
  2249. <item name="android:background">@null</item>
  2250. <item name="tabIconTint">@null</item>
  2251. <item name="tabMaxWidth">@dimen/design_tab_max_width</item>
  2252. <item name="tabIndicatorAnimationDuration">@integer/design_tab_indicator_anim_duration_ms</item>
  2253. <item name="tabIndicatorColor">?attr/colorAccent</item>
  2254. <item name="tabIndicatorGravity">bottom</item>
  2255. <item name="tabIndicator">@drawable/mtrl_tabs_default_indicator</item>
  2256. <item name="tabPaddingStart">12dp</item>
  2257. <item name="tabPaddingEnd">12dp</item>
  2258. <item name="tabTextAppearance">@style/TextAppearance.Design.Tab</item>
  2259. <item name="tabRippleColor">?attr/colorControlHighlight</item>
  2260. <item name="tabUnboundedRipple">false</item>
  2261. </style><style name="Base.Widget.MaterialComponents.Chip" parent="android:Widget">
  2262. <item name="android:focusable">true</item>
  2263. <item name="android:clickable">true</item>
  2264. <item name="android:checkable">false</item>
  2265. <item name="android:stateListAnimator" ns2:ignore="NewApi">
  2266. @animator/mtrl_chip_state_list_anim
  2267. </item>
  2268. <item name="chipIconVisible">true</item>
  2269. <item name="checkedIconVisible">true</item>
  2270. <item name="closeIconVisible">true</item>
  2271. <item name="chipIcon">@null</item>
  2272. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_circle</item>
  2273. <item name="closeIcon">@drawable/ic_mtrl_chip_close_circle</item>
  2274. <item name="android:text">@null</item>
  2275. <item name="enforceTextAppearance">true</item>
  2276. <item name="android:textAppearance">?attr/textAppearanceBody2</item>
  2277. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  2278. <item name="closeIconTint">@color/mtrl_chip_close_icon_tint</item>
  2279. <item name="chipBackgroundColor">@color/mtrl_chip_background_color</item>
  2280. <item name="chipStrokeColor">#00000000</item>
  2281. <item name="chipStrokeWidth">0dp</item>
  2282. <item name="rippleColor">@color/mtrl_chip_ripple_color</item>
  2283. <item name="chipMinHeight">32dp</item>
  2284. <item name="chipCornerRadius">16dp</item>
  2285. <item name="chipIconSize">24dp</item>
  2286. <item name="closeIconSize">18dp</item>
  2287. <item name="chipStartPadding">4dp</item>
  2288. <item name="iconStartPadding">0dp</item>
  2289. <item name="iconEndPadding">0dp</item>
  2290. <item name="textStartPadding">8dp</item>
  2291. <item name="textEndPadding">6dp</item>
  2292. <item name="closeIconStartPadding">2dp</item>
  2293. <item name="closeIconEndPadding">2dp</item>
  2294. <item name="chipEndPadding">6dp</item>
  2295. </style><style name="Base.Widget.MaterialComponents.TextInputEditText" parent="Widget.AppCompat.EditText">
  2296. <item name="android:paddingStart" ns2:ignore="NewApi">12dp</item>
  2297. <item name="android:paddingEnd" ns2:ignore="NewApi">12dp</item>
  2298. <item name="android:paddingLeft">12dp</item>
  2299. <item name="android:paddingRight">12dp</item>
  2300. <item name="android:paddingTop">16dp</item>
  2301. <item name="android:paddingBottom">16dp</item>
  2302. </style><style name="Base.Widget.MaterialComponents.TextInputLayout" parent="Widget.Design.TextInputLayout">
  2303. <item name="boxBackgroundMode">outline</item>
  2304. <item name="boxBackgroundColor">@null</item>
  2305. <item name="boxCollapsedPaddingTop">0dp</item>
  2306. <item name="boxCornerRadiusTopStart">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  2307. <item name="boxCornerRadiusTopEnd">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  2308. <item name="boxCornerRadiusBottomEnd">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  2309. <item name="boxCornerRadiusBottomStart">@dimen/mtrl_textinput_box_corner_radius_medium</item>
  2310. <item name="boxStrokeColor">?attr/colorControlActivated</item>
  2311. </style><style name="Platform.MaterialComponents" parent="Theme.AppCompat"/><style name="Platform.MaterialComponents.Dialog" parent="Theme.AppCompat.Dialog"/><style name="Platform.MaterialComponents.Light" parent="Theme.AppCompat.Light"/><style name="Platform.MaterialComponents.Light.Dialog" parent="Theme.AppCompat.Light.Dialog"/><style name="TextAppearance.Design.CollapsingToolbar.Expanded" parent="TextAppearance.AppCompat.Display1">
  2312. <item name="android:textColor">?android:attr/textColorPrimary</item>
  2313. </style><style name="TextAppearance.Design.Counter" parent="TextAppearance.AppCompat.Caption"/><style name="TextAppearance.Design.Counter.Overflow" parent="TextAppearance.AppCompat.Caption">
  2314. <item name="android:textColor">@color/design_error</item>
  2315. </style><style name="TextAppearance.Design.Error" parent="TextAppearance.AppCompat.Caption">
  2316. <item name="android:textColor">@color/design_error</item>
  2317. </style><style name="TextAppearance.Design.HelperText" parent="TextAppearance.AppCompat.Caption"/><style name="TextAppearance.Design.Hint" parent="TextAppearance.AppCompat.Caption">
  2318. <item name="android:textColor">?attr/colorControlActivated</item>
  2319. </style><style name="TextAppearance.Design.Snackbar.Message" parent="android:TextAppearance">
  2320. <item name="android:textSize">@dimen/design_snackbar_text_size</item>
  2321. <item name="android:textColor">?android:textColorPrimary</item>
  2322. </style><style name="TextAppearance.Design.Tab" parent="TextAppearance.AppCompat.Button">
  2323. <item name="android:textSize">@dimen/design_tab_text_size</item>
  2324. <item name="android:textColor">@color/mtrl_tabs_legacy_text_color_selector</item>
  2325. <item name="textAllCaps">true</item>
  2326. </style><style name="TextAppearance.MaterialComponents.Body1" parent="TextAppearance.AppCompat.Body2">
  2327. <item name="fontFamily">sans-serif</item>
  2328. <item name="android:fontFamily">sans-serif</item>
  2329. <item name="android:textStyle">normal</item>
  2330. <item name="android:textAllCaps">false</item>
  2331. <item name="android:textSize">16sp</item>
  2332. <item name="android:letterSpacing">0.03125</item>
  2333. </style><style name="TextAppearance.MaterialComponents.Body2" parent="TextAppearance.AppCompat.Body1">
  2334. <item name="fontFamily">sans-serif</item>
  2335. <item name="android:fontFamily">sans-serif</item>
  2336. <item name="android:textStyle">normal</item>
  2337. <item name="android:textAllCaps">false</item>
  2338. <item name="android:textSize">14sp</item>
  2339. <item name="android:letterSpacing">0.0178571429</item>
  2340. </style><style name="TextAppearance.MaterialComponents.Button" parent="TextAppearance.AppCompat.Button">
  2341. <item name="fontFamily">sans-serif-medium</item>
  2342. <item name="android:fontFamily">sans-serif-medium</item>
  2343. <item name="android:textStyle">bold</item>
  2344. <item name="android:textAllCaps">true</item>
  2345. <item name="android:textSize">14sp</item>
  2346. <item name="android:letterSpacing">0.0892857143</item>
  2347. </style><style name="TextAppearance.MaterialComponents.Caption" parent="TextAppearance.AppCompat.Caption">
  2348. <item name="fontFamily">sans-serif</item>
  2349. <item name="android:fontFamily">sans-serif</item>
  2350. <item name="android:textStyle">normal</item>
  2351. <item name="android:textAllCaps">false</item>
  2352. <item name="android:textSize">12sp</item>
  2353. <item name="android:letterSpacing">0.0333333333</item>
  2354. </style><style name="TextAppearance.MaterialComponents.Chip" parent="TextAppearance.AppCompat">
  2355. <item name="android:textColor">@color/mtrl_chip_text_color</item>
  2356. <item name="android:textSize">@dimen/mtrl_chip_text_size</item>
  2357. </style><style name="TextAppearance.MaterialComponents.Headline1" parent="TextAppearance.AppCompat.Display4">
  2358. <item name="fontFamily">sans-serif-light</item>
  2359. <item name="android:fontFamily">sans-serif-light</item>
  2360. <item name="android:textStyle">normal</item>
  2361. <item name="android:textAllCaps">false</item>
  2362. <item name="android:textSize">96sp</item>
  2363. <item name="android:letterSpacing">-0.015625</item>
  2364. </style><style name="TextAppearance.MaterialComponents.Headline2" parent="TextAppearance.AppCompat.Display3">
  2365. <item name="fontFamily">sans-serif-light</item>
  2366. <item name="android:fontFamily">sans-serif-light</item>
  2367. <item name="android:textStyle">normal</item>
  2368. <item name="android:textAllCaps">false</item>
  2369. <item name="android:textSize">60sp</item>
  2370. <item name="android:letterSpacing">-0.00833333333</item>
  2371. </style><style name="TextAppearance.MaterialComponents.Headline3" parent="TextAppearance.AppCompat.Display2">
  2372. <item name="fontFamily">sans-serif</item>
  2373. <item name="android:fontFamily">sans-serif</item>
  2374. <item name="android:textStyle">normal</item>
  2375. <item name="android:textAllCaps">false</item>
  2376. <item name="android:textSize">48sp</item>
  2377. <item name="android:letterSpacing">0</item>
  2378. </style><style name="TextAppearance.MaterialComponents.Headline4" parent="TextAppearance.AppCompat.Display1">
  2379. <item name="fontFamily">sans-serif</item>
  2380. <item name="android:fontFamily">sans-serif</item>
  2381. <item name="android:textStyle">normal</item>
  2382. <item name="android:textAllCaps">false</item>
  2383. <item name="android:textSize">34sp</item>
  2384. <item name="android:letterSpacing">0.00735294118</item>
  2385. </style><style name="TextAppearance.MaterialComponents.Headline5" parent="TextAppearance.AppCompat.Headline">
  2386. <item name="fontFamily">sans-serif</item>
  2387. <item name="android:fontFamily">sans-serif</item>
  2388. <item name="android:textStyle">normal</item>
  2389. <item name="android:textAllCaps">false</item>
  2390. <item name="android:textSize">24sp</item>
  2391. <item name="android:letterSpacing">0</item>
  2392. </style><style name="TextAppearance.MaterialComponents.Headline6" parent="TextAppearance.AppCompat.Title">
  2393. <item name="fontFamily">sans-serif-medium</item>
  2394. <item name="android:fontFamily">sans-serif-medium</item>
  2395. <item name="android:textStyle">bold</item>
  2396. <item name="android:textAllCaps">false</item>
  2397. <item name="android:textSize">20sp</item>
  2398. <item name="android:letterSpacing">0.0125</item>
  2399. </style><style name="TextAppearance.MaterialComponents.Overline" parent="TextAppearance.AppCompat">
  2400. <item name="fontFamily">sans-serif-medium</item>
  2401. <item name="android:fontFamily">sans-serif-medium</item>
  2402. <item name="android:textStyle">bold</item>
  2403. <item name="android:textAllCaps">true</item>
  2404. <item name="android:textSize">12sp</item>
  2405. <item name="android:letterSpacing">0.166666667</item>
  2406. </style><style name="TextAppearance.MaterialComponents.Subtitle1" parent="TextAppearance.AppCompat.Subhead">
  2407. <item name="fontFamily">sans-serif</item>
  2408. <item name="android:fontFamily">sans-serif</item>
  2409. <item name="android:textStyle">normal</item>
  2410. <item name="android:textAllCaps">false</item>
  2411. <item name="android:textSize">16sp</item>
  2412. <item name="android:letterSpacing">0.009375</item>
  2413. </style><style name="TextAppearance.MaterialComponents.Subtitle2" parent="TextAppearance.AppCompat.Subhead">
  2414. <item name="fontFamily">sans-serif-medium</item>
  2415. <item name="android:fontFamily">sans-serif-medium</item>
  2416. <item name="android:textStyle">bold</item>
  2417. <item name="android:textAllCaps">false</item>
  2418. <item name="android:textSize">14sp</item>
  2419. <item name="android:letterSpacing">0.00714285714</item>
  2420. </style><style name="TextAppearance.MaterialComponents.Tab" parent="TextAppearance.Design.Tab">
  2421. <item name="android:textColor">@color/mtrl_tabs_icon_color_selector</item>
  2422. </style><style name="Theme.Design" parent="Theme.AppCompat">
  2423. </style><style name="Theme.Design.BottomSheetDialog" parent="Theme.AppCompat.Dialog">
  2424. <item name="android:windowBackground">@android:color/transparent</item>
  2425. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  2426. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  2427. </style><style name="Theme.Design.Light" parent="Theme.AppCompat.Light">
  2428. </style><style name="Theme.Design.Light.BottomSheetDialog" parent="Theme.AppCompat.Light.Dialog">
  2429. <item name="android:windowBackground">@android:color/transparent</item>
  2430. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  2431. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  2432. </style><style name="Theme.Design.Light.NoActionBar">
  2433. <item name="windowActionBar">false</item>
  2434. <item name="windowNoTitle">true</item>
  2435. </style><style name="Theme.Design.NoActionBar">
  2436. <item name="windowActionBar">false</item>
  2437. <item name="windowNoTitle">true</item>
  2438. </style><style name="Theme.MaterialComponents" parent="Base.Theme.MaterialComponents"/><style name="Theme.MaterialComponents.BottomSheetDialog" parent="Theme.MaterialComponents.Dialog">
  2439. <item name="android:windowBackground">@android:color/transparent</item>
  2440. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  2441. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  2442. </style><style name="Theme.MaterialComponents.Bridge" parent="Base.Theme.MaterialComponents.Bridge"/><style name="Theme.MaterialComponents.CompactMenu" parent="Base.Theme.MaterialComponents.CompactMenu"/><style name="Theme.MaterialComponents.Dialog" parent="Base.Theme.MaterialComponents.Dialog"/><style name="Theme.MaterialComponents.Dialog.Alert" parent="Base.Theme.MaterialComponents.Dialog.Alert"/><style name="Theme.MaterialComponents.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Dialog.MinWidth"/><style name="Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.DialogWhenLarge">
  2443. </style><style name="Theme.MaterialComponents.Light" parent="Base.Theme.MaterialComponents.Light"/><style name="Theme.MaterialComponents.Light.BottomSheetDialog" parent="Theme.MaterialComponents.Light.Dialog">
  2444. <item name="android:windowBackground">@android:color/transparent</item>
  2445. <item name="android:windowAnimationStyle">@style/Animation.Design.BottomSheetDialog</item>
  2446. <item name="bottomSheetStyle">@style/Widget.Design.BottomSheet.Modal</item>
  2447. </style><style name="Theme.MaterialComponents.Light.Bridge" parent="Base.Theme.MaterialComponents.Light.Bridge"/><style name="Theme.MaterialComponents.Light.DarkActionBar" parent="Base.Theme.MaterialComponents.Light.DarkActionBar"/><style name="Theme.MaterialComponents.Light.DarkActionBar.Bridge" parent="Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge"/><style name="Theme.MaterialComponents.Light.Dialog" parent="Base.Theme.MaterialComponents.Light.Dialog"/><style name="Theme.MaterialComponents.Light.Dialog.Alert" parent="Base.Theme.MaterialComponents.Light.Dialog.Alert"/><style name="Theme.MaterialComponents.Light.Dialog.MinWidth" parent="Base.Theme.MaterialComponents.Light.Dialog.MinWidth"/><style name="Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.DialogWhenLarge">
  2448. </style><style name="Theme.MaterialComponents.Light.NoActionBar">
  2449. <item name="windowActionBar">false</item>
  2450. <item name="windowNoTitle">true</item>
  2451. </style><style name="Theme.MaterialComponents.Light.NoActionBar.Bridge" parent="Theme.MaterialComponents.Light.Bridge">
  2452. <item name="windowActionBar">false</item>
  2453. <item name="windowNoTitle">true</item>
  2454. </style><style name="Theme.MaterialComponents.NoActionBar">
  2455. <item name="windowActionBar">false</item>
  2456. <item name="windowNoTitle">true</item>
  2457. </style><style name="Theme.MaterialComponents.NoActionBar.Bridge" parent="Theme.MaterialComponents.Bridge">
  2458. <item name="windowActionBar">false</item>
  2459. <item name="windowNoTitle">true</item>
  2460. </style><style name="ThemeOverlay.MaterialComponents" parent="ThemeOverlay.AppCompat"/><style name="ThemeOverlay.MaterialComponents.ActionBar" parent="ThemeOverlay.AppCompat.ActionBar"/><style name="ThemeOverlay.MaterialComponents.Dark" parent="ThemeOverlay.AppCompat.Dark"/><style name="ThemeOverlay.MaterialComponents.Dark.ActionBar" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/><style name="ThemeOverlay.MaterialComponents.Dialog" parent="Base.ThemeOverlay.MaterialComponents.Dialog"/><style name="ThemeOverlay.MaterialComponents.Dialog.Alert" parent="Base.ThemeOverlay.MaterialComponents.Dialog.Alert"/><style name="ThemeOverlay.MaterialComponents.Light" parent="ThemeOverlay.AppCompat.Light"/><style name="ThemeOverlay.MaterialComponents.TextInputEditText" parent=""/><style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox">
  2461. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox</item>
  2462. </style><style name="ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense">
  2463. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.FilledBox.Dense
  2464. </item>
  2465. </style><style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox">
  2466. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox</item>
  2467. </style><style name="ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  2468. <item name="editTextStyle">@style/Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  2469. </item>
  2470. </style><style name="Widget.Design.AppBarLayout" parent="android:Widget">
  2471. <item name="android:background">?attr/colorPrimary</item>
  2472. <item name="android:stateListAnimator" ns2:ignore="NewApi">
  2473. @animator/design_appbar_state_list_animator
  2474. </item>
  2475. <item name="android:keyboardNavigationCluster" ns2:ignore="NewApi">true</item>
  2476. <item name="android:touchscreenBlocksFocus" ns2:ignore="NewApi">true</item>
  2477. </style><style name="Widget.Design.BottomNavigationView" parent="">
  2478. <item name="elevation">@dimen/design_bottom_navigation_elevation</item>
  2479. <item name="itemBackground">?attr/selectableItemBackgroundBorderless</item>
  2480. <item name="itemHorizontalTranslationEnabled">true</item>
  2481. <item name="itemIconSize">@dimen/design_bottom_navigation_icon_size</item>
  2482. <item name="labelVisibilityMode">auto</item>
  2483. </style><style name="Widget.Design.BottomSheet.Modal" parent="android:Widget">
  2484. <item name="android:background">?android:attr/colorBackground</item>
  2485. <item name="android:elevation" ns2:ignore="NewApi">
  2486. @dimen/design_bottom_sheet_modal_elevation
  2487. </item>
  2488. <item name="behavior_peekHeight">auto</item>
  2489. <item name="behavior_hideable">true</item>
  2490. <item name="behavior_skipCollapsed">false</item>
  2491. </style><style name="Widget.Design.CollapsingToolbar" parent="android:Widget">
  2492. <item name="expandedTitleMargin">32dp</item>
  2493. <item name="statusBarScrim">?attr/colorPrimaryDark</item>
  2494. </style><style name="Widget.Design.FloatingActionButton" parent="android:Widget">
  2495. <item name="android:background">@drawable/design_fab_background</item>
  2496. <item name="android:clickable">true</item>
  2497. <item name="android:focusable">true</item>
  2498. <item name="backgroundTint">?attr/colorAccent</item>
  2499. <item name="fabSize">auto</item>
  2500. <item name="elevation">@dimen/design_fab_elevation</item>
  2501. <item name="hoveredFocusedTranslationZ">@dimen/design_fab_translation_z_hovered_focused</item>
  2502. <item name="pressedTranslationZ">@dimen/design_fab_translation_z_pressed</item>
  2503. <item name="rippleColor">?attr/colorControlHighlight</item>
  2504. <item name="borderWidth">@dimen/design_fab_border_width</item>
  2505. <item name="maxImageSize">@dimen/design_fab_image_size</item>
  2506. <item name="showMotionSpec">@animator/design_fab_show_motion_spec</item>
  2507. <item name="hideMotionSpec">@animator/design_fab_hide_motion_spec</item>
  2508. </style><style name="Widget.Design.NavigationView" parent="">
  2509. <item name="elevation">@dimen/design_navigation_elevation</item>
  2510. <item name="itemIconPadding">@dimen/design_navigation_item_icon_padding</item>
  2511. <item name="itemHorizontalPadding">@dimen/design_navigation_item_horizontal_padding</item>
  2512. <item name="android:background">?android:attr/windowBackground</item>
  2513. <item name="android:fitsSystemWindows">true</item>
  2514. <item name="android:maxWidth">@dimen/design_navigation_max_width</item>
  2515. </style><style name="Widget.Design.ScrimInsetsFrameLayout" parent="">
  2516. <item name="insetForeground">#4000</item>
  2517. </style><style name="Widget.Design.Snackbar" parent="android:Widget">
  2518. <item name="android:minWidth">@dimen/design_snackbar_min_width</item>
  2519. <item name="android:maxWidth">@dimen/design_snackbar_max_width</item>
  2520. <item name="android:background">@drawable/design_snackbar_background</item>
  2521. <item name="android:paddingLeft">@dimen/design_snackbar_padding_horizontal</item>
  2522. <item name="android:paddingRight">@dimen/design_snackbar_padding_horizontal</item>
  2523. <item name="elevation">@dimen/design_snackbar_elevation</item>
  2524. <item name="maxActionInlineWidth">@dimen/design_snackbar_action_inline_max_width</item>
  2525. </style><style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout">
  2526. <item name="tabGravity">fill</item>
  2527. <item name="tabMode">fixed</item>
  2528. <item name="tabIndicatorFullWidth">true</item>
  2529. </style><style name="Widget.Design.TextInputLayout" parent="android:Widget">
  2530. <item name="boxBackgroundMode">none</item>
  2531. <item name="hintTextAppearance">@style/TextAppearance.Design.Hint</item>
  2532. <item name="helperTextTextAppearance">@style/TextAppearance.Design.HelperText</item>
  2533. <item name="errorTextAppearance">@style/TextAppearance.Design.Error</item>
  2534. <item name="counterTextAppearance">@style/TextAppearance.Design.Counter</item>
  2535. <item name="counterOverflowTextAppearance">@style/TextAppearance.Design.Counter.Overflow</item>
  2536. <item name="passwordToggleDrawable">@drawable/design_password_eye</item>
  2537. <item name="passwordToggleTint">@color/design_tint_password_toggle</item>
  2538. <item name="passwordToggleContentDescription">@string/password_toggle_content_description</item>
  2539. </style><style name="Widget.MaterialComponents.BottomAppBar" parent="Widget.AppCompat.Toolbar">
  2540. <item name="backgroundTint">@android:color/white</item>
  2541. <item name="fabCradleMargin">@dimen/mtrl_bottomappbar_fab_cradle_margin</item>
  2542. <item name="fabCradleRoundedCornerRadius">
  2543. @dimen/mtrl_bottomappbar_fab_cradle_rounded_corner_radius
  2544. </item>
  2545. <item name="fabCradleVerticalOffset">@dimen/mtrl_bottomappbar_fab_cradle_vertical_offset</item>
  2546. </style><style name="Widget.MaterialComponents.BottomAppBar.Colored" parent="Widget.MaterialComponents.BottomAppBar">
  2547. <item name="backgroundTint">?attr/colorPrimary</item>
  2548. </style><style name="Widget.MaterialComponents.BottomNavigationView" parent="Widget.Design.BottomNavigationView">
  2549. <item name="android:background">@android:color/white</item>
  2550. <item name="enforceTextAppearance">true</item>
  2551. <item name="itemHorizontalTranslationEnabled">false</item>
  2552. <item name="itemIconTint">@color/mtrl_bottom_nav_item_tint</item>
  2553. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  2554. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  2555. <item name="itemTextColor">@color/mtrl_bottom_nav_item_tint</item>
  2556. </style><style name="Widget.MaterialComponents.BottomNavigationView.Colored">
  2557. <item name="android:background">?attr/colorPrimary</item>
  2558. <item name="itemIconTint">@color/mtrl_bottom_nav_colored_item_tint</item>
  2559. <item name="itemTextAppearanceInactive">?attr/textAppearanceCaption</item>
  2560. <item name="itemTextAppearanceActive">?attr/textAppearanceCaption</item>
  2561. <item name="itemTextColor">@color/mtrl_bottom_nav_colored_item_tint</item>
  2562. </style><style name="Widget.MaterialComponents.BottomSheet.Modal" parent="Widget.Design.BottomSheet.Modal"/><style name="Widget.MaterialComponents.Button" parent="Widget.AppCompat.Button">
  2563. <item name="enforceTextAppearance">true</item>
  2564. <item name="android:textAppearance">?attr/textAppearanceButton</item>
  2565. <item name="android:textColor">@color/mtrl_btn_text_color_selector</item>
  2566. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  2567. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  2568. <item name="android:paddingTop">@dimen/mtrl_btn_padding_top</item>
  2569. <item name="android:paddingBottom">@dimen/mtrl_btn_padding_bottom</item>
  2570. <item name="android:insetLeft">0dp</item>
  2571. <item name="android:insetRight">0dp</item>
  2572. <item name="android:insetTop">@dimen/mtrl_btn_inset</item>
  2573. <item name="android:insetBottom">@dimen/mtrl_btn_inset</item>
  2574. <item name="android:stateListAnimator" ns2:ignore="NewApi">@animator/mtrl_btn_state_list_anim</item>
  2575. <item name="cornerRadius">@dimen/mtrl_btn_corner_radius</item>
  2576. <item name="iconPadding">@dimen/mtrl_btn_icon_padding</item>
  2577. <item name="iconTint">@color/mtrl_btn_text_color_selector</item>
  2578. <item name="rippleColor">@color/mtrl_btn_ripple_color</item>
  2579. <item name="backgroundTint">@color/mtrl_btn_bg_color_selector</item>
  2580. </style><style name="Widget.MaterialComponents.Button.Icon">
  2581. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  2582. </style><style name="Widget.MaterialComponents.Button.OutlinedButton" parent="Widget.MaterialComponents.Button.TextButton">
  2583. <item name="android:paddingLeft">@dimen/mtrl_btn_padding_left</item>
  2584. <item name="android:paddingRight">@dimen/mtrl_btn_padding_right</item>
  2585. <item name="strokeColor">@color/mtrl_btn_stroke_color_selector</item>
  2586. <item name="strokeWidth">@dimen/mtrl_btn_stroke_size</item>
  2587. </style><style name="Widget.MaterialComponents.Button.OutlinedButton.Icon">
  2588. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  2589. </style><style name="Widget.MaterialComponents.Button.TextButton" parent="Widget.MaterialComponents.Button.UnelevatedButton">
  2590. <item name="android:textColor">@color/mtrl_text_btn_text_color_selector</item>
  2591. <item name="android:paddingLeft">@dimen/mtrl_btn_text_btn_padding_left</item>
  2592. <item name="android:paddingRight">@dimen/mtrl_btn_text_btn_padding_right</item>
  2593. <item name="iconTint">@color/mtrl_text_btn_text_color_selector</item>
  2594. <item name="iconPadding">@dimen/mtrl_btn_text_btn_icon_padding</item>
  2595. <item name="backgroundTint">@color/mtrl_btn_transparent_bg_color</item>
  2596. <item name="rippleColor">@color/mtrl_btn_text_btn_ripple_color</item>
  2597. </style><style name="Widget.MaterialComponents.Button.TextButton.Dialog">
  2598. <item name="android:minWidth">@dimen/mtrl_btn_dialog_btn_min_width</item>
  2599. </style><style name="Widget.MaterialComponents.Button.TextButton.Dialog.Icon">
  2600. </style><style name="Widget.MaterialComponents.Button.TextButton.Icon">
  2601. </style><style name="Widget.MaterialComponents.Button.UnelevatedButton">
  2602. <item name="android:stateListAnimator" ns2:ignore="NewApi">@animator/mtrl_btn_unelevated_state_list_anim</item>
  2603. </style><style name="Widget.MaterialComponents.Button.UnelevatedButton.Icon">
  2604. <item name="android:paddingLeft">@dimen/mtrl_btn_icon_btn_padding_left</item>
  2605. </style><style name="Widget.MaterialComponents.CardView" parent="CardView">
  2606. <item name="cardElevation">@dimen/mtrl_card_elevation</item>
  2607. <item name="cardBackgroundColor">?attr/colorBackgroundFloating</item>
  2608. </style><style name="Widget.MaterialComponents.Chip.Action" parent="Base.Widget.MaterialComponents.Chip">
  2609. <item name="closeIconVisible">false</item>
  2610. </style><style name="Widget.MaterialComponents.Chip.Choice" parent="Base.Widget.MaterialComponents.Chip">
  2611. <item name="android:checkable">true</item>
  2612. <item name="chipIconVisible">false</item>
  2613. <item name="checkedIconVisible">false</item>
  2614. <item name="closeIconVisible">false</item>
  2615. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  2616. </style><style name="Widget.MaterialComponents.Chip.Entry" parent="Base.Widget.MaterialComponents.Chip">
  2617. <item name="android:checkable">true</item>
  2618. </style><style name="Widget.MaterialComponents.Chip.Filter" parent="Base.Widget.MaterialComponents.Chip">
  2619. <item name="android:checkable">true</item>
  2620. <item name="chipIconVisible">false</item>
  2621. <item name="closeIconVisible">false</item>
  2622. <item name="checkedIcon">@drawable/ic_mtrl_chip_checked_black</item>
  2623. </style><style name="Widget.MaterialComponents.ChipGroup" parent="android:Widget">
  2624. <item name="chipSpacing">4dp</item>
  2625. <item name="singleLine">false</item>
  2626. <item name="singleSelection">false</item>
  2627. </style><style name="Widget.MaterialComponents.FloatingActionButton" parent="Widget.Design.FloatingActionButton">
  2628. <item name="elevation">@dimen/mtrl_fab_elevation</item>
  2629. <item name="hoveredFocusedTranslationZ">@dimen/mtrl_fab_translation_z_hovered_focused</item>
  2630. <item name="pressedTranslationZ">@dimen/mtrl_fab_translation_z_pressed</item>
  2631. <item name="rippleColor">@color/mtrl_fab_ripple_color</item>
  2632. <item name="showMotionSpec">@animator/mtrl_fab_show_motion_spec</item>
  2633. <item name="hideMotionSpec">@animator/mtrl_fab_hide_motion_spec</item>
  2634. </style><style name="Widget.MaterialComponents.NavigationView" parent="Widget.Design.NavigationView">
  2635. <item name="elevation">@dimen/mtrl_navigation_elevation</item>
  2636. <item name="itemIconPadding">@dimen/mtrl_navigation_item_icon_padding</item>
  2637. <item name="itemHorizontalPadding">@dimen/mtrl_navigation_item_horizontal_padding</item>
  2638. </style><style name="Widget.MaterialComponents.Snackbar" parent="Widget.Design.Snackbar">
  2639. <item name="android:background">@drawable/mtrl_snackbar_background</item>
  2640. <item name="android:layout_margin">@dimen/mtrl_snackbar_margin</item>
  2641. </style><style name="Widget.MaterialComponents.Snackbar.FullWidth" parent="Widget.Design.Snackbar"/><style name="Widget.MaterialComponents.TabLayout" parent="Widget.Design.TabLayout">
  2642. <item name="enforceTextAppearance">true</item>
  2643. <item name="android:background">@android:color/white</item>
  2644. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector</item>
  2645. <item name="tabIndicatorAnimationDuration">@integer/mtrl_tab_indicator_anim_duration_ms</item>
  2646. <item name="tabIndicatorColor">?attr/colorAccent</item>
  2647. <item name="tabTextAppearance">?attr/textAppearanceButton</item>
  2648. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector</item>
  2649. <item name="tabRippleColor">@color/mtrl_tabs_ripple_color</item>
  2650. <item name="tabUnboundedRipple">true</item>
  2651. </style><style name="Widget.MaterialComponents.TabLayout.Colored">
  2652. <item name="android:background">?attr/colorAccent</item>
  2653. <item name="tabIconTint">@color/mtrl_tabs_icon_color_selector_colored</item>
  2654. <item name="tabIndicatorColor">@android:color/white</item>
  2655. <item name="tabTextColor">@color/mtrl_tabs_icon_color_selector_colored</item>
  2656. <item name="tabRippleColor">@color/mtrl_tabs_colored_ripple_color</item>
  2657. </style><style name="Widget.MaterialComponents.TextInputEditText.FilledBox" parent="Base.Widget.MaterialComponents.TextInputEditText">
  2658. <item name="android:paddingTop">20dp</item>
  2659. <item name="android:paddingBottom">16dp</item>
  2660. </style><style name="Widget.MaterialComponents.TextInputEditText.FilledBox.Dense">
  2661. <item name="android:paddingTop">16dp</item>
  2662. <item name="android:paddingBottom">16dp</item>
  2663. </style><style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputEditText"/><style name="Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense">
  2664. <item name="android:paddingTop">12dp</item>
  2665. <item name="android:paddingBottom">12dp</item>
  2666. </style><style name="Widget.MaterialComponents.TextInputLayout.FilledBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  2667. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox</item>
  2668. <item name="boxBackgroundMode">filled</item>
  2669. <item name="boxBackgroundColor">@color/mtrl_textinput_filled_box_default_background_color</item>
  2670. <item name="boxCollapsedPaddingTop">12dp</item>
  2671. <item name="boxCornerRadiusBottomStart">@dimen/mtrl_textinput_box_corner_radius_small</item>
  2672. <item name="boxCornerRadiusBottomEnd">@dimen/mtrl_textinput_box_corner_radius_small</item>
  2673. </style><style name="Widget.MaterialComponents.TextInputLayout.FilledBox.Dense">
  2674. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense</item>
  2675. <item name="boxCollapsedPaddingTop">8dp</item>
  2676. </style><style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox" parent="Base.Widget.MaterialComponents.TextInputLayout">
  2677. <item name="android:theme">@style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox
  2678. </item>
  2679. <item name="boxCollapsedPaddingTop">0dp</item>
  2680. </style><style name="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense">
  2681. <item name="android:theme">
  2682. @style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense
  2683. </item>
  2684. </style><style name="Widget.MaterialComponents.Toolbar" parent="Widget.AppCompat.Toolbar">
  2685. <item name="titleTextAppearance">?attr/textAppearanceHeadline6</item>
  2686. <item name="titleTextColor">?android:attr/textColorPrimary</item>
  2687. <item name="subtitleTextAppearance">?attr/textAppearanceSubtitle1</item>
  2688. <item name="subtitleTextColor">?android:attr/textColorSecondary</item>
  2689. <item name="android:minHeight">@dimen/mtrl_toolbar_default_height</item>
  2690. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\values-land\values-land.xml" qualifiers="land"><style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout">
  2691. <item name="tabGravity">center</item>
  2692. <item name="tabMode">fixed</item>
  2693. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\values-large-v4\values-large-v4.xml" qualifiers="large-v4"><style name="Base.Theme.MaterialComponents.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Dialog.FixedSize"/><style name="Base.Theme.MaterialComponents.Light.DialogWhenLarge" parent="Base.Theme.MaterialComponents.Light.Dialog.FixedSize"/></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\values-sw600dp-v13\values-sw600dp-v13.xml" qualifiers="sw600dp-v13"><dimen name="design_navigation_max_width">320dp</dimen><dimen name="design_snackbar_action_inline_max_width">0dp</dimen><dimen name="design_snackbar_background_corner_radius">2dp</dimen><dimen name="design_snackbar_extra_spacing_horizontal">24dp</dimen><dimen name="design_snackbar_max_width">576dp</dimen><dimen name="design_snackbar_min_width">320dp</dimen><dimen name="design_snackbar_padding_vertical_2lines">@dimen/design_snackbar_padding_vertical
  2694. </dimen><dimen name="design_tab_scrollable_min_width">160dp</dimen><integer name="design_snackbar_text_max_lines">1</integer><style name="Widget.Design.TabLayout" parent="Base.Widget.Design.TabLayout">
  2695. <item name="tabGravity">center</item>
  2696. <item name="tabMode">fixed</item>
  2697. </style></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\24252e9d32bfb7bbe2fc4ae1320ad0ca\material-1.0.0\res\values-v21\values-v21.xml" qualifiers="v21"><style name="TextAppearance.MaterialComponents.Button" parent="TextAppearance.AppCompat.Button">
  2698. <item name="fontFamily">sans-serif-medium</item>
  2699. <item name="android:fontFamily">sans-serif-medium</item>
  2700. <item name="android:textStyle">normal</item>
  2701. <item name="android:textAllCaps">true</item>
  2702. <item name="android:textSize">14sp</item>
  2703. <item name="android:letterSpacing">0.0892857143</item>
  2704. </style><style name="TextAppearance.MaterialComponents.Headline6" parent="TextAppearance.AppCompat.Title">
  2705. <item name="fontFamily">sans-serif-medium</item>
  2706. <item name="android:fontFamily">sans-serif-medium</item>
  2707. <item name="android:textStyle">normal</item>
  2708. <item name="android:textAllCaps">false</item>
  2709. <item name="android:textSize">20sp</item>
  2710. <item name="android:letterSpacing">0.0125</item>
  2711. </style><style name="TextAppearance.MaterialComponents.Overline" parent="TextAppearance.AppCompat">
  2712. <item name="fontFamily">sans-serif-medium</item>
  2713. <item name="android:fontFamily">sans-serif-medium</item>
  2714. <item name="android:textStyle">normal</item>
  2715. <item name="android:textAllCaps">true</item>
  2716. <item name="android:textSize">12sp</item>
  2717. <item name="android:letterSpacing">0.166666667</item>
  2718. </style><style name="TextAppearance.MaterialComponents.Subtitle2" parent="TextAppearance.AppCompat.Subhead">
  2719. <item name="fontFamily">sans-serif-medium</item>
  2720. <item name="android:fontFamily">sans-serif-medium</item>
  2721. <item name="android:textStyle">normal</item>
  2722. <item name="android:textAllCaps">false</item>
  2723. <item name="android:textSize">14sp</item>
  2724. <item name="android:letterSpacing">0.00714285714</item>
  2725. </style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.constraintlayout:constraintlayout:1.1.3$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\55d469d4e6d7d00cc1a4b9c26d478a82\constraintlayout-1.1.3\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="androidx.constraintlayout:constraintlayout:1.1.3" from-dependency="true" generated-set="androidx.constraintlayout:constraintlayout:1.1.3$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\55d469d4e6d7d00cc1a4b9c26d478a82\constraintlayout-1.1.3\res"><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\55d469d4e6d7d00cc1a4b9c26d478a82\constraintlayout-1.1.3\res\values\values.xml" qualifiers=""><attr format="boolean" name="barrierAllowsGoneWidgets"/><attr format="enum" name="barrierDirection">
  2726. <enum name="left" value="0"/>
  2727. <enum name="right" value="1"/>
  2728. <enum name="top" value="2"/>
  2729. <enum name="bottom" value="3"/>
  2730. <enum name="start" value="5"/>
  2731. <enum name="end" value="6"/>
  2732. </attr><attr format="boolean" name="chainUseRtl"/><attr format="reference" name="constraintSet"/><attr format="string" name="constraint_referenced_ids"/><attr format="reference" name="content"/><attr name="emptyVisibility">
  2733. <enum name="gone" value="0"/>
  2734. <enum name="invisible" value="1"/>
  2735. </attr><attr format="boolean" name="layout_constrainedHeight"/><attr format="boolean" name="layout_constrainedWidth"/><attr format="integer" name="layout_constraintBaseline_creator"/><attr format="reference|enum" name="layout_constraintBaseline_toBaselineOf">
  2736. <enum name="parent" value="0"/>
  2737. </attr><attr format="integer" name="layout_constraintBottom_creator"/><attr format="reference|enum" name="layout_constraintBottom_toBottomOf">
  2738. <enum name="parent" value="0"/>
  2739. </attr><attr format="reference|enum" name="layout_constraintBottom_toTopOf">
  2740. <enum name="parent" value="0"/>
  2741. </attr><attr format="reference" name="layout_constraintCircle"/><attr format="integer" name="layout_constraintCircleAngle"/><attr format="dimension" name="layout_constraintCircleRadius"/><attr format="string" name="layout_constraintDimensionRatio"/><attr format="reference|enum" name="layout_constraintEnd_toEndOf">
  2742. <enum name="parent" value="0"/>
  2743. </attr><attr format="reference|enum" name="layout_constraintEnd_toStartOf">
  2744. <enum name="parent" value="0"/>
  2745. </attr><attr format="dimension" name="layout_constraintGuide_begin"/><attr format="dimension" name="layout_constraintGuide_end"/><attr format="float" name="layout_constraintGuide_percent"/><attr name="layout_constraintHeight_default">
  2746. <enum name="spread" value="0"/>
  2747. <enum name="wrap" value="1"/>
  2748. <enum name="percent" value="2"/>
  2749. </attr><attr format="dimension|enum" name="layout_constraintHeight_max">
  2750. <enum name="wrap" value="-2"/>
  2751. </attr><attr format="dimension|enum" name="layout_constraintHeight_min">
  2752. <enum name="wrap" value="-2"/>
  2753. </attr><attr format="float" name="layout_constraintHeight_percent"/><attr format="float" name="layout_constraintHorizontal_bias"/><attr format="enum" name="layout_constraintHorizontal_chainStyle">
  2754. <enum name="spread" value="0"/>
  2755. <enum name="spread_inside" value="1"/>
  2756. <enum name="packed" value="2"/>
  2757. </attr><attr format="float" name="layout_constraintHorizontal_weight"/><attr format="integer" name="layout_constraintLeft_creator"/><attr format="reference|enum" name="layout_constraintLeft_toLeftOf">
  2758. <enum name="parent" value="0"/>
  2759. </attr><attr format="reference|enum" name="layout_constraintLeft_toRightOf">
  2760. <enum name="parent" value="0"/>
  2761. </attr><attr format="integer" name="layout_constraintRight_creator"/><attr format="reference|enum" name="layout_constraintRight_toLeftOf">
  2762. <enum name="parent" value="0"/>
  2763. </attr><attr format="reference|enum" name="layout_constraintRight_toRightOf">
  2764. <enum name="parent" value="0"/>
  2765. </attr><attr format="reference|enum" name="layout_constraintStart_toEndOf">
  2766. <enum name="parent" value="0"/>
  2767. </attr><attr format="reference|enum" name="layout_constraintStart_toStartOf">
  2768. <enum name="parent" value="0"/>
  2769. </attr><attr format="integer" name="layout_constraintTop_creator"/><attr format="reference|enum" name="layout_constraintTop_toBottomOf">
  2770. <enum name="parent" value="0"/>
  2771. </attr><attr format="reference|enum" name="layout_constraintTop_toTopOf">
  2772. <enum name="parent" value="0"/>
  2773. </attr><attr format="float" name="layout_constraintVertical_bias"/><attr format="enum" name="layout_constraintVertical_chainStyle">
  2774. <enum name="spread" value="0"/>
  2775. <enum name="spread_inside" value="1"/>
  2776. <enum name="packed" value="2"/>
  2777. </attr><attr format="float" name="layout_constraintVertical_weight"/><attr name="layout_constraintWidth_default">
  2778. <enum name="spread" value="0"/>
  2779. <enum name="wrap" value="1"/>
  2780. <enum name="percent" value="2"/>
  2781. </attr><attr format="dimension|enum" name="layout_constraintWidth_max">
  2782. <enum name="wrap" value="-2"/>
  2783. </attr><attr format="dimension|enum" name="layout_constraintWidth_min">
  2784. <enum name="wrap" value="-2"/>
  2785. </attr><attr format="float" name="layout_constraintWidth_percent"/><attr format="dimension" name="layout_editor_absoluteX"/><attr format="dimension" name="layout_editor_absoluteY"/><attr format="dimension" name="layout_goneMarginBottom"/><attr format="dimension" name="layout_goneMarginEnd"/><attr format="dimension" name="layout_goneMarginLeft"/><attr format="dimension" name="layout_goneMarginRight"/><attr format="dimension" name="layout_goneMarginStart"/><attr format="dimension" name="layout_goneMarginTop"/><attr name="layout_optimizationLevel">
  2786. <flag name="none" value="0"/>
  2787. <flag name="standard" value="7"/>
  2788. <flag name="direct" value="1"/>
  2789. <flag name="barrier" value="2"/>
  2790. <flag name="chains" value="4"/>
  2791. <flag name="dimensions" value="8"/>
  2792. <flag name="groups" value="32"/>
  2793. </attr><declare-styleable name="ConstraintLayout_Layout"><attr name="android:orientation"/><attr name="android:minWidth"/><attr name="android:minHeight"/><attr name="android:maxWidth"/><attr name="android:maxHeight"/><attr name="layout_optimizationLevel"/><attr name="constraintSet"/><attr name="barrierDirection"/><attr name="barrierAllowsGoneWidgets"/><attr name="constraint_referenced_ids"/><attr name="chainUseRtl"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/></declare-styleable><declare-styleable name="ConstraintLayout_placeholder"><attr name="emptyVisibility"/><attr name="content"/></declare-styleable><declare-styleable name="ConstraintSet"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="constraint_referenced_ids"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/></declare-styleable><declare-styleable name="LinearConstraintLayout"><attr name="android:orientation"/></declare-styleable></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.tencent.luggage:wxa-standalone-open-runtime-SaaA-plugin-sdk:1.0.3$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="com.tencent.luggage:wxa-standalone-open-runtime-SaaA-plugin-sdk:1.0.3" from-dependency="true" generated-set="com.tencent.luggage:wxa-standalone-open-runtime-SaaA-plugin-sdk:1.0.3$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res"><file name="accelerate_cubic_interpolator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\accelerate_cubic_interpolator.xml" qualifiers="" type="anim"/><file name="alpha_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\alpha_in.xml" qualifiers="" type="anim"/><file name="alpha_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\alpha_out.xml" qualifiers="" type="anim"/><file name="appbrand_autofill_dropdown" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_autofill_dropdown.xml" qualifiers="" type="anim"/><file name="appbrand_dialog_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_dialog_enter.xml" qualifiers="" type="anim"/><file name="appbrand_dialog_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_dialog_exit.xml" qualifiers="" type="anim"/><file name="appbrand_ui_not_change" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_ui_not_change.xml" qualifiers="" type="anim"/><file name="appbrand_ui_push_close_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_ui_push_close_enter.xml" qualifiers="" type="anim"/><file name="appbrand_ui_push_close_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_ui_push_close_exit.xml" qualifiers="" type="anim"/><file name="appbrand_ui_push_enter_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_ui_push_enter_exit.xml" qualifiers="" type="anim"/><file name="appbrand_ui_push_open_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_ui_push_open_enter.xml" qualifiers="" type="anim"/><file name="appbrand_ui_switch_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\appbrand_ui_switch_enter.xml" qualifiers="" type="anim"/><file name="app_brand_faded_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\app_brand_faded_in.xml" qualifiers="" type="anim"/><file name="app_brand_faded_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\app_brand_faded_out.xml" qualifiers="" type="anim"/><file name="app_brand_in_from_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\app_brand_in_from_bottom.xml" qualifiers="" type="anim"/><file name="decelerate_cubic_interpolator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\decelerate_cubic_interpolator.xml" qualifiers="" type="anim"/><file name="decelerate_quint_interpolator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\decelerate_quint_interpolator.xml" qualifiers="" type="anim"/><file name="fast_faded_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\fast_faded_in.xml" qualifiers="" type="anim"/><file name="fast_faded_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\fast_faded_out.xml" qualifiers="" type="anim"/><file name="in_from_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\in_from_bottom.xml" qualifiers="" type="anim"/><file name="in_from_bottom_slow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\in_from_bottom_slow.xml" qualifiers="" type="anim"/><file name="in_from_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\in_from_right.xml" qualifiers="" type="anim"/><file name="out_to_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\out_to_bottom.xml" qualifiers="" type="anim"/><file name="out_to_bottom_slow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\out_to_bottom_slow.xml" qualifiers="" type="anim"/><file name="out_to_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\out_to_right.xml" qualifiers="" type="anim"/><file name="pickerview_dialog_scale_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pickerview_dialog_scale_in.xml" qualifiers="" type="anim"/><file name="pickerview_dialog_scale_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pickerview_dialog_scale_out.xml" qualifiers="" type="anim"/><file name="pickerview_slide_in_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pickerview_slide_in_bottom.xml" qualifiers="" type="anim"/><file name="pickerview_slide_out_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pickerview_slide_out_bottom.xml" qualifiers="" type="anim"/><file name="pop_center_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_center_in.xml" qualifiers="" type="anim"/><file name="pop_center_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_center_out.xml" qualifiers="" type="anim"/><file name="pop_left_bottom_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_left_bottom_in.xml" qualifiers="" type="anim"/><file name="pop_left_bottom_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_left_bottom_out.xml" qualifiers="" type="anim"/><file name="pop_left_top_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_left_top_in.xml" qualifiers="" type="anim"/><file name="pop_left_top_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_left_top_out.xml" qualifiers="" type="anim"/><file name="pop_right_bottom_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_right_bottom_in.xml" qualifiers="" type="anim"/><file name="pop_right_bottom_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_right_bottom_out.xml" qualifiers="" type="anim"/><file name="pop_right_top_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_right_top_in.xml" qualifiers="" type="anim"/><file name="pop_right_top_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\pop_right_top_out.xml" qualifiers="" type="anim"/><file name="ps_anim_album_dismiss" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_album_dismiss.xml" qualifiers="" type="anim"/><file name="ps_anim_album_show" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_album_show.xml" qualifiers="" type="anim"/><file name="ps_anim_alpha_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_alpha_enter.xml" qualifiers="" type="anim"/><file name="ps_anim_alpha_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_alpha_exit.xml" qualifiers="" type="anim"/><file name="ps_anim_anticipate_interpolator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_anticipate_interpolator.xml" qualifiers="" type="anim"/><file name="ps_anim_down_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_down_out.xml" qualifiers="" type="anim"/><file name="ps_anim_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_enter.xml" qualifiers="" type="anim"/><file name="ps_anim_exit" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_exit.xml" qualifiers="" type="anim"/><file name="ps_anim_fade_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_fade_in.xml" qualifiers="" type="anim"/><file name="ps_anim_fade_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_fade_out.xml" qualifiers="" type="anim"/><file name="ps_anim_fall_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_fall_enter.xml" qualifiers="" type="anim"/><file name="ps_anim_layout_fall_enter" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_layout_fall_enter.xml" qualifiers="" type="anim"/><file name="ps_anim_modal_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_modal_in.xml" qualifiers="" type="anim"/><file name="ps_anim_modal_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_modal_out.xml" qualifiers="" type="anim"/><file name="ps_anim_overshoot_interpolator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_overshoot_interpolator.xml" qualifiers="" type="anim"/><file name="ps_anim_up_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\ps_anim_up_in.xml" qualifiers="" type="anim"/><file name="wxa_decelerate_interpolator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\wxa_decelerate_interpolator.xml" qualifiers="" type="anim"/><file name="wxa_slide_left_out" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\wxa_slide_left_out.xml" qualifiers="" type="anim"/><file name="wxa_slide_right_in" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\anim\wxa_slide_right_in.xml" qualifiers="" type="anim"/><file name="actionbar_text_white_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\actionbar_text_white_selector.xml" qualifiers="" type="color"/><file name="black_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\black_text_color_selector.xml" qualifiers="" type="color"/><file name="brand_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\brand_text_color_selector.xml" qualifiers="" type="color"/><file name="color_btn_text_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\color_btn_text_selector.xml" qualifiers="" type="color"/><file name="gallery_btn_text_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\gallery_btn_text_selector.xml" qualifiers="" type="color"/><file name="green_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\green_text_color_selector.xml" qualifiers="" type="color"/><file name="icon_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\icon_color_selector.xml" qualifiers="" type="color"/><file name="item_color_dark_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\item_color_dark_selector.xml" qualifiers="" type="color"/><file name="item_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\item_color_selector.xml" qualifiers="" type="color"/><file name="red_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\red_text_color_selector.xml" qualifiers="" type="color"/><file name="white_btn_text_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\white_btn_text_selector.xml" qualifiers="" type="color"/><file name="white_text_color_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\color\white_text_color_selector.xml" qualifiers="" type="color"/><file name="actionbar_back_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\actionbar_back_icon.xml" qualifiers="" type="drawable"/><file name="actionbar_dark_back_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\actionbar_dark_back_selector.xml" qualifiers="" type="drawable"/><file name="actionbar_menu_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\actionbar_menu_selector.xml" qualifiers="" type="drawable"/><file name="actionbar_press_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\actionbar_press_shape.xml" qualifiers="" type="drawable"/><file name="album_chooser_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\album_chooser_background.xml" qualifiers="" type="drawable"/><file name="album_chooser_icon_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\album_chooser_icon_background.xml" qualifiers="" type="drawable"/><file name="alert_btn_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\alert_btn_background.xml" qualifiers="" type="drawable"/><file name="alert_btn_top_line_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\alert_btn_top_line_bg.xml" qualifiers="" type="drawable"/><file name="alpha_black_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\alpha_black_bg.xml" qualifiers="" type="drawable"/><file name="appbrand_keybtn_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\appbrand_keybtn_bg.xml" qualifiers="" type="drawable"/><file name="appbrand_keybtn_bg_force_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\appbrand_keybtn_bg_force_light.xml" qualifiers="" type="drawable"/><file name="appbrand_user_auth_request_dialog_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\appbrand_user_auth_request_dialog_bg.xml" qualifiers="" type="drawable"/><file name="appbrand_user_auth_request_dialog_center_style_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\appbrand_user_auth_request_dialog_center_style_bg.xml" qualifiers="" type="drawable"/><file name="app_brand_back_home_button_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_back_home_button_background.xml" qualifiers="" type="drawable"/><file name="app_brand_game_action_icon_left_round_rect_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_game_action_icon_left_round_rect_background.xml" qualifiers="" type="drawable"/><file name="app_brand_game_action_icon_right_round_rect_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_game_action_icon_right_round_rect_background.xml" qualifiers="" type="drawable"/><file name="app_brand_game_capsule_dark_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_game_capsule_dark_background.xml" qualifiers="" type="drawable"/><file name="app_brand_game_capsule_light_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_game_capsule_light_background.xml" qualifiers="" type="drawable"/><file name="app_brand_picker_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_picker_bg.xml" qualifiers="" type="drawable"/><file name="app_brand_pip_loading_animation" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_pip_loading_animation.xml" qualifiers="" type="drawable"/><file name="app_brand_pip_progress_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_pip_progress_bg.xml" qualifiers="" type="drawable"/><file name="app_brand_preview_icon_press_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_preview_icon_press_shape.xml" qualifiers="" type="drawable"/><file name="app_brand_preview_icon_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_preview_icon_selector.xml" qualifiers="" type="drawable"/><file name="app_brand_preview_test_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_preview_test_shape.xml" qualifiers="" type="drawable"/><file name="app_brand_remote_debug_abnormal_dot" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_remote_debug_abnormal_dot.xml" qualifiers="" type="drawable"/><file name="app_brand_remote_debug_normal_dot" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_remote_debug_normal_dot.xml" qualifiers="" type="drawable"/><file name="app_brand_remote_view_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_remote_view_bg.xml" qualifiers="" type="drawable"/><file name="app_brand_small_radius_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_small_radius_shape.xml" qualifiers="" type="drawable"/><file name="app_brand_small_radius_shape_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_small_radius_shape_normal.xml" qualifiers="" type="drawable"/><file name="app_brand_small_radius_shape_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_small_radius_shape_pressed.xml" qualifiers="" type="drawable"/><file name="app_brand_tab_bar_badge" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_tab_bar_badge.xml" qualifiers="" type="drawable"/><file name="app_brand_toast_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_toast_shape.xml" qualifiers="" type="drawable"/><file name="app_brand_toast_view_loading" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_toast_view_loading.xml" qualifiers="" type="drawable"/><file name="app_brand_web_edit_text_cursor" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_brand_web_edit_text_cursor.xml" qualifiers="" type="drawable"/><file name="app_page_bottom_sheet_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_page_bottom_sheet_background.xml" qualifiers="" type="drawable"/><file name="app_page_capsule_single_option_background_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\app_page_capsule_single_option_background_selector.xml" qualifiers="" type="drawable"/><file name="bg_operate_pop" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\bg_operate_pop.xml" qualifiers="" type="drawable"/><file name="bg_operate_window" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\bg_operate_window.xml" qualifiers="" type="drawable"/><file name="big_white_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\big_white_bg.xml" qualifiers="" type="drawable"/><file name="big_white_bg_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\big_white_bg_normal.xml" qualifiers="" type="drawable"/><file name="big_white_bg_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\big_white_bg_pressed.xml" qualifiers="" type="drawable"/><file name="bottom_cell_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\bottom_cell_bg.xml" qualifiers="" type="drawable"/><file name="bottom_cell_press_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\bottom_cell_press_bg.xml" qualifiers="" type="drawable"/><file name="btn_line_green" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_line_green.xml" qualifiers="" type="drawable"/><file name="btn_line_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_line_grey.xml" qualifiers="" type="drawable"/><file name="btn_solid_blue" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_blue.xml" qualifiers="" type="drawable"/><file name="btn_solid_constant_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_constant_grey.xml" qualifiers="" type="drawable"/><file name="btn_solid_dark_green_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_dark_green_small.xml" qualifiers="" type="drawable"/><file name="btn_solid_gold_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_gold_red.xml" qualifiers="" type="drawable"/><file name="btn_solid_green" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_green.xml" qualifiers="" type="drawable"/><file name="btn_solid_green_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_green_small.xml" qualifiers="" type="drawable"/><file name="btn_solid_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_grey.xml" qualifiers="" type="drawable"/><file name="btn_solid_orange" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_orange.xml" qualifiers="" type="drawable"/><file name="btn_solid_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_red.xml" qualifiers="" type="drawable"/><file name="btn_solid_red_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_red_small.xml" qualifiers="" type="drawable"/><file name="btn_solid_white" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_white.xml" qualifiers="" type="drawable"/><file name="btn_solid_white_new" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_white_new.xml" qualifiers="" type="drawable"/><file name="btn_solid_yellow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\btn_solid_yellow.xml" qualifiers="" type="drawable"/><file name="chat_footer_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\chat_footer_bg.xml" qualifiers="" type="drawable"/><file name="checkbox_btn_png" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_btn_png.xml" qualifiers="" type="drawable"/><file name="checkbox_disable" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_disable.xml" qualifiers="" type="drawable"/><file name="checkbox_disable_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_disable_small.xml" qualifiers="" type="drawable"/><file name="checkbox_unselected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_unselected.xml" qualifiers="" type="drawable"/><file name="checkbox_unselected_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_unselected_small.xml" qualifiers="" type="drawable"/><file name="checkbox_unselected_un" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_unselected_un.xml" qualifiers="" type="drawable"/><file name="checkbox_unselected_white" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_unselected_white.xml" qualifiers="" type="drawable"/><file name="checkbox_unselected_white_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\checkbox_unselected_white_small.xml" qualifiers="" type="drawable"/><file name="circle_btn_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\circle_btn_bg.xml" qualifiers="" type="drawable"/><file name="circle_btn_brand_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\circle_btn_brand_bg.xml" qualifiers="" type="drawable"/><file name="common_icons_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\common_icons_arrow.png" qualifiers="" type="drawable"/><file name="comm_item_highlight_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\comm_item_highlight_selector.xml" qualifiers="" type="drawable"/><file name="comm_list_item_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\comm_list_item_selector.xml" qualifiers="" type="drawable"/><file name="comm_list_item_selector_black" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\comm_list_item_selector_black.xml" qualifiers="" type="drawable"/><file name="comm_list_item_selector_no_divider" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\comm_list_item_selector_no_divider.xml" qualifiers="" type="drawable"/><file name="conversation_click" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\conversation_click.xml" qualifiers="" type="drawable"/><file name="cover_mask" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\cover_mask.xml" qualifiers="" type="drawable"/><file name="dark_list_item_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dark_list_item_selector.xml" qualifiers="" type="drawable"/><file name="dark_list_top_line_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dark_list_top_line_selector.xml" qualifiers="" type="drawable"/><file name="dark_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dark_selector.xml" qualifiers="" type="drawable"/><file name="dialog_alpha_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_alpha_bg.xml" qualifiers="" type="drawable"/><file name="dialog_btn_bottom_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_btn_bottom_bg.xml" qualifiers="" type="drawable"/><file name="dialog_btn_left_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_btn_left_bg.xml" qualifiers="" type="drawable"/><file name="dialog_btn_right_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_btn_right_bg.xml" qualifiers="" type="drawable"/><file name="dialog_content_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_content_background.xml" qualifiers="" type="drawable"/><file name="dialog_content_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_content_bg.xml" qualifiers="" type="drawable"/><file name="dialog_content_bg_press" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_content_bg_press.xml" qualifiers="" type="drawable"/><file name="dialog_dark_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\dialog_dark_bg.xml" qualifiers="" type="drawable"/><file name="edittext_bg_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\edittext_bg_selector.xml" qualifiers="" type="drawable"/><file name="edit_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\edit_bg.xml" qualifiers="" type="drawable"/><file name="et_clear_png" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\et_clear_png.xml" qualifiers="" type="drawable"/><file name="et_clear_svg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\et_clear_svg.xml" qualifiers="" type="drawable"/><file name="gradient_mask" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\gradient_mask.xml" qualifiers="" type="drawable"/><file name="green_cursor" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\green_cursor.xml" qualifiers="" type="drawable"/><file name="grey_dotted_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\grey_dotted_shape.xml" qualifiers="" type="drawable"/><file name="half_dialog_close_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\half_dialog_close_bg.xml" qualifiers="" type="drawable"/><file name="input_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\input_bg.xml" qualifiers="" type="drawable"/><file name="input_gray_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\input_gray_bg.xml" qualifiers="" type="drawable"/><file name="light_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\light_selector.xml" qualifiers="" type="drawable"/><file name="list_item_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\list_item_bg.xml" qualifiers="" type="drawable"/><file name="list_topcell" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\list_topcell.xml" qualifiers="" type="drawable"/><file name="luggage_tabbar_reddot_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\luggage_tabbar_reddot_shape.xml" qualifiers="" type="drawable"/><file name="menu_item_big_white_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\menu_item_big_white_bg.xml" qualifiers="" type="drawable"/><file name="menu_item_big_white_bg_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\menu_item_big_white_bg_normal.xml" qualifiers="" type="drawable"/><file name="menu_item_big_white_bg_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\menu_item_big_white_bg_pressed.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn_grey.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn_grey_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn_grey_small.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn_orange" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn_orange.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn_red.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn_red_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn_red_small.xml" qualifiers="" type="drawable"/><file name="mm_checkbox_btn_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_checkbox_btn_small.xml" qualifiers="" type="drawable"/><file name="mm_progress_horizontal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_progress_horizontal.xml" qualifiers="" type="drawable"/><file name="mm_progress_transparent_horizontal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_progress_transparent_horizontal.xml" qualifiers="" type="drawable"/><file name="mm_trans" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\mm_trans.9.png" qualifiers="" type="drawable"/><file name="music_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_arrow.xml" qualifiers="" type="drawable"/><file name="music_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_close.xml" qualifiers="" type="drawable"/><file name="music_next" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_next.xml" qualifiers="" type="drawable"/><file name="music_play" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_play.xml" qualifiers="" type="drawable"/><file name="music_pre" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_pre.xml" qualifiers="" type="drawable"/><file name="music_seek_bar_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_seek_bar_bg.xml" qualifiers="" type="drawable"/><file name="music_seek_bar_rotate_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_seek_bar_rotate_bg.xml" qualifiers="" type="drawable"/><file name="music_seek_bar_tumb" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_seek_bar_tumb.xml" qualifiers="" type="drawable"/><file name="music_stop" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\music_stop.xml" qualifiers="" type="drawable"/><file name="new_tips_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\new_tips_bg.xml" qualifiers="" type="drawable"/><file name="picker_divider" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\picker_divider.xml" qualifiers="" type="drawable"/><file name="popup_bg_without_shadow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\popup_bg_without_shadow.xml" qualifiers="" type="drawable"/><file name="popup_menu_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\popup_menu_selector.xml" qualifiers="" type="drawable"/><file name="pop_bubble_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\pop_bubble_bg.xml" qualifiers="" type="drawable"/><file name="progress_cancel_btn_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_cancel_btn_selector.xml" qualifiers="" type="drawable"/><file name="progress_cancel_png" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_cancel_png.xml" qualifiers="" type="drawable"/><file name="progress_green_large_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_green_large_holo.xml" qualifiers="" type="drawable"/><file name="progress_green_medium_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_green_medium_holo.xml" qualifiers="" type="drawable"/><file name="progress_green_small_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_green_small_holo.xml" qualifiers="" type="drawable"/><file name="progress_large_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_large_holo.xml" qualifiers="" type="drawable"/><file name="progress_medium_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_medium_holo.xml" qualifiers="" type="drawable"/><file name="progress_single_white_medium_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_single_white_medium_holo.xml" qualifiers="" type="drawable"/><file name="progress_single_white_small_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_single_white_small_holo.xml" qualifiers="" type="drawable"/><file name="progress_small_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_small_holo.xml" qualifiers="" type="drawable"/><file name="progress_white_large_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_white_large_holo.xml" qualifiers="" type="drawable"/><file name="progress_white_medium_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_white_medium_holo.xml" qualifiers="" type="drawable"/><file name="progress_white_small_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\progress_white_small_holo.xml" qualifiers="" type="drawable"/><file name="ps_album_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_album_bg.xml" qualifiers="" type="drawable"/><file name="ps_anim_progress" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_anim_progress.xml" qualifiers="" type="drawable"/><file name="ps_audio_placeholder" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_audio_placeholder.xml" qualifiers="" type="drawable"/><file name="ps_btn_left_bottom_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_left_bottom_selector.xml" qualifiers="" type="drawable"/><file name="ps_btn_left_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_left_normal.xml" qualifiers="" type="drawable"/><file name="ps_btn_left_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_left_select.xml" qualifiers="" type="drawable"/><file name="ps_btn_right_bottom_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_right_bottom_selector.xml" qualifiers="" type="drawable"/><file name="ps_btn_right_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_right_normal.xml" qualifiers="" type="drawable"/><file name="ps_btn_right_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_right_select.xml" qualifiers="" type="drawable"/><file name="ps_btn_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_btn_selector.xml" qualifiers="" type="drawable"/><file name="ps_cancel_default_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_cancel_default_bg.xml" qualifiers="" type="drawable"/><file name="ps_checkbox_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_checkbox_selector.xml" qualifiers="" type="drawable"/><file name="ps_default_num_oval_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_default_num_oval_normal.xml" qualifiers="" type="drawable"/><file name="ps_default_num_oval_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_default_num_oval_selected.xml" qualifiers="" type="drawable"/><file name="ps_default_num_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_default_num_selector.xml" qualifiers="" type="drawable"/><file name="ps_dialog_loading_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_dialog_loading_bg.xml" qualifiers="" type="drawable"/><file name="ps_dialog_shadow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_dialog_shadow.xml" qualifiers="" type="drawable"/><file name="ps_gif_tag" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_gif_tag.xml" qualifiers="" type="drawable"/><file name="ps_image_placeholder" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_image_placeholder.xml" qualifiers="" type="drawable"/><file name="ps_item_select_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_item_select_bg.xml" qualifiers="" type="drawable"/><file name="ps_layer_progress" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_layer_progress.xml" qualifiers="" type="drawable"/><file name="ps_num_oval" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_num_oval.xml" qualifiers="" type="drawable"/><file name="ps_orange_oval" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_orange_oval.xml" qualifiers="" type="drawable"/><file name="ps_original_checkbox" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_original_checkbox.xml" qualifiers="" type="drawable"/><file name="ps_original_wechat_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_original_wechat_normal.xml" qualifiers="" type="drawable"/><file name="ps_original_wechat_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_original_wechat_selected.xml" qualifiers="" type="drawable"/><file name="ps_preview_checkbox_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_preview_checkbox_selector.xml" qualifiers="" type="drawable"/><file name="ps_preview_gallery_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_preview_gallery_bg.xml" qualifiers="" type="drawable"/><file name="ps_preview_gallery_frame" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_preview_gallery_frame.xml" qualifiers="" type="drawable"/><file name="ps_seek_bar_thumb_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_seek_bar_thumb_normal.xml" qualifiers="" type="drawable"/><file name="ps_seek_bar_thumb_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_seek_bar_thumb_pressed.xml" qualifiers="" type="drawable"/><file name="ps_select_complete_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_select_complete_bg.xml" qualifiers="" type="drawable"/><file name="ps_select_complete_normal_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_select_complete_normal_bg.xml" qualifiers="" type="drawable"/><file name="ps_transparent_space" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_transparent_space.xml" qualifiers="" type="drawable"/><file name="ps_view_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_view_normal.xml" qualifiers="" type="drawable"/><file name="ps_view_press" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\ps_view_press.xml" qualifiers="" type="drawable"/><file name="qrcode_bg_transfer_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\qrcode_bg_transfer_dialog.xml" qualifiers="" type="drawable"/><file name="qrcode_bg_transfer_share_description_cell" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\qrcode_bg_transfer_share_description_cell.xml" qualifiers="" type="drawable"/><file name="qrcode_login_alert_button" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\qrcode_login_alert_button.xml" qualifiers="" type="drawable"/><file name="qrcode_login_expired_blur_cover" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\qrcode_login_expired_blur_cover.xml" qualifiers="" type="drawable"/><file name="qrcode_login_image_shadowed_frame" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\qrcode_login_image_shadowed_frame.xml" qualifiers="" type="drawable"/><file name="radio_selector_png" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radio_selector_png.xml" qualifiers="" type="drawable"/><file name="radius_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radius_shape.xml" qualifiers="" type="drawable"/><file name="radius_shape_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radius_shape_dark.xml" qualifiers="" type="drawable"/><file name="radius_shape_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radius_shape_normal.xml" qualifiers="" type="drawable"/><file name="radius_shape_normal_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radius_shape_normal_dark.xml" qualifiers="" type="drawable"/><file name="radius_shape_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radius_shape_pressed.xml" qualifiers="" type="drawable"/><file name="radius_shape_pressed_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\radius_shape_pressed_dark.xml" qualifiers="" type="drawable"/><file name="rating_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\rating_bar.xml" qualifiers="" type="drawable"/><file name="rating_bar_indicator" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\rating_bar_indicator.xml" qualifiers="" type="drawable"/><file name="round_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\round_selector.xml" qualifiers="" type="drawable"/><file name="round_selector_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\round_selector_red.xml" qualifiers="" type="drawable"/><file name="scan_rect_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\scan_rect_bg.xml" qualifiers="" type="drawable"/><file name="seekbar_slider_block" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\seekbar_slider_block.xml" qualifiers="" type="drawable"/><file name="selector_pickerview_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\selector_pickerview_btn.xml" qualifiers="" type="drawable"/><file name="select_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\select_bg.xml" qualifiers="" type="drawable"/><file name="settings_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\settings_line.xml" qualifiers="" type="drawable"/><file name="setting_dialog_bottom_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\setting_dialog_bottom_bg.xml" qualifiers="" type="drawable"/><file name="setting_dialog_checkbox_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\setting_dialog_checkbox_selector.xml" qualifiers="" type="drawable"/><file name="single_text_btn_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\single_text_btn_bg.xml" qualifiers="" type="drawable"/><file name="specail_green_cursor" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\specail_green_cursor.xml" qualifiers="" type="drawable"/><file name="step_diagram_border" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\step_diagram_border.xml" qualifiers="" type="drawable"/><file name="submenu_item_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\submenu_item_selector.xml" qualifiers="" type="drawable"/><file name="submenu_item_selector_no_divider" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\submenu_item_selector_no_divider.xml" qualifiers="" type="drawable"/><file name="subscribe_msg_checkbox_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\subscribe_msg_checkbox_selector.xml" qualifiers="" type="drawable"/><file name="subscribe_msg_normal_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\subscribe_msg_normal_bg.xml" qualifiers="" type="drawable"/><file name="subscribe_msg_request_dialog_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\subscribe_msg_request_dialog_bg.xml" qualifiers="" type="drawable"/><file name="subscribe_msg_request_dialog_center_style_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\subscribe_msg_request_dialog_center_style_bg.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom_left_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom_left_right.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom_left_right_force_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom_left_right_force_light.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom_middle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom_middle.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom_new" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom_new.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom_new_force_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom_new_force_light.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_bottom_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_bottom_right.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_delete" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_delete.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_last" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_last.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_new" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_new.xml" qualifiers="" type="drawable"/><file name="tenpay_keybtn_new_force_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_keybtn_new_force_light.xml" qualifiers="" type="drawable"/><file name="tenpay_push_down_new_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tenpay_push_down_new_bg.xml" qualifiers="" type="drawable"/><file name="text_btn_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\text_btn_bg.xml" qualifiers="" type="drawable"/><file name="text_btn_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\text_btn_shape.xml" qualifiers="" type="drawable"/><file name="tipbar_bg_red_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipbar_bg_red_normal.xml" qualifiers="" type="drawable"/><file name="tipbar_bg_white_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipbar_bg_white_normal.xml" qualifiers="" type="drawable"/><file name="tipsbar_expanded_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_expanded_bg.xml" qualifiers="" type="drawable"/><file name="tipsbar_green_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_green_bg.xml" qualifiers="" type="drawable"/><file name="tipsbar_grey_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_grey_bg.xml" qualifiers="" type="drawable"/><file name="tipsbar_icon_close_dark_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_icon_close_dark_selector.xml" qualifiers="" type="drawable"/><file name="tipsbar_icon_close_light_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_icon_close_light_selector.xml" qualifiers="" type="drawable"/><file name="tipsbar_orange_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_orange_bg.xml" qualifiers="" type="drawable"/><file name="tipsbar_red_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_red_bg.xml" qualifiers="" type="drawable"/><file name="tipsbar_small_white_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_small_white_bg.xml" qualifiers="" type="drawable"/><file name="tipsbar_white_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\tipsbar_white_bg.xml" qualifiers="" type="drawable"/><file name="toast_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\toast_bg.xml" qualifiers="" type="drawable"/><file name="transparent_double_line_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\transparent_double_line_bg.xml" qualifiers="" type="drawable"/><file name="transparent_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\transparent_shape.xml" qualifiers="" type="drawable"/><file name="transparent_top_line_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\transparent_top_line_bg.xml" qualifiers="" type="drawable"/><file name="transparent_top_line_dark_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\transparent_top_line_dark_bg.xml" qualifiers="" type="drawable"/><file name="trans_drawable" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\trans_drawable.xml" qualifiers="" type="drawable"/><file name="unread_count_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\unread_count_shape.xml" qualifiers="" type="drawable"/><file name="unread_count_shape_circle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\unread_count_shape_circle.xml" qualifiers="" type="drawable"/><file name="unread_count_shape_large_circle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\unread_count_shape_large_circle.xml" qualifiers="" type="drawable"/><file name="unread_dot_shape" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\unread_dot_shape.xml" qualifiers="" type="drawable"/><file name="un_btn_solid_white" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\un_btn_solid_white.xml" qualifiers="" type="drawable"/><file name="up_corner_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\up_corner_bg.xml" qualifiers="" type="drawable"/><file name="up_corner_black_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\up_corner_black_bg.xml" qualifiers="" type="drawable"/><file name="up_corner_dark_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\up_corner_dark_bg.xml" qualifiers="" type="drawable"/><file name="up_corner_grey_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\up_corner_grey_bg.xml" qualifiers="" type="drawable"/><file name="up_corner_grey_dark_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\up_corner_grey_dark_bg.xml" qualifiers="" type="drawable"/><file name="up_corner_white_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\up_corner_white_bg.xml" qualifiers="" type="drawable"/><file name="webview_progress_horizontal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\webview_progress_horizontal.xml" qualifiers="" type="drawable"/><file name="white_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_bg.xml" qualifiers="" type="drawable"/><file name="white_bg_night_mode" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_bg_night_mode.xml" qualifiers="" type="drawable"/><file name="white_bg_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_bg_pressed.xml" qualifiers="" type="drawable"/><file name="white_corner_bg_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_corner_bg_selector.xml" qualifiers="" type="drawable"/><file name="white_divide_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_divide_bg.xml" qualifiers="" type="drawable"/><file name="white_divide_selector_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_divide_selector_bg.xml" qualifiers="" type="drawable"/><file name="white_list_item_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_list_item_selector.xml" qualifiers="" type="drawable"/><file name="white_list_top_line_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\white_list_top_line_selector.xml" qualifiers="" type="drawable"/><file name="wmpf_checkbox_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wmpf_checkbox_btn.xml" qualifiers="" type="drawable"/><file name="wmpf_menu_center_sheet_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wmpf_menu_center_sheet_background.xml" qualifiers="" type="drawable"/><file name="wmpf_round_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wmpf_round_selector.xml" qualifiers="" type="drawable"/><file name="wxa_menu_header_status_bg_blue" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_menu_header_status_bg_blue.xml" qualifiers="" type="drawable"/><file name="wxa_menu_header_status_bg_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_menu_header_status_bg_red.xml" qualifiers="" type="drawable"/><file name="wxa_profile_actionbar_back_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_profile_actionbar_back_icon.xml" qualifiers="" type="drawable"/><file name="wxa_progress_medium_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_progress_medium_holo.xml" qualifiers="" type="drawable"/><file name="wxa_progress_single_white_medium_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_progress_single_white_medium_holo.xml" qualifiers="" type="drawable"/><file name="wxa_recents_item_type_tag" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_recents_item_type_tag.xml" qualifiers="" type="drawable"/><file name="wxa_toast_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable\wxa_toast_bg.xml" qualifiers="" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-anydpi-v24\ic_app_capsule_single_option.xml" qualifiers="anydpi-v24" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-anydpi-v24\ic_app_page_bottom_sheet_close.xml" qualifiers="anydpi-v24" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-anydpi-v24\ic_icons_filled_share.xml" qualifiers="anydpi-v24" type="drawable"/><file name="default_avatar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-hdpi-v4\default_avatar.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-hdpi-v4\ic_app_capsule_single_option.png" qualifiers="hdpi-v4" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-hdpi-v4\ic_app_page_bottom_sheet_close.png" qualifiers="hdpi-v4" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-hdpi-v4\ic_icons_filled_share.png" qualifiers="hdpi-v4" type="drawable"/><file name="mm_tick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-hdpi-v4\mm_tick.png" qualifiers="hdpi-v4" type="drawable"/><file name="voice_rcd_hint_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-hdpi-v4\voice_rcd_hint_bg.9.png" qualifiers="hdpi-v4" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-ldpi-v4\ic_app_capsule_single_option.png" qualifiers="ldpi-v4" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-ldpi-v4\ic_app_page_bottom_sheet_close.png" qualifiers="ldpi-v4" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-ldpi-v4\ic_icons_filled_share.png" qualifiers="ldpi-v4" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-mdpi-v4\ic_app_capsule_single_option.png" qualifiers="mdpi-v4" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-mdpi-v4\ic_app_page_bottom_sheet_close.png" qualifiers="mdpi-v4" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-mdpi-v4\ic_icons_filled_share.png" qualifiers="mdpi-v4" type="drawable"/><file name="selected_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-v21\selected_bg.xml" qualifiers="v21" type="drawable"/><file name="selected_bg_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-v21\selected_bg_dark.xml" qualifiers="v21" type="drawable"/><file name="icons_outlined_done" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\icons_outlined_done.png" qualifiers="xhdpi-v4" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\ic_app_capsule_single_option.png" qualifiers="xhdpi-v4" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\ic_app_page_bottom_sheet_close.png" qualifiers="xhdpi-v4" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\ic_icons_filled_share.png" qualifiers="xhdpi-v4" type="drawable"/><file name="shadow_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\shadow_bottom.png" qualifiers="xhdpi-v4" type="drawable"/><file name="shadow_left" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\shadow_left.png" qualifiers="xhdpi-v4" type="drawable"/><file name="shadow_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\shadow_right.png" qualifiers="xhdpi-v4" type="drawable"/><file name="shortvideo_play_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\shortvideo_play_btn.png" qualifiers="xhdpi-v4" type="drawable"/><file name="step_attention" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\step_attention.png" qualifiers="xhdpi-v4" type="drawable"/><file name="step_error" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\step_error.png" qualifiers="xhdpi-v4" type="drawable"/><file name="step_ok" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\step_ok.png" qualifiers="xhdpi-v4" type="drawable"/><file name="step_optional" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\step_optional.png" qualifiers="xhdpi-v4" type="drawable"/><file name="wechat_logo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\wechat_logo.png" qualifiers="xhdpi-v4" type="drawable"/><file name="wechat_pay_logo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\wechat_pay_logo.png" qualifiers="xhdpi-v4" type="drawable"/><file name="white_item_bottome_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xhdpi-v4\white_item_bottome_line.9.png" qualifiers="xhdpi-v4" type="drawable"/><file name="actionbar_icon_dark_add" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_dark_add.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_dark_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_dark_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_dark_clear" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_dark_clear.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_dark_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_dark_close.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_dark_more" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_dark_more.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_dark_search" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_dark_search.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_light_add" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_light_add.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_light_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_light_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_light_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_light_close.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_light_more" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_light_more.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="actionbar_icon_light_search" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\actionbar_icon_light_search.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="appbrand_game_loading_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\appbrand_game_loading_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="appbrand_game_loading_icon_dm" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\appbrand_game_loading_icon_dm.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="appbrand_loading_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\appbrand_loading_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="appbrand_loading_icon_dm" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\appbrand_loading_icon_dm.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_capsule_home_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_capsule_home_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_capsule_home_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_capsule_home_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_capsule_lbs_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_capsule_lbs_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_capsule_video_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_capsule_video_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_capsule_voice_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_capsule_voice_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_option_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_option_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_actionbar_option_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_actionbar_option_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_action_bar_homebtn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_action_bar_homebtn.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_auto_fill_data_list_item_dot" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_auto_fill_data_list_item_dot.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_auto_fill_dropdown_btn_delete" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_auto_fill_dropdown_btn_delete.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_map_line_texture_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_map_line_texture_arrow.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_map_line_texture_arrow_portrait" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_map_line_texture_arrow_portrait.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_marker" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_marker.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_menu_copy_link" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_menu_copy_link.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_phone_number_check_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_phone_number_check_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_phone_number_explain_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_phone_number_explain_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_pip_close_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_pip_close_btn.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_pip_loading" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_pip_loading.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_profile_trading_guarantee_ic" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_profile_trading_guarantee_ic.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_show_toast_error" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_show_toast_error.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="app_brand_show_toast_success" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\app_brand_show_toast_success.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="arrow_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\arrow_right.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="bg_qrlogin" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\bg_qrlogin.jpg" qualifiers="xxhdpi-v4" type="drawable"/><file name="bottombar_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\bottombar_bg.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_select.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_selected.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_selected_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_selected_grey.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_selected_grey_round" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_selected_grey_round.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_selected_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_selected_red.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_selected_round" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_selected_round.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="checkbox_unselected_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\checkbox_unselected_grey.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="common_info" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\common_info.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="dark_item_top_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\dark_item_top_line.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="dark_list_item_top_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\dark_list_item_top_normal.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="default_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\default_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="empty_code_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\empty_code_bg.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icons_filled_album" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icons_filled_album.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icons_filled_close2" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icons_filled_close2.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icons_outlined_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icons_outlined_arrow.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icons_outlined_done" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icons_outlined_done.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icons_outlined_refresh" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icons_outlined_refresh.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icons_outlined_voice" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icons_outlined_voice.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icon_info" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icon_info.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="icon_subscribe_msg_dialog_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\icon_subscribe_msg_dialog_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_app_capsule_single_option.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_app_page_bottom_sheet_close.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_icons_filled_share.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_info" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_info.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_qrlogin_miniprogram_logo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_qrlogin_miniprogram_logo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_qrlogin_reload" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_qrlogin_reload.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_qrlogin_switch_wechat_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_qrlogin_switch_wechat_arrow.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ic_qrlogin_wechat" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ic_qrlogin_wechat.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="input_bar_bg_active" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\input_bar_bg_active.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="input_bar_bg_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\input_bar_bg_normal.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="keyboard_delete" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\keyboard_delete.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="list_item_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\list_item_normal.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="list_item_normal_black" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\list_item_normal_black.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="list_item_normal_un" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\list_item_normal_un.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="list_item_top_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\list_item_top_normal.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="list_item_top_normal_no_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\list_item_top_normal_no_line.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="login_app_default_avatar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\login_app_default_avatar.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="login_auth_state_default_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\login_auth_state_default_select.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="login_auth_state_must_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\login_auth_state_must_select.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="login_auth_state_not_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\login_auth_state_not_selected.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="miniprogram_default_avatar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\miniprogram_default_avatar.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="mm_trans" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\mm_trans.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_arrow_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_arrow_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_arrow_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_arrow_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_close_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_close_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_close_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_close_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_next_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_next_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_next_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_next_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_play_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_play_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_play_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_play_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_pre_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_pre_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_pre_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_pre_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_seek_bar_loading" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_seek_bar_loading.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_stop_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_stop_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="music_stop_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\music_stop_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ok_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ok_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="opensdk_qrcode_img" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\opensdk_qrcode_img.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="phone_number_delete" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\phone_number_delete.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="progress_cancel_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\progress_cancel_btn.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="progress_cancel_btn_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\progress_cancel_btn_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_audio" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_audio.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_audio_placeholder" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_audio_placeholder.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_audio_play" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_audio_play.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_audio_play_cover" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_audio_play_cover.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_audio_stop" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_audio_stop.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_black_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_black_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_camera" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_camera.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_default_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_default_arrow.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_delete" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_delete.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_editor" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_editor.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_fast_play" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_fast_play.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_grey_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_grey_arrow.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_normal_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_normal_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_no_data" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_no_data.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_placeholder" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_placeholder.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_preview_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_preview_selected.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_progress" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_progress.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_seek_bar_thumb" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_seek_bar_thumb.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_selected.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_shadow_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_shadow_bg.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_slow_audio" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_slow_audio.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_trans_1px" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_trans_1px.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_video" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_video.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="ps_ic_video_play" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\ps_ic_video_play.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_default_on" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_default_on.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_disable" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_disable.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_green_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_green_off.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_green_on" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_green_on.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_grey_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_grey_off.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_grey_on" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_grey_on.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_off.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="radio_on" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\radio_on.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="rating_bar_indicator_star_empty" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\rating_bar_indicator_star_empty.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="rating_bar_indicator_star_full" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\rating_bar_indicator_star_full.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="rating_bar_star_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\rating_bar_star_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="rating_bar_star_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\rating_bar_star_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="scan_button_circle_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\scan_button_circle_bg.xml" qualifiers="xxhdpi-v4" type="drawable"/><file name="slider_block" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\slider_block.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="spinner_16_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\spinner_16_outer_holo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="spinner_48_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\spinner_48_outer_holo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="spinner_76_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\spinner_76_outer_holo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="spinner_white_16_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\spinner_white_16_outer_holo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="spinner_white_48_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\spinner_white_48_outer_holo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="spinner_white_76_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\spinner_white_76_outer_holo.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="sub_menu_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\sub_menu_bg.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keybg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keybg.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_bottom" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_bottom.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_bottom_middle" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_bottom_middle.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_bottom_middle_high" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_bottom_middle_high.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_bottom_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_bottom_right.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_bottom_right_high" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_bottom_right_high.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_delete" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_delete.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_high" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_high.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_last" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_last.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_last_focus" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_last_focus.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_keyitem_up" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_keyitem_up.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tenpay_push_down" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tenpay_push_down.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="textfield_icon_emoji_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\textfield_icon_emoji_normal.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="textfield_icon_emoji_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\textfield_icon_emoji_pressed.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tipsbar_icon_arrow_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tipsbar_icon_arrow_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tipsbar_icon_arrow_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tipsbar_icon_arrow_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tipsbar_icon_close_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tipsbar_icon_close_dark.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tipsbar_icon_close_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tipsbar_icon_close_light.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="tipsbar_icon_warning" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\tipsbar_icon_warning.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="white_item_bottome_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\white_item_bottome_line.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="white_item_top_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\white_item_top_line.9.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wmpf_splash_wxa_brand_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wmpf_splash_wxa_brand_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_growth_care" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_growth_care.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_enable_debug" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_enable_debug.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_fav" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_fav.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_feedback_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_feedback_icon.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_header_lbs" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_header_lbs.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_header_record_voice" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_header_record_voice.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_modify_collection_add" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_modify_collection_add.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_modify_collection_remove" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_modify_collection_remove.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_moment" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_moment.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_setting" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_setting.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_share_appmsg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_share_appmsg.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_menu_share_favor" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_menu_share_favor.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_profile_game_original" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_profile_game_original.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_setting_icon_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_setting_icon_back.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_setting_icon_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_setting_icon_close.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="wxa_trading_guarantee_icon_green" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxhdpi-v4\wxa_trading_guarantee_icon_green.png" qualifiers="xxhdpi-v4" type="drawable"/><file name="bottombar_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\bottombar_bg.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="ic_app_capsule_single_option" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\ic_app_capsule_single_option.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="ic_app_page_bottom_sheet_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\ic_app_page_bottom_sheet_close.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="ic_icons_filled_share" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\ic_icons_filled_share.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="location_myself_point_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\location_myself_point_icon.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="rating_bar_indicator_star_empty" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\rating_bar_indicator_star_empty.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="rating_bar_indicator_star_full" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\rating_bar_indicator_star_full.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="rating_bar_star_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\rating_bar_star_normal.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="rating_bar_star_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\rating_bar_star_pressed.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="white_item_bottome_line" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\drawable-xxxhdpi-v4\white_item_bottome_line.9.png" qualifiers="xxxhdpi-v4" type="drawable"/><file name="acitvity_prefenrece_auth_desc" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\acitvity_prefenrece_auth_desc.xml" qualifiers="" type="layout"/><file name="actionbar_search" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\actionbar_search.xml" qualifiers="" type="layout"/><file name="actionbar_title" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\actionbar_title.xml" qualifiers="" type="layout"/><file name="action_option_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\action_option_view.xml" qualifiers="" type="layout"/><file name="activity_app_brand_user_info_authorize_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_app_brand_user_info_authorize_ui.xml" qualifiers="" type="layout"/><file name="activity_app_brand_user_info_authorize_ui_wrapper" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_app_brand_user_info_authorize_ui_wrapper.xml" qualifiers="" type="layout"/><file name="activity_biz_subscribe_msg_manager_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_biz_subscribe_msg_manager_ui.xml" qualifiers="" type="layout"/><file name="activity_face_login" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_face_login.xml" qualifiers="" type="layout"/><file name="activity_hotreload_blank" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_hotreload_blank.xml" qualifiers="" type="layout"/><file name="activity_key_step_analyser" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_key_step_analyser.xml" qualifiers="" type="layout"/><file name="activity_key_step_analyser_detail" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_key_step_analyser_detail.xml" qualifiers="" type="layout"/><file name="activity_key_step_base" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_key_step_base.xml" qualifiers="" type="layout"/><file name="activity_music" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_music.xml" qualifiers="" type="layout"/><file name="activity_preview_image" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_preview_image.xml" qualifiers="" type="layout"/><file name="activity_scan_ui_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_scan_ui_layout.xml" qualifiers="" type="layout"/><file name="activity_verify_code" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_verify_code.xml" qualifiers="" type="layout"/><file name="activity_wxa_simple_webview" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\activity_wxa_simple_webview.xml" qualifiers="" type="layout"/><file name="album_chooser" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\album_chooser.xml" qualifiers="" type="layout"/><file name="appbrand_action_game_header_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_action_game_header_layout.xml" qualifiers="" type="layout"/><file name="appbrand_action_header_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_action_header_layout.xml" qualifiers="" type="layout"/><file name="appbrand_action_multiple_header" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_action_multiple_header.xml" qualifiers="" type="layout"/><file name="appbrand_action_single_header" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_action_single_header.xml" qualifiers="" type="layout"/><file name="appbrand_keyboard_push_down_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_keyboard_push_down_layout.xml" qualifiers="" type="layout"/><file name="appbrand_number_keyboard" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_number_keyboard.xml" qualifiers="" type="layout"/><file name="appbrand_smiley_panel_wrapper" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_smiley_panel_wrapper.xml" qualifiers="" type="layout"/><file name="appbrand_splash_loading_data_tip" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\appbrand_splash_loading_data_tip.xml" qualifiers="" type="layout"/><file name="app_brand_actionbar_custom_right_button_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_actionbar_custom_right_button_layout.xml" qualifiers="" type="layout"/><file name="app_brand_action_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_action_bar.xml" qualifiers="" type="layout"/><file name="app_brand_action_option_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_action_option_view.xml" qualifiers="" type="layout"/><file name="app_brand_action_sheet_list_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_action_sheet_list_layout.xml" qualifiers="" type="layout"/><file name="app_brand_authorize_none" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_authorize_none.xml" qualifiers="" type="layout"/><file name="app_brand_authorize_used" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_authorize_used.xml" qualifiers="" type="layout"/><file name="app_brand_auth_auto_fill_data_list_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_auth_auto_fill_data_list_item.xml" qualifiers="" type="layout"/><file name="app_brand_auth_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_auth_dialog.xml" qualifiers="" type="layout"/><file name="app_brand_auth_scope_list_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_auth_scope_list_item.xml" qualifiers="" type="layout"/><file name="app_brand_auth_user_auto_fill_data_new" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_auth_user_auto_fill_data_new.xml" qualifiers="" type="layout"/><file name="app_brand_auto_user_auto_fill_data" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_auto_user_auto_fill_data.xml" qualifiers="" type="layout"/><file name="app_brand_capsule_bar_view_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_capsule_bar_view_layout.xml" qualifiers="" type="layout"/><file name="app_brand_circle_splash_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_circle_splash_ui.xml" qualifiers="" type="layout"/><file name="app_brand_empty" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_empty.xml" qualifiers="" type="layout"/><file name="app_brand_error_page_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_error_page_layout.xml" qualifiers="" type="layout"/><file name="app_brand_input_autofill_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_input_autofill_item.xml" qualifiers="" type="layout"/><file name="app_brand_operate_wxa_data_list_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_operate_wxa_data_list_item.xml" qualifiers="" type="layout"/><file name="app_brand_phone_number_add_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_phone_number_add_ui.xml" qualifiers="" type="layout"/><file name="app_brand_phone_number_explain_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_phone_number_explain_dialog.xml" qualifiers="" type="layout"/><file name="app_brand_phone_number_manager_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_phone_number_manager_item.xml" qualifiers="" type="layout"/><file name="app_brand_phone_number_manager_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_phone_number_manager_ui.xml" qualifiers="" type="layout"/><file name="app_brand_picker_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_picker_container.xml" qualifiers="" type="layout"/><file name="app_brand_picker_toolbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_picker_toolbar.xml" qualifiers="" type="layout"/><file name="app_brand_pip_container_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_pip_container_view.xml" qualifiers="" type="layout"/><file name="app_brand_pulldown_webview_background" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_pulldown_webview_background.xml" qualifiers="" type="layout"/><file name="app_brand_remote_debug_move_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_remote_debug_move_view.xml" qualifiers="" type="layout"/><file name="app_brand_request_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_request_dialog.xml" qualifiers="" type="layout"/><file name="app_brand_secondary_menu_footer" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_secondary_menu_footer.xml" qualifiers="" type="layout"/><file name="app_brand_secondary_menu_header" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_secondary_menu_header.xml" qualifiers="" type="layout"/><file name="app_brand_secondary_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_secondary_menu_item.xml" qualifiers="" type="layout"/><file name="app_brand_show_action_sheet_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_show_action_sheet_item.xml" qualifiers="" type="layout"/><file name="app_brand_show_no_icon_toast" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_show_no_icon_toast.xml" qualifiers="" type="layout"/><file name="app_brand_show_toast" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_show_toast.xml" qualifiers="" type="layout"/><file name="app_brand_splash_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_splash_ui.xml" qualifiers="" type="layout"/><file name="app_brand_tab_bar_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_tab_bar_item.xml" qualifiers="" type="layout"/><file name="app_brand_verify_sms_code" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\app_brand_verify_sms_code.xml" qualifiers="" type="layout"/><file name="authorize_scope_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\authorize_scope_item.xml" qualifiers="" type="layout"/><file name="bottomsheet_footer_loading_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\bottomsheet_footer_loading_item.xml" qualifiers="" type="layout"/><file name="bottomsheet_footer_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\bottomsheet_footer_menu_item.xml" qualifiers="" type="layout"/><file name="bottomsheet_footer_menu_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\bottomsheet_footer_menu_layout.xml" qualifiers="" type="layout"/><file name="bottomsheet_header_loading_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\bottomsheet_header_loading_item.xml" qualifiers="" type="layout"/><file name="bottomsheet_header_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\bottomsheet_header_menu_item.xml" qualifiers="" type="layout"/><file name="bottomsheet_header_menu_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\bottomsheet_header_menu_layout.xml" qualifiers="" type="layout"/><file name="chatroom_avatar_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\chatroom_avatar_item.xml" qualifiers="" type="layout"/><file name="checkbox_toybrick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\checkbox_toybrick.xml" qualifiers="" type="layout"/><file name="confirm_dialog_btn_up_down" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_btn_up_down.xml" qualifiers="" type="layout"/><file name="confirm_dialog_custom_title" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_custom_title.xml" qualifiers="" type="layout"/><file name="confirm_dialog_icon_left" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_icon_left.xml" qualifiers="" type="layout"/><file name="confirm_dialog_icon_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_icon_right.xml" qualifiers="" type="layout"/><file name="confirm_dialog_image_center" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_image_center.xml" qualifiers="" type="layout"/><file name="confirm_dialog_multi_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_multi_btn.xml" qualifiers="" type="layout"/><file name="confirm_dialog_title_image" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_title_image.xml" qualifiers="" type="layout"/><file name="confirm_dialog_title_multi_image" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\confirm_dialog_title_multi_image.xml" qualifiers="" type="layout"/><file name="custom_actionbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\custom_actionbar.xml" qualifiers="" type="layout"/><file name="custom_action_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\custom_action_bar.xml" qualifiers="" type="layout"/><file name="date_picker_legacy" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\date_picker_legacy.xml" qualifiers="" type="layout"/><file name="date_picker_panel" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\date_picker_panel.xml" qualifiers="" type="layout"/><file name="default_tencent_map_location_point" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\default_tencent_map_location_point.xml" qualifiers="" type="layout"/><file name="default_tencent_map_marker_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\default_tencent_map_marker_icon.xml" qualifiers="" type="layout"/><file name="dialog_chatroom_avater_detail" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\dialog_chatroom_avater_detail.xml" qualifiers="" type="layout"/><file name="dialog_checkbox_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\dialog_checkbox_item.xml" qualifiers="" type="layout"/><file name="dialog_checkbox_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\dialog_checkbox_view.xml" qualifiers="" type="layout"/><file name="dialog_layout_preference_list_content" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\dialog_layout_preference_list_content.xml" qualifiers="" type="layout"/><file name="dialog_radio_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\dialog_radio_item.xml" qualifiers="" type="layout"/><file name="dialog_radio_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\dialog_radio_view.xml" qualifiers="" type="layout"/><file name="edit_verify_code_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\edit_verify_code_layout.xml" qualifiers="" type="layout"/><file name="fragment_scan_code_capture" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\fragment_scan_code_capture.xml" qualifiers="" type="layout"/><file name="grid_popup_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\grid_popup_layout.xml" qualifiers="" type="layout"/><file name="half_dialog_header_down_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\half_dialog_header_down_arrow.xml" qualifiers="" type="layout"/><file name="half_dialog_header_title" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\half_dialog_header_title.xml" qualifiers="" type="layout"/><file name="hce_transparent_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\hce_transparent_ui.xml" qualifiers="" type="layout"/><file name="hint_tip_toybrick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\hint_tip_toybrick.xml" qualifiers="" type="layout"/><file name="horizontal_popup_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\horizontal_popup_item.xml" qualifiers="" type="layout"/><file name="include_pickerview_topbar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\include_pickerview_topbar.xml" qualifiers="" type="layout"/><file name="item_layout_preference_auth" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\item_layout_preference_auth.xml" qualifiers="" type="layout"/><file name="item_setting_preference_base" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\item_setting_preference_base.xml" qualifiers="" type="layout"/><file name="item_setting_preference_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\item_setting_preference_icon.xml" qualifiers="" type="layout"/><file name="layout_app_page_bottom_sheet" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_app_page_bottom_sheet.xml" qualifiers="" type="layout"/><file name="layout_app_page_bottom_sheet_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_app_page_bottom_sheet_menu_item.xml" qualifiers="" type="layout"/><file name="layout_basepickerview" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_basepickerview.xml" qualifiers="" type="layout"/><file name="layout_camera_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_camera_container.xml" qualifiers="" type="layout"/><file name="layout_float_mask_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_float_mask_view.xml" qualifiers="" type="layout"/><file name="layout_nestscroll_setting" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_nestscroll_setting.xml" qualifiers="" type="layout"/><file name="layout_operate_windows" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_operate_windows.xml" qualifiers="" type="layout"/><file name="layout_operate_windows_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_operate_windows_item.xml" qualifiers="" type="layout"/><file name="layout_qrcode_transfer_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_qrcode_transfer_dialog.xml" qualifiers="" type="layout"/><file name="layout_qrcode_transfer_display_widget" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_qrcode_transfer_display_widget.xml" qualifiers="" type="layout"/><file name="layout_qrcode_transfer_share_description_cell" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_qrcode_transfer_share_description_cell.xml" qualifiers="" type="layout"/><file name="layout_three_dots_loading_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_three_dots_loading_view.xml" qualifiers="" type="layout"/><file name="layout_wmpf_qrcode_login_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_wmpf_qrcode_login_container.xml" qualifiers="" type="layout"/><file name="layout_wmpf_qrcode_login_display" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_wmpf_qrcode_login_display.xml" qualifiers="" type="layout"/><file name="layout_wmpf_qrlogin_dialog_widget" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_wmpf_qrlogin_dialog_widget.xml" qualifiers="" type="layout"/><file name="layout_wxa_profile_dummy" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_wxa_profile_dummy.xml" qualifiers="" type="layout"/><file name="layout_wxa_profile_rating_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_wxa_profile_rating_bar.xml" qualifiers="" type="layout"/><file name="layout_wxa_setting_loading" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\layout_wxa_setting_loading.xml" qualifiers="" type="layout"/><file name="luggage_activity_simple_webview" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\luggage_activity_simple_webview.xml" qualifiers="" type="layout"/><file name="map_title_toybrick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\map_title_toybrick.xml" qualifiers="" type="layout"/><file name="menu_sheet_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\menu_sheet_dialog.xml" qualifiers="" type="layout"/><file name="mm_alert_comfirm" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_alert_comfirm.xml" qualifiers="" type="layout"/><file name="mm_bottom_sheet" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_bottom_sheet.xml" qualifiers="" type="layout"/><file name="mm_bottom_sheet_grid_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_bottom_sheet_grid_menu_item.xml" qualifiers="" type="layout"/><file name="mm_bottom_sheet_list_checkbox_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_bottom_sheet_list_checkbox_menu_item.xml" qualifiers="" type="layout"/><file name="mm_bottom_sheet_list_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_bottom_sheet_list_menu_item.xml" qualifiers="" type="layout"/><file name="mm_bottom_sheet_title_text" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_bottom_sheet_title_text.xml" qualifiers="" type="layout"/><file name="mm_bottom_sheet_zero_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_bottom_sheet_zero_layout.xml" qualifiers="" type="layout"/><file name="mm_form_input_clear_et_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_form_input_clear_et_view.xml" qualifiers="" type="layout"/><file name="mm_half_bottom_custom_outside_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_half_bottom_custom_outside_dialog.xml" qualifiers="" type="layout"/><file name="mm_half_bottom_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_half_bottom_dialog.xml" qualifiers="" type="layout"/><file name="mm_multi_picker_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_multi_picker_item.xml" qualifiers="" type="layout"/><file name="mm_multi_picker_panel" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_multi_picker_panel.xml" qualifiers="" type="layout"/><file name="mm_option_picker_panel" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_option_picker_panel.xml" qualifiers="" type="layout"/><file name="mm_pickerview_options" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_pickerview_options.xml" qualifiers="" type="layout"/><file name="mm_pickerview_time" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_pickerview_time.xml" qualifiers="" type="layout"/><file name="mm_preference" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference.xml" qualifiers="" type="layout"/><file name="mm_preference_catalog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_catalog.xml" qualifiers="" type="layout"/><file name="mm_preference_checkbox" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_checkbox.xml" qualifiers="" type="layout"/><file name="mm_preference_div_fill_catalog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_div_fill_catalog.xml" qualifiers="" type="layout"/><file name="mm_preference_header_catalog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_header_catalog.xml" qualifiers="" type="layout"/><file name="mm_preference_info" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_info.xml" qualifiers="" type="layout"/><file name="mm_preference_info_bigtext" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_info_bigtext.xml" qualifiers="" type="layout"/><file name="mm_preference_info_footer" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_info_footer.xml" qualifiers="" type="layout"/><file name="mm_preference_info_normaltext" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_info_normaltext.xml" qualifiers="" type="layout"/><file name="mm_preference_info_smalltext" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_info_smalltext.xml" qualifiers="" type="layout"/><file name="mm_preference_list_content" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_list_content.xml" qualifiers="" type="layout"/><file name="mm_preference_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_select.xml" qualifiers="" type="layout"/><file name="mm_preference_sns_checkbox" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_sns_checkbox.xml" qualifiers="" type="layout"/><file name="mm_preference_summary_below" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_summary_below.xml" qualifiers="" type="layout"/><file name="mm_preference_summary_checkbox" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_preference_summary_checkbox.xml" qualifiers="" type="layout"/><file name="mm_small_tips_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_small_tips_dialog.xml" qualifiers="" type="layout"/><file name="mm_tips_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_tips_dialog.xml" qualifiers="" type="layout"/><file name="mm_tips_dialog_with_bg" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\mm_tips_dialog_with_bg.xml" qualifiers="" type="layout"/><file name="music_seek_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\music_seek_bar.xml" qualifiers="" type="layout"/><file name="new_menu_sheet_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\new_menu_sheet_dialog.xml" qualifiers="" type="layout"/><file name="phonenumber_input_clear_et_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\phonenumber_input_clear_et_view.xml" qualifiers="" type="layout"/><file name="phonenumber_verify_code_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\phonenumber_verify_code_view.xml" qualifiers="" type="layout"/><file name="pickerview_options_new" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\pickerview_options_new.xml" qualifiers="" type="layout"/><file name="pickerview_time_new" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\pickerview_time_new.xml" qualifiers="" type="layout"/><file name="popuplayout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\popuplayout.xml" qualifiers="" type="layout"/><file name="popup_submenu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\popup_submenu_item.xml" qualifiers="" type="layout"/><file name="pop_grid_menu_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\pop_grid_menu_item.xml" qualifiers="" type="layout"/><file name="preference_button_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\preference_button_layout.xml" qualifiers="" type="layout"/><file name="preference_content_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\preference_content_icon.xml" qualifiers="" type="layout"/><file name="privacy_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\privacy_dialog.xml" qualifiers="" type="layout"/><file name="progress_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\progress_dialog.xml" qualifiers="" type="layout"/><file name="ps_activity_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_activity_container.xml" qualifiers="" type="layout"/><file name="ps_album_folder_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_album_folder_item.xml" qualifiers="" type="layout"/><file name="ps_alert_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_alert_dialog.xml" qualifiers="" type="layout"/><file name="ps_bottom_nav_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_bottom_nav_bar.xml" qualifiers="" type="layout"/><file name="ps_common_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_common_dialog.xml" qualifiers="" type="layout"/><file name="ps_complete_selected_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_complete_selected_layout.xml" qualifiers="" type="layout"/><file name="ps_custom_preview_image" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_custom_preview_image.xml" qualifiers="" type="layout"/><file name="ps_dialog_camera_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_dialog_camera_selected.xml" qualifiers="" type="layout"/><file name="ps_empty" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_empty.xml" qualifiers="" type="layout"/><file name="ps_fragment_preview" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_fragment_preview.xml" qualifiers="" type="layout"/><file name="ps_fragment_selector" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_fragment_selector.xml" qualifiers="" type="layout"/><file name="ps_item_grid_audio" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_item_grid_audio.xml" qualifiers="" type="layout"/><file name="ps_item_grid_camera" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_item_grid_camera.xml" qualifiers="" type="layout"/><file name="ps_item_grid_image" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_item_grid_image.xml" qualifiers="" type="layout"/><file name="ps_item_grid_video" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_item_grid_video.xml" qualifiers="" type="layout"/><file name="ps_preview_audio" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_preview_audio.xml" qualifiers="" type="layout"/><file name="ps_preview_gallery_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_preview_gallery_item.xml" qualifiers="" type="layout"/><file name="ps_preview_image" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_preview_image.xml" qualifiers="" type="layout"/><file name="ps_preview_video" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_preview_video.xml" qualifiers="" type="layout"/><file name="ps_remind_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_remind_dialog.xml" qualifiers="" type="layout"/><file name="ps_title_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_title_bar.xml" qualifiers="" type="layout"/><file name="ps_window_folder" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\ps_window_folder.xml" qualifiers="" type="layout"/><file name="rich_title_toybrick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\rich_title_toybrick.xml" qualifiers="" type="layout"/><file name="right_vertical_toy_brick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\right_vertical_toy_brick.xml" qualifiers="" type="layout"/><file name="simple_title_toybrick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\simple_title_toybrick.xml" qualifiers="" type="layout"/><file name="snackbar_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\snackbar_container.xml" qualifiers="" type="layout"/><file name="snackbar_main" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\snackbar_main.xml" qualifiers="" type="layout"/><file name="space_toybrick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\space_toybrick.xml" qualifiers="" type="layout"/><file name="subscribe_msg_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_item_layout.xml" qualifiers="" type="layout"/><file name="subscribe_msg_list_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_list_item.xml" qualifiers="" type="layout"/><file name="subscribe_msg_request_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_request_dialog.xml" qualifiers="" type="layout"/><file name="subscribe_msg_sample_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_sample_item_layout.xml" qualifiers="" type="layout"/><file name="subscribe_msg_secondary_menu_list_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_secondary_menu_list_item.xml" qualifiers="" type="layout"/><file name="subscribe_msg_template_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_template_item.xml" qualifiers="" type="layout"/><file name="subscribe_msg_voice_broadcast_item_layout" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscribe_msg_voice_broadcast_item_layout.xml" qualifiers="" type="layout"/><file name="subscription_message_checkbox" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\subscription_message_checkbox.xml" qualifiers="" type="layout"/><file name="support_footer_recycler_view_container" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\support_footer_recycler_view_container.xml" qualifiers="" type="layout"/><file name="surface_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\surface_view.xml" qualifiers="" type="layout"/><file name="tenpay_keyboard_layot" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\tenpay_keyboard_layot.xml" qualifiers="" type="layout"/><file name="tenpay_number_keyboard" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\tenpay_number_keyboard.xml" qualifiers="" type="layout"/><file name="time_picker_panel" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\time_picker_panel.xml" qualifiers="" type="layout"/><file name="tipsbar_style_one" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\tipsbar_style_one.xml" qualifiers="" type="layout"/><file name="tipsbar_style_two" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\tipsbar_style_two.xml" qualifiers="" type="layout"/><file name="tooltip" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\tooltip.xml" qualifiers="" type="layout"/><file name="vertical_toy_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\vertical_toy_ui.xml" qualifiers="" type="layout"/><file name="view_process_item" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\view_process_item.xml" qualifiers="" type="layout"/><file name="view_step" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\view_step.xml" qualifiers="" type="layout"/><file name="view_step_group" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\view_step_group.xml" qualifiers="" type="layout"/><file name="voice_seek_bar" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\voice_seek_bar.xml" qualifiers="" type="layout"/><file name="we_preference" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\we_preference.xml" qualifiers="" type="layout"/><file name="widget_vertical_stepsview" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\widget_vertical_stepsview.xml" qualifiers="" type="layout"/><file name="wmpf_splash_ui" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\wmpf_splash_ui.xml" qualifiers="" type="layout"/><file name="wxa_progress_dialog" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout\wxa_progress_dialog.xml" qualifiers="" type="layout"/><file name="texture_view" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\layout-v14\texture_view.xml" qualifiers="v14" type="layout"/><file name="actionbar_icon_dark_add" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_add.svg" qualifiers="" type="raw"/><file name="actionbar_icon_dark_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_back.svg" qualifiers="" type="raw"/><file name="actionbar_icon_dark_clear" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_clear.svg" qualifiers="" type="raw"/><file name="actionbar_icon_dark_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_close.svg" qualifiers="" type="raw"/><file name="actionbar_icon_dark_more" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_more.svg" qualifiers="" type="raw"/><file name="actionbar_icon_dark_search" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_search.svg" qualifiers="" type="raw"/><file name="actionbar_icon_dark_voice" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_dark_voice.svg" qualifiers="" type="raw"/><file name="actionbar_icon_light_add" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_light_add.svg" qualifiers="" type="raw"/><file name="actionbar_icon_light_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_light_back.svg" qualifiers="" type="raw"/><file name="actionbar_icon_light_clear" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_light_clear.svg" qualifiers="" type="raw"/><file name="actionbar_icon_light_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_light_close.svg" qualifiers="" type="raw"/><file name="actionbar_icon_light_more" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_light_more.svg" qualifiers="" type="raw"/><file name="actionbar_icon_light_search" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\actionbar_icon_light_search.svg" qualifiers="" type="raw"/><file name="app_brand_show_toast_error" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\app_brand_show_toast_error.svg" qualifiers="" type="raw"/><file name="arrows_down" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\arrows_down.svg" qualifiers="" type="raw"/><file name="arrow_down" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\arrow_down.svg" qualifiers="" type="raw"/><file name="arrow_left" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\arrow_left.svg" qualifiers="" type="raw"/><file name="arrow_right" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\arrow_right.svg" qualifiers="" type="raw"/><file name="arrow_up" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\arrow_up.svg" qualifiers="" type="raw"/><file name="back_icon_normal" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\back_icon_normal.svg" qualifiers="" type="raw"/><file name="back_icon_normal_black" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\back_icon_normal_black.svg" qualifiers="" type="raw"/><file name="back_icon_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\back_icon_pressed.svg" qualifiers="" type="raw"/><file name="beep" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\beep.ogg" qualifiers="" type="raw"/><file name="big_select_tick" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\big_select_tick.svg" qualifiers="" type="raw"/><file name="bottomsheet_icon_more" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\bottomsheet_icon_more.svg" qualifiers="" type="raw"/><file name="checkbox_select" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_select.svg" qualifiers="" type="raw"/><file name="checkbox_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected.svg" qualifiers="" type="raw"/><file name="checkbox_selected_grey" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_grey.svg" qualifiers="" type="raw"/><file name="checkbox_selected_grey_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_grey_dark.svg" qualifiers="" type="raw"/><file name="checkbox_selected_grey_dark_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_grey_dark_small.svg" qualifiers="" type="raw"/><file name="checkbox_selected_grey_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_grey_small.svg" qualifiers="" type="raw"/><file name="checkbox_selected_orange" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_orange.svg" qualifiers="" type="raw"/><file name="checkbox_selected_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_red.svg" qualifiers="" type="raw"/><file name="checkbox_selected_red_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_red_small.svg" qualifiers="" type="raw"/><file name="checkbox_selected_small" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_selected_small.svg" qualifiers="" type="raw"/><file name="checkbox_unselected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_unselected.svg" qualifiers="" type="raw"/><file name="checkbox_unselected_white" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\checkbox_unselected_white.svg" qualifiers="" type="raw"/><file name="close_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\close_arrow.svg" qualifiers="" type="raw"/><file name="close_cross" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\close_cross.svg" qualifiers="" type="raw"/><file name="collapse_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\collapse_arrow.svg" qualifiers="" type="raw"/><file name="confirm_dialog_successful_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\confirm_dialog_successful_icon.svg" qualifiers="" type="raw"/><file name="delete_dark_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\delete_dark_icon.svg" qualifiers="" type="raw"/><file name="delete_white_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\delete_white_icon.svg" qualifiers="" type="raw"/><file name="dialog_successful_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\dialog_successful_icon.svg" qualifiers="" type="raw"/><file name="icons_filled_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\icons_filled_arrow.svg" qualifiers="" type="raw"/><file name="icons_outlined_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\icons_outlined_arrow.svg" qualifiers="" type="raw"/><file name="icons_outlined_done" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\icons_outlined_done.svg" qualifiers="" type="raw"/><file name="icons_pop_arrow" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\icons_pop_arrow.svg" qualifiers="" type="raw"/><file name="icon_info" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\icon_info.svg" qualifiers="" type="raw"/><file name="info_icon_disabled" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\info_icon_disabled.svg" qualifiers="" type="raw"/><file name="more_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\more_icon.svg" qualifiers="" type="raw"/><file name="ok_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\ok_icon.svg" qualifiers="" type="raw"/><file name="progress_cancel_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\progress_cancel_btn.svg" qualifiers="" type="raw"/><file name="progress_cancel_btn_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\progress_cancel_btn_pressed.svg" qualifiers="" type="raw"/><file name="ps_click_music" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\ps_click_music.wav" qualifiers="" type="raw"/><file name="radio_default_on" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\radio_default_on.svg" qualifiers="" type="raw"/><file name="radio_disable" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\radio_disable.svg" qualifiers="" type="raw"/><file name="radio_off" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\radio_off.svg" qualifiers="" type="raw"/><file name="radio_on" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\radio_on.svg" qualifiers="" type="raw"/><file name="radio_on_red" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\radio_on_red.svg" qualifiers="" type="raw"/><file name="round_selector_checked_orange" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\round_selector_checked_orange.svg" qualifiers="" type="raw"/><file name="sdk_protocol" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\sdk_protocol.json" qualifiers="" type="raw"/><file name="seek_bar_horn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\seek_bar_horn.svg" qualifiers="" type="raw"/><file name="seek_bar_horn_mute" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\seek_bar_horn_mute.svg" qualifiers="" type="raw"/><file name="shortvideo_play_btn" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\shortvideo_play_btn.svg" qualifiers="" type="raw"/><file name="sight_icon_in_gird" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\sight_icon_in_gird.svg" qualifiers="" type="raw"/><file name="spinner_16_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_16_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_48_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_48_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_76_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_76_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_green_16_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_green_16_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_green_48_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_green_48_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_green_76_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_green_76_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_white_16_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_white_16_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_white_48_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_white_48_outer_holo.svg" qualifiers="" type="raw"/><file name="spinner_white_76_outer_holo" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\spinner_white_76_outer_holo.svg" qualifiers="" type="raw"/><file name="subscribe_msg_dialog_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\subscribe_msg_dialog_back.svg" qualifiers="" type="raw"/><file name="subscribe_msg_dialog_item_info" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\subscribe_msg_dialog_item_info.svg" qualifiers="" type="raw"/><file name="subscribe_msg_info_ic" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\subscribe_msg_info_ic.svg" qualifiers="" type="raw"/><file name="subscribe_msg_item_checkbox_selected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\subscribe_msg_item_checkbox_selected.svg" qualifiers="" type="raw"/><file name="subscribe_msg_item_checkbox_unselected" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\subscribe_msg_item_checkbox_unselected.svg" qualifiers="" type="raw"/><file name="subscribe_msg_item_checkbox_unselected_disabled" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\subscribe_msg_item_checkbox_unselected_disabled.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_arrow_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_arrow_dark.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_arrow_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_arrow_light.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_close_dark" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_close_dark.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_close_dark_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_close_dark_pressed.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_close_light" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_close_light.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_close_light_pressed" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_close_light_pressed.svg" qualifiers="" type="raw"/><file name="tipsbar_icon_warning" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\tipsbar_icon_warning.svg" qualifiers="" type="raw"/><file name="video_icon_in_gird" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\video_icon_in_gird.svg" qualifiers="" type="raw"/><file name="video_no_sd_icon" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\video_no_sd_icon.svg" qualifiers="" type="raw"/><file name="wxa_setting_icon_back" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\wxa_setting_icon_back.svg" qualifiers="" type="raw"/><file name="wxa_setting_icon_close" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\raw\wxa_setting_icon_close.svg" qualifiers="" type="raw"/><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\values\values.xml" qualifiers=""><attr format="color" name="Alphabet_text_color"/><attr format="color" name="BG_0"/><attr format="color" name="BG_1"/><attr format="color" name="BG_2"/><attr format="color" name="BG_3"/><attr format="color" name="BG_4"/><attr format="color" name="BG_5"/><attr format="color" name="FG_0"/><attr format="color" name="FG_1"/><attr format="color" name="FG_2"/><attr format="color" name="FG_3"/><attr format="color" name="Indigo"/><attr format="color" name="LightGreen"/><attr format="color" name="Link"/><attr format="color" name="Orange"/><attr format="color" name="Purple"/><attr format="reference" name="SwipeBackLayoutStyle"/><attr format="color" name="TextGreen"/><attr format="color" name="Yellow"/><attr format="reference" name="actionbar_icon_dark_back"/><attr format="color" name="app_actionbar_color"/><attr format="color" name="app_content_bg_color"/><attr format="color" name="app_theme_color"/><attr format="color" name="arrow_color"/><attr format="reference" name="chatfrom_bg"/><attr format="reference" name="chatfrom_bg_app"/><attr format="reference" name="chatfrom_voice_playing_f1"/><attr format="reference" name="chatfrom_voice_playing_f2"/><attr format="reference" name="chatfrom_voice_playing_f3"/><attr format="reference" name="chatto_bg"/><attr format="reference" name="chatto_bg_app"/><attr format="reference" name="checkbox_selector"/><attr format="reference" name="colorful_card"/><attr format="reference" name="colorful_favorites"/><attr format="reference" name="colorful_game"/><attr format="reference" name="colorful_moment"/><attr format="color" name="conversation_click_color"/><attr format="reference" name="datePickerStyle"/><attr format="color" name="default_bg_color"/><attr format="reference" name="emoji_pop_bg_smiley"/><attr format="reference" name="emoji_pop_bg_smiley_left"/><attr format="reference" name="emoji_pop_bg_smiley_right"/><attr format="reference" name="et_clear_selector"/><attr format="color" name="item_color_selector"/><attr format="reference" name="list_item_divider"/><attr format="reference" name="list_top_line_selector"/><attr format="reference" name="me_alpha_bg"/><attr format="reference" name="me_normal_bg"/><attr format="reference" name="ok_icon"/><attr format="reference" name="progress_cancel"/><attr format="reference" name="radio_selector"/><attr format="reference" name="sns_comment_btn"/><attr format="string" name="themeName"/><attr format="color" name="time_text_color"/><attr format="reference" name="tips_background"/><color name="BG_0">@color/BW_93</color><color name="BG_1">@color/BW_97</color><color name="BG_2">@color/BW_100</color><color name="BG_3">@color/BW_97</color><color name="BG_4">@color/BW_BG_30</color><color name="BG_5">#FFFFFF</color><color name="BW_0">#000000</color><color name="BW_0_Alpha_0_0_3">#08000000</color><color name="BW_0_Alpha_0_0_5">#0D000000</color><color name="BW_0_Alpha_0_1">#1A000000</color><color name="BW_0_Alpha_0_1_3">#21000000</color><color name="BW_0_Alpha_0_1_5">#26000000</color><color name="BW_0_Alpha_0_2">#33000000</color><color name="BW_0_Alpha_0_2_5">#40000000</color><color name="BW_0_Alpha_0_3">#4D000000</color><color name="BW_0_Alpha_0_4">#66000000</color><color name="BW_0_Alpha_0_5">#80000000</color><color name="BW_0_Alpha_0_8">#CC000000</color><color name="BW_0_Alpha_0_9">#E6000000</color><color name="BW_10">#181818</color><color name="BW_100">#FFFFFF</color><color name="BW_100_Alpha_0_0_5">#0DFFFFFF</color><color name="BW_100_Alpha_0_1">#1AFFFFFF</color><color name="BW_100_Alpha_0_2">#33FFFFFF</color><color name="BW_100_Alpha_0_3">#4DFFFFFF</color><color name="BW_100_Alpha_0_5">#80FFFFFF</color><color name="BW_100_Alpha_0_6">#99FFFFFF</color><color name="BW_100_Alpha_0_8">#CCFFFFFF</color><color name="BW_100_Alpha_0_9">#E6FFFFFF</color><color name="BW_20">#303030</color><color name="BW_50">#808080</color><color name="BW_70">#B2B2B2</color><color name="BW_70_dark">#6B6B6B</color><color name="BW_90">#E5E5E5</color><color name="BW_93">#EDEDED</color><color name="BW_94">@color/BW_93</color><color name="BW_95">@color/BW_93</color><color name="BW_97">#F7F7F7</color><color name="BW_98">@color/BW_97</color><color name="BW_BG_100">#FFFFFF</color><color name="BW_BG_19">#191919</color><color name="BW_BG_20">#333333</color><color name="BW_BG_30">#4C4C4C</color><color name="BW_BG_95">@color/BW_93</color><color name="BW_BG_98">@color/BW_97</color><color name="BW_F_Alpha_0_8">#CCFFFFFF</color><color name="Blue">#10AEFF</color><color name="Blue_100">#10AEFF</color><color name="Blue_120">#3FBEFF</color><color name="Blue_170">#B7E6FF</color><color name="Blue_80">#0C8BCC</color><color name="Blue_90">#0E9CE6</color><color name="Blue_BG_100">#48A6E2</color><color name="Blue_BG_110">#5AAFE4</color><color name="Blue_BG_130">#7FC0EA</color><color name="Blue_BG_90">#4095CB</color><color name="Blur_1">#D9F5F5F5</color><color name="Blur_2">#A6AAAAAA</color><color name="Blur_3">#A65B5B5B</color><color name="Blur_4">#CC333333</color><color name="Blur_5">#CC0C0C0C</color><color name="Brand">#07C160</color><color name="Brand_100">#07C160</color><color name="Brand_120">#69c694</color><color name="Brand_170">#B4ECCE</color><color name="Brand_80">#059A4C</color><color name="Brand_90">#06AE56</color><color name="Brand_Alpha_0_1">#1A07C160</color><color name="Brand_Alpha_0_2">#3307C160</color><color name="Brand_Alpha_0_3">#4D07C160</color><color name="Brand_Alpha_0_5">#8007C160</color><color name="Brand_BG_100">#2AAE67</color><color name="Brand_BG_110">#3EB575</color><color name="Brand_BG_130">#69C694</color><color name="Brand_BG_90">#259C5C</color><color name="Btn_green_text_color">#06AE56</color><color name="Btn_white_color_pressed">#CECECE</color><color name="Dark_0">#111111</color><color name="Dark_1">#1E1E1E</color><color name="Dark_2">#191919</color><color name="Dark_3">#202020</color><color name="Dark_4">#404040</color><color name="Dark_5">#2C2C2C</color><color name="FG_0">@color/BW_0_Alpha_0_9</color><color name="FG_0_5">@color/BW_0_Alpha_0_9</color><color name="FG_1">@color/BW_0_Alpha_0_5</color><color name="FG_2">@color/BW_0_Alpha_0_3</color><color name="FG_3">@color/BW_0_Alpha_0_1</color><color name="FG_4">@color/BW_0_Alpha_0_1_5</color><color name="Green">#91D300</color><color name="Green_100">#91D300</color><color name="Green_120">#A7DB33</color><color name="Green_170">#DEF1B3</color><color name="Green_80">#74A800</color><color name="Green_90">#82BD00</color><color name="Green_BG_100">#96BE40</color><color name="Green_BG_110">#A0C452</color><color name="Green_BG_130">#B5D179</color><color name="Green_BG_90">#86AA39</color><color name="Indigo">#1485EE</color><color name="Indigo_100">#1485EE</color><color name="Indigo_120">#439DF1</color><color name="Indigo_170">#B8DAF9</color><color name="Indigo_60">#0C4F8E</color><color name="Indigo_80">#106ABE</color><color name="Indigo_90">#1277D6</color><color name="Indigo_BG_100">#2B77BF</color><color name="Indigo_BG_110">#3F84C5</color><color name="Indigo_BG_130">#6BA0D2</color><color name="Indigo_BG_90">#266AAB</color><color name="LightGreen">#95EC69</color><color name="LightGreen_100">#95EC69</color><color name="LightGreen_120">#AAEF87</color><color name="LightGreen_170">#DEF9D1</color><color name="LightGreen_80">#77BC54</color><color name="LightGreen_90">#85D35E</color><color name="LightGreen_BG_100">#72CF60</color><color name="LightGreen_BG_110">#80D370</color><color name="LightGreen_BG_130">#9CDD90</color><color name="LightGreen_BG_90">#66B956</color><color name="Link">#576B95</color><color name="Link_100">#576B95</color><color name="Link_120">#7888AA</color><color name="Link_170">#CCD2DE</color><color name="Link_80">#455577</color><color name="Link_90">#4E6085</color><color name="Link_Alpha_0_3">#4D576B95</color><color name="Link_Alpha_0_6">#99576B95</color><color name="Orange">#FA9D3B</color><color name="Orange_100">#FA9D3B</color><color name="Orange_120">#FBB062</color><color name="Orange_170">#FDE1C3</color><color name="Orange_80">#C87D2F</color><color name="Orange_90">#E08C34</color><color name="Orange_BG_100">#EA7800</color><color name="Orange_BG_110">#EC8519</color><color name="Orange_BG_130">#F0A04D</color><color name="Orange_BG_90">#D26B00</color><color name="Purple">#6467F0</color><color name="Purple_100">#6467F0</color><color name="Purple_120">#8385F3</color><color name="Purple_170">#D0D1FA</color><color name="Purple_80">#5052C0</color><color name="Purple_90">#595CD7</color><color name="Purple_BG_100">#6769BA</color><color name="Purple_BG_110">#7678C1</color><color name="Purple_BG_130">#9496CE</color><color name="Purple_BG_90">#5C5EA7</color><color name="Red">#FA5151</color><color name="Red_100">#FA5151</color><color name="Red_120">#FB7373</color><color name="Red_170">#FDCACA</color><color name="Red_190">#FEEDED</color><color name="Red_80">#C84040</color><color name="Red_90">#E14949</color><color name="Red_Alpha_0_2">#33FA5151</color><color name="Red_BG_100">#CF5148</color><color name="Red_BG_110">#D3625A</color><color name="Red_BG_130">#DD847E</color><color name="Red_BG_90">#B94840</color><color name="UN_BG_0">#EDEDED</color><color name="UN_BW_0_Alpha_0_0_5">#0D000000</color><color name="UN_BW_0_Alpha_0_1">#1A000000</color><color name="UN_BW_0_Alpha_0_2">#33000000</color><color name="UN_BW_0_Alpha_0_3">#4D000000</color><color name="UN_BW_0_Alpha_0_5">#80000000</color><color name="UN_BW_0_Alpha_0_9">#E6000000</color><color name="UN_BW_100">@color/White</color><color name="UN_BW_93">#EDEDED</color><color name="UN_BW_97">#F7F7F7</color><color name="UN_Brand">#07C160</color><color name="UN_Brand_BG_100">#2AAE67</color><color name="UN_Link">#576B95</color><color name="UN_Red">#FA5151</color><color name="UN_Yellow">#FFC300</color><color name="UN_Yellow_90">#E6AF00</color><color name="UN_Yellow_BG_100">#EFB600</color><color name="White">#FFFFFF</color><color name="Yellow">#FFC300</color><color name="Yellow_100">#FFC300</color><color name="Yellow_120">#FFCF33</color><color name="Yellow_170">#FFECB2</color><color name="Yellow_80">#CC9C00</color><color name="Yellow_90">#E6AF00</color><color name="Yellow_BG_100">#EFB600</color><color name="Yellow_BG_110">#F0BD19</color><color name="Yellow_BG_130">#F3CC4D</color><color name="Yellow_BG_90">#D7A400</color><color name="action_bar_color">@color/dark_actionbar_color</color><color name="action_bar_tittle_color">@color/white_text_color</color><color name="actionbar_bg_color">@color/dark_actionbar_color</color><color name="actionbar_devider_color">@color/BW_0_Alpha_0_1</color><color name="actionbar_selector_color">@color/BW_0_Alpha_0_2</color><color name="actionbar_subtitle_color">@color/BW_0_Alpha_0_5</color><color name="actionbar_subtitle_light_color">@color/BW_100_Alpha_0_6</color><color name="actionbar_title_color">@color/BW_0_Alpha_0_9</color><color name="actionbar_title_light_color">@color/BW_100_Alpha_0_8</color><color name="ad_btn_color">#FFFFFF</color><color name="album_chooser_bg_color">#FF4C4C4C</color><color name="album_chooser_icon_bg_color">#CCCCCCCC</color><color name="album_chooser_icon_color">#CD000000</color><color name="alpha_white_text_color">@color/BW_100_Alpha_0_5</color><color name="app_brand_action_sheet_header_text_color">@color/desc_text_color</color><color name="app_brand_action_sheet_title_color">#DF000000</color><color name="app_brand_capsule_divider_dark">#40FFFFFF</color><color name="app_brand_capsule_divider_light">#20000000</color><color name="app_brand_capsule_inside_dark">#33000000</color><color name="app_brand_capsule_inside_light">#99FFFFFF</color><color name="app_brand_capsule_stroke_line_dark">#3FFFFFFF</color><color name="app_brand_capsule_stroke_line_light">#33979797</color><color name="app_brand_jslogin_auth_desc_color">@color/desc_text_color</color><color name="app_brand_jslogin_avatar_devide_line_color">@color/small_line_color</color><color name="app_brand_jslogin_devide_line_color">@color/small_line_color</color><color name="app_brand_jslogin_login_accept_color">@color/brand_text_color</color><color name="app_brand_jslogin_login_reject_color">@color/desc_text_color</color><color name="app_brand_jslogin_wechat_auth_color">@color/normal_text_color</color><color name="app_brand_toast_bg_color">#B3111111</color><color name="app_brand_verify_code_color">#33B532</color><color name="appbrand_keyboard_bottom_left_right">@color/appbrand_keyboard_bottom_left_right_light</color><color name="appbrand_keyboard_bottom_left_right_high">@color/appbrand_keyboard_bottom_left_right_high_light</color><color name="appbrand_keyboard_bottom_left_right_high_light">#BFBFBF</color><color name="appbrand_keyboard_bottom_left_right_light">#E0E0E0</color><color name="appbrand_keyboard_item_normal">@color/appbrand_keyboard_item_normal_light</color><color name="appbrand_keyboard_item_normal_light">#EDEDED</color><color name="appbrand_keyboard_item_pressed">@color/appbrand_keyboard_item_pressed_light</color><color name="appbrand_keyboard_item_pressed_light">#1A000000</color><color name="appbrand_keyboard_item_text_color">@color/normal_text</color><color name="arrow_color">#B2B2B2</color><color name="biz_time_line_new_msg_tips_bg">#08000000</color><color name="black">@color/BW_0</color><color name="black_color">#000000</color><color name="black_text_color">@color/BW_0_Alpha_0_9</color><color name="black_text_color_disabled">@color/BW_0_Alpha_0_2</color><color name="black_text_color_pressed">@color/BW_100_Alpha_0_6</color><color name="blue_bg_color">@color/Blue</color><color name="blue_text_color">@color/brand_text_color</color><color name="bottom_cell_bg_color">@color/BW_97</color><color name="bottom_cell_bg_press_color">@color/BW_0_Alpha_0_1</color><color name="bottom_sheet_text_color">@color/normal_text_color</color><color name="bottom_sheet_text_color_disable">@color/BW_0_Alpha_0_2_5</color><color name="bottom_sheet_text_desc_color">@color/BW_0_Alpha_0_5</color><color name="bottom_sheet_title_text_color">@color/BW_0_Alpha_0_5</color><color name="bottomsheet_footer_menu_color">@color/White</color><color name="bottomsheet_header_menu_color">@color/BW_100_Alpha_0_5</color><color name="bottomsheet_shape_color">@color/White</color><color name="brand_text_color">@color/Link_100</color><color name="brand_text_color_disable">@color/Link_Alpha_0_3</color><color name="brand_text_color_pressed">@color/Link_Alpha_0_6</color><color name="btn_dark_color_disable">@color/BW_0_Alpha_0_0_5</color><color name="btn_gold_red_color_disable">#F4AF9C</color><color name="btn_gold_red_color_normal">#EA5F39</color><color name="btn_gold_red_color_pressed">#D25533</color><color name="btn_green_color_disable">@color/BW_0_Alpha_0_0_5</color><color name="btn_green_color_normal">@color/wechat_green</color><color name="btn_green_color_pressed">@color/wechat_green_press</color><color name="btn_green_outline_color_disable">#00179E16</color><color name="btn_green_outline_color_normal">@color/wechat_green</color><color name="btn_green_outline_color_pressed">#00B76D</color><color name="btn_green_text_color">#06AE56</color><color name="btn_grey_outline_color_disable">#F2F2F2</color><color name="btn_grey_outline_color_normal">#F2F2F2</color><color name="btn_grey_outline_color_pressed">#DBDBDB</color><color name="btn_red_color_disable">@color/BW_0_Alpha_0_0_5</color><color name="btn_red_color_normal">@color/Red</color><color name="btn_red_color_pressed">@color/Red_90</color><color name="btn_red_outline_color_disable">#00D33D3A</color><color name="btn_red_outline_color_normal">#D33D3A</color><color name="btn_red_outline_color_pressed">#BD3734</color><color name="btn_white_color_disable">@color/BW_0_Alpha_0_0_5</color><color name="btn_white_color_normal">@color/BW_0_Alpha_0_0_5</color><color name="btn_white_color_pressed">#CECECE</color><color name="btn_white_text_color">#FFFFFF</color><color name="bubble_chat_from_bg_color">@color/white_color</color><color name="bubble_chat_to_bg_color">@color/LightGreen</color><color name="cancel_btn_color">@color/normal_text_color</color><color name="chat_img_default_bg_color">@color/BW_0_Alpha_0_4</color><color name="chat_img_mask_color">#80a2a2a2</color><color name="chat_to_cursor_handle_color">@color/wechat_green</color><color name="chat_to_link">@color/Link_100</color><color name="chat_to_selected">#4D07C160</color><color name="chatting_panel_bg_color">@color/BW_97</color><color name="chatting_to_disable_text_color">#33000000</color><color name="chatting_to_text_color">#E6000000</color><color name="click_top_item">#E5E5E5</color><color name="color_80888888">#80888888</color><color name="conversation_click">#EDEDED</color><color name="cursor_handle_color">@color/wechat_green</color><color name="dark_actionbar_color">@color/Dark_0</color><color name="dark_bg_hint_color">@color/BW_100_Alpha_0_3</color><color name="dark_bg_line_color">@color/BW_100_Alpha_0_1</color><color name="dark_selected_color">@color/BW_100_Alpha_0_1</color><color name="default_background_color">@color/BG_0</color><color name="desc_text">@color/BW_0_Alpha_0_5</color><color name="desc_text_color">@color/BW_0_Alpha_0_5</color><color name="dialog_content_bg">#08000000</color><color name="dialog_content_bg_press">@color/BG_0</color><color name="dialog_divider_line_color">@color/BW_0_Alpha_0_1</color><color name="dialog_msg_color">@color/BW_0_Alpha_0_5</color><color name="dialog_msg_title_color">@color/BW_0_Alpha_0_9</color><color name="disable_text_color">@color/BW_0_Alpha_0_2</color><color name="error_color_material">#ffffff</color><color name="form_hint_text_color">@color/BW_0_Alpha_0_3</color><color name="gallery_btn_disable_color">#14FFFFFF</color><color name="green_text_color">#06AE56</color><color name="green_text_color_disable">@color/btn_green_color_disable</color><color name="green_text_color_pressed">@color/btn_green_color_pressed</color><color name="grey_background_text_color">@color/BW_0_Alpha_0_5</color><color name="grey_bg_color">@color/grey_text_color</color><color name="grey_blue_bg_color">#686F78</color><color name="grey_btn_color_disable">@color/BW_0_Alpha_0_0_5</color><color name="grey_btn_color_normal">@color/BW_0_Alpha_0_0_5</color><color name="grey_btn_color_pressed">#CECECE</color><color name="grey_btn_stroke_color_disable">#7f9e9e9e</color><color name="grey_btn_stroke_color_normal">#bebebe</color><color name="grey_btn_stroke_color_pressed">#9e9e9e</color><color name="grey_color_01">#C9C9C9</color><color name="grey_text_color">@color/BW_0_Alpha_0_5</color><color name="half_alpha_black">@color/BW_0_Alpha_0_5</color><color name="hint_text_color">@color/BW_0_Alpha_0_3</color><color name="icon_border_color">@color/White</color><color name="icon_color">@color/FG_0</color><color name="icon_color_press">#ACACAC</color><color name="image_gallery_mask">@color/UN_BW_0_Alpha_0_1</color><color name="input_grey_bg_color">#F7F7F7</color><color name="input_menu_divider">#66D8D8D8</color><color name="key_step_logger_analyser_bg_color">@color/BG_2</color><color name="light_bg_color">#C9C9C9</color><color name="light_bg_hint_color">@color/BW_0_Alpha_0_3</color><color name="light_blue_bg_color">#EFEFF4</color><color name="light_grey_text_color">@color/BW_0_Alpha_0_3</color><color name="light_selected_color">@color/BW_0_Alpha_0_1</color><color name="line_color">@color/BW_0_Alpha_0_1</color><color name="list_devider_color">@color/BW_0_Alpha_0_1</color><color name="list_divider_color_black">@color/small_line_color</color><color name="list_top_bg_color">@color/BG_3</color><color name="loading_bg_color">@color/BW_0_Alpha_0_4</color><color name="loading_icon_color">#E5E5E5</color><color name="lucky_money_mask">#CDF2F2F2</color><color name="map_dark">#80000000</color><color name="mask_color">#80000000</color><color name="menu_devider_color">@color/BW_0_Alpha_0_1</color><color name="menu_pressed_color">@color/BW_0_Alpha_0_1</color><color name="normal_actionbar_color">@color/BW_93</color><color name="normal_bg_color">@color/BW_93</color><color name="normal_text">@color/BW_0_Alpha_0_9</color><color name="normal_text_color">@color/BW_0_Alpha_0_9</color><color name="orange_bg_color">@color/Orange</color><color name="panel_shade_color">@color/BW_100</color><color name="panel_shade_press_color">@color/BW_0_Alpha_0_1</color><color name="picker_divider">#EEEEEE</color><color name="picker_half_alpha_bg">#80000000</color><color name="picker_normal">#4D000000</color><color name="picker_selected">#E6000000</color><color name="pickerview_bgColor_default">#FFFFFFFF</color><color name="pickerview_bgColor_overlay">#60000000</color><color name="pickerview_bg_topbar">#f5f5f5</color><color name="pickerview_timebtn_nor">#057dff</color><color name="pickerview_timebtn_pre">#c2daf5</color><color name="pickerview_topbar_title">#000000</color><color name="pickerview_wheelview_textcolor_center">#2a2a2a</color><color name="pickerview_wheelview_textcolor_divider">#d5d5d5</color><color name="pickerview_wheelview_textcolor_out">#a8a8a8</color><color name="pop_menu_color">#FFFFFF</color><color name="press_color_for_darkbg">@color/BW_100_Alpha_0_3</color><color name="press_color_for_lightbg">@color/BW_0_Alpha_0_1</color><color name="profile_btn_text">@color/BW_0_Alpha_0_8</color><color name="ps_color_0077F6">#0077F6</color><color name="ps_color_20">#20000000</color><color name="ps_color_20c064">#20c064</color><color name="ps_color_33">#333333</color><color name="ps_color_394a3e">#394a3e</color><color name="ps_color_4d">#4d4d4d</color><color name="ps_color_4e4d4e">#4e4d4e</color><color name="ps_color_529BeA">#529BeA</color><color name="ps_color_53575e">#53575e</color><color name="ps_color_66">#666666</color><color name="ps_color_70">#70000000</color><color name="ps_color_80">#80000000</color><color name="ps_color_8D57FC">#8D57FC</color><color name="ps_color_99_black">#99000000</color><color name="ps_color_9b">#9b9b9b</color><color name="ps_color_E4E4E4">#E4E4E4</color><color name="ps_color_a83">#a8333333</color><color name="ps_color_aab2bd">#AAB2BD</color><color name="ps_color_ba3">#b0567ba3</color><color name="ps_color_bd">#BDBDBD</color><color name="ps_color_bfe85d">#BF96E85D</color><color name="ps_color_black">#000000</color><color name="ps_color_blue">#7D7DFF</color><color name="ps_color_e">#EEEEEE</color><color name="ps_color_e0ff6100">#E0FF6100</color><color name="ps_color_eb">#ebebeb</color><color name="ps_color_ec">#ececec</color><color name="ps_color_f0">#F0F0F0</color><color name="ps_color_f2">#F2F2F2</color><color name="ps_color_fa">#FAFAFA</color><color name="ps_color_fa632d">#FA632D</color><color name="ps_color_ff572e">#ff572e</color><color name="ps_color_ffd042">#FFFFD042</color><color name="ps_color_ffe85d">#FF96E85D</color><color name="ps_color_grey">#393a3e</color><color name="ps_color_grey_3e">#dd393a3e</color><color name="ps_color_half_grey">#E6393a3e</color><color name="ps_color_half_white">#99FFFFFF</color><color name="ps_color_light_grey">#999999</color><color name="ps_color_transparent">#00000000</color><color name="ps_color_transparent_e0db">#E0DBDBDB</color><color name="ps_color_transparent_white">#F0FFFFFF</color><color name="ps_color_white">#FFFFFF</color><color name="qbar_possible_result_points">#c0ffff00</color><color name="qbar_result_view">#b0000000</color><color name="qbar_viewfinder_mask">#60000000</color><color name="red_bg_color">@color/Red</color><color name="red_text_color">@color/Red_90</color><color name="request_dialog_btn_green_text_color">#07C160</color><color name="round_wheel_color">@color/BW_0_Alpha_0_1</color><color name="scan_circle_button_bg_color">#4D000000</color><color name="selected_blue">@color/wechat_green_quarter_alpha</color><color name="settings_bg">@color/BW_93</color><color name="small_line_color">#1A000000</color><color name="specail_green_cursor_color">@color/Brand</color><color name="statusbar_fg_color">@color/BW_0_Alpha_0_1</color><color name="statusbar_fg_drak_color">@color/BW_0_Alpha_0_2</color><color name="sub_menu_pressed_color">@color/small_line_color</color><color name="switch_btn_off_color">@color/BW_0_Alpha_0_2</color><color name="switch_btn_on_color">@color/wechat_green</color><color name="sys_text_color">@color/BW_0_Alpha_0_3</color><color name="text_btn_color_pressed">#0F000000</color><color name="tipbar_bg_red_normal">@color/Red_190</color><color name="tipbar_bg_red_press">#E4D4D4</color><color name="tipbar_bg_white">@color/BW_97</color><color name="tipsbar_black_bg_color">#9A000000</color><color name="tipsbar_green_bg_color">#E6F8EF</color><color name="tipsbar_grey_bg_color">@color/BW_0_Alpha_0_3</color><color name="tipsbar_orange_bg_color">#E6FA9D3B</color><color name="tipsbar_red_bg_color">@color/Red_190</color><color name="tipsbar_red_press_color">#E4D4D4</color><color name="tipsbar_text_color">@color/BW_0_Alpha_0_5</color><color name="tipsbar_white_bg_color">#E6FFFFFF</color><color name="trans_cancel_btn_color">#99808080</color><color name="transparent">#00000000</color><color name="un_grey_btn_color_pressed">#CECECE</color><color name="uncompleted_color">@color/grey_text_color</color><color name="uncompleted_text_color">@color/black_text_color</color><color name="voice_active_btn_color">#E6FFFFFF</color><color name="voice_range_end_color">#D5D5D5</color><color name="voice_range_normal_color">#33000000</color><color name="voice_range_ring_color">#26FFFFFF</color><color name="voice_range_start_color">#999999</color><color name="wallet_tenpay_keyboard_text_color">@color/normal_text_color</color><color name="webview_bg_color">#EDEDED</color><color name="webview_logo_bg_color">#282b2d</color><color name="webview_logo_text_color">#6F7476</color><color name="wechat_green">@color/Brand</color><color name="wechat_green_bubble">#A0E75A</color><color name="wechat_green_disable">@color/Brand_170</color><color name="wechat_green_half_alpha">#7F1AAD19</color><color name="wechat_green_press">@color/Brand_90</color><color name="wechat_green_quarter_alpha">#4D07C160</color><color name="wechat_light_green">#7FEB37</color><color name="white">@color/BW_100</color><color name="white_color">#FFFFFF</color><color name="white_text_color">@color/White</color><color name="white_text_color_disabled">@color/BW_100_Alpha_0_3</color><color name="white_text_color_pressed">@color/BW_100_Alpha_0_6</color><color name="wmpf_qrlogin_widget_alert_title_color_fail">#FA5151</color><color name="wmpf_qrlogin_widget_alert_title_color_ok">#1AAD19</color><color name="wxa_menu_header_status_desc_text">#FFFFFFFF</color><color name="wxa_recents_item_type_tag_bg">#42000000</color><color name="wxa_recents_item_type_tag_text">#FFFFFFFF</color><dimen name="ActionBarTextSize">@dimen/BodyTextSize</dimen><dimen name="AvartarSize">@dimen/Edge_5A</dimen><dimen name="BasicPaddingSize">4dp</dimen><dimen name="BigAvatarSize">@dimen/Edge_8A</dimen><dimen name="BigPadding">12dp</dimen><dimen name="BigTextSize">17dp</dimen><dimen name="BigTitleTextSize">32dp</dimen><dimen name="BigerMoreTextSize">26dp</dimen><dimen name="BigerTextSize">24dp</dimen><dimen name="BiggerMoreTextSize">26dp</dimen><dimen name="BiggerPadding">14dp</dimen><dimen name="BiggerTextSize">24dp</dimen><dimen name="BodyTextSize">17dp</dimen><dimen name="BottomSheetGridMaxHeight">347dp</dimen><dimen name="BottomSheetGridMaxHeight_Landscape">235dp</dimen><dimen name="BottomSheetListMaxHeight">312dp</dimen><dimen name="BottomSheetTextTitleHeight">36dp</dimen><dimen name="BottomSheetTitleTextSize">12dp</dimen><dimen name="BtnMarginTop">14dp</dimen><dimen name="ButtonCornerSize">4dp</dimen><dimen name="ButtonSmallCornerSize">3.2dp</dimen><dimen name="ButtonlineSize">1dp</dimen><dimen name="CaptionTextSize">10dp</dimen><dimen name="ChatCardWidth">130dp</dimen><dimen name="ChatImgLimitWidth">150dp</dimen><dimen name="ChatImgMaxWidth">200dp</dimen><dimen name="ChatImgMinWidth">75dp</dimen><dimen name="ChatItemThumWidth">45dp</dimen><dimen name="ChatLucyTitleTextSize">15dp</dimen><dimen name="ChatVideoStatusBtnWidth">40dp</dimen><dimen name="ChatVideoTextSize">11dp</dimen><dimen name="CheckBoxHeight">24dp</dimen><dimen name="CheckBoxSmallHeight">20dp</dimen><dimen name="CheckBoxSmallWidth">20dp</dimen><dimen name="CheckBoxWidth">24dp</dimen><dimen name="ConfirmButtonMaxWidth">142dp</dimen><dimen name="ConfirmButtonWidth">64dp</dimen><dimen name="ContactAvatarSize">@dimen/AvartarSize</dimen><dimen name="CornerSize">2dp</dimen><dimen name="DefaultActionbarHeight">@dimen/wechat_abc_action_bar_default_height</dimen><dimen name="DefaultActionbarHeightLand">48dp</dimen><dimen name="DefaultActionbarHeightPort">48dp</dimen><dimen name="DefaultCornerSize">4dp</dimen><dimen name="DefaultIconSize">@dimen/Edge_3A</dimen><dimen name="DefaultListItemHeight">@dimen/Edge_7A</dimen><dimen name="DefaultTabbarHeight">@dimen/Edge_7A</dimen><dimen name="DescTextSize">14dp</dimen><dimen name="DialogAvatarLinePadding">15dp</dimen><dimen name="DialogBigImageMaxHeight">140dp</dimen><dimen name="DialogBigImageMinHeight">70dp</dimen><dimen name="DialogEdgePadding">24dp</dimen><dimen name="DialogHeaderHeight">64dp</dimen><dimen name="DialogMsgTextSize">14dp</dimen><dimen name="DialogMsgTitleTextSize">@dimen/BodyTextSize</dimen><dimen name="DialogTitleDetailMaxHeight">238dp</dimen><dimen name="DialogTitleTextSize">@dimen/BodyTextSize</dimen><dimen name="DialogUserNameSize">10dp</dimen><dimen name="DividerHeight">0.5dp</dimen><dimen name="DividerPadding">2px</dimen><dimen name="DividerSmallHeight">1px</dimen><dimen name="EdgePadding">@dimen/Edge_2A</dimen><dimen name="Edge_0_5_A">4dp</dimen><dimen name="Edge_10A">80dp</dimen><dimen name="Edge_10_5_A">84dp</dimen><dimen name="Edge_11A">88dp</dimen><dimen name="Edge_12A">96dp</dimen><dimen name="Edge_13A">104dp</dimen><dimen name="Edge_14A">112dp</dimen><dimen name="Edge_14_5_A">116dp</dimen><dimen name="Edge_15A">120dp</dimen><dimen name="Edge_16A">128dp</dimen><dimen name="Edge_17A">136dp</dimen><dimen name="Edge_18A">144dp</dimen><dimen name="Edge_1_5_A">12dp</dimen><dimen name="Edge_20A">160dp</dimen><dimen name="Edge_22A">176dp</dimen><dimen name="Edge_23A">184dp</dimen><dimen name="Edge_24A">192dp</dimen><dimen name="Edge_25A">200dp</dimen><dimen name="Edge_26A">208dp</dimen><dimen name="Edge_2A">16dp</dimen><dimen name="Edge_2_5_A">20dp</dimen><dimen name="Edge_30A">240dp</dimen><dimen name="Edge_3A">24dp</dimen><dimen name="Edge_3_5_A">28dp</dimen><dimen name="Edge_44A">352dp</dimen><dimen name="Edge_4A">32dp</dimen><dimen name="Edge_4_5_A">36dp</dimen><dimen name="Edge_50A">400dp</dimen><dimen name="Edge_5A">40dp</dimen><dimen name="Edge_5_5_A">44dp</dimen><dimen name="Edge_6A">48dp</dimen><dimen name="Edge_6_5_A">52dp</dimen><dimen name="Edge_7A">56dp</dimen><dimen name="Edge_7_5_A">60dp</dimen><dimen name="Edge_8A">64dp</dimen><dimen name="Edge_9A">72dp</dimen><dimen name="Edge_A">8dp</dimen><dimen name="FootnoteextSize">12dp</dimen><dimen name="GroupTitleTextSize">15dp</dimen><dimen name="HeadingTextSize">26dp</dimen><dimen name="HeadlineTextSize">22dp</dimen><dimen name="HintTextSize">14dp</dimen><dimen name="HugeTextSize">22dp</dimen><dimen name="HugerTextSize">26dp</dimen><dimen name="HugersTextSize">28dp</dimen><dimen name="HugerssTextSize">30dp</dimen><dimen name="KeyStepLoggerStateIconDescSize">17dp</dimen><dimen name="KeyStepLoggerStateIconSize">21dp</dimen><dimen name="LagerTextSize">18dp</dimen><dimen name="LargeBtnPadding">@dimen/Edge_3A</dimen><dimen name="LargeBtnTextSize">18dp</dimen><dimen name="LargePadding">16dp</dimen><dimen name="LargerPadding">24dp</dimen><dimen name="LargestPadding">32dp</dimen><dimen name="LargestTextSize">30dp</dimen><dimen name="ListIconWidth">36dp</dimen><dimen name="ListItemHeight">@dimen/Edge_7A</dimen><dimen name="ListPadding">20dp</dimen><dimen name="LittlePadding">6dp</dimen><dimen name="LoadingHeight">6dp</dimen><dimen name="LoadingLayoutWidth">42dp</dimen><dimen name="MainTabIconSize">@dimen/Edge_3A</dimen><dimen name="MiddleAvartarSize">@dimen/Edge_6A</dimen><dimen name="MiddleBtnHeight">@dimen/Edge_5A</dimen><dimen name="MiddleBtnTextSize">17dp</dimen><dimen name="MiddleBtnWidth">@dimen/Edge_23A</dimen><dimen name="MiddlePadding">10dp</dimen><dimen name="MinDialogHeight">93dp</dimen><dimen name="MinDialogWidth">320dp</dimen><dimen name="MinMenuWidth">200dp</dimen><dimen name="MiniAvatarSize">32dp</dimen><dimen name="NoPadding">0dp</dimen><dimen name="NormalButtonHeight">48dp</dimen><dimen name="NormalCardAvatarWidth">50dp</dimen><dimen name="NormalPadding">12dp</dimen><dimen name="NormalTextSize">@dimen/BodyTextSize</dimen><dimen name="NormalTiteSzie">@dimen/BodyTextSize</dimen><dimen name="OneDPPadding">1dp</dimen><dimen name="OnePXPadding">1px</dimen><dimen name="PlusMenuWidth">180dp</dimen><dimen name="PopPadding">40dp</dimen><dimen name="SettingCatalogPadding">20dp</dimen><dimen name="SmallActionbarHeight">28dp</dimen><dimen name="SmallAvatarSize">40dp</dimen><dimen name="SmallBtnPadding">@dimen/Edge_1_5_A</dimen><dimen name="SmallBtnTextSize">16dp</dimen><dimen name="SmallBtnWidth">60dp</dimen><dimen name="SmallButtonHeight">@dimen/Edge_4A</dimen><dimen name="SmallListHeight">@dimen/DefaultListItemHeight</dimen><dimen name="SmallPadding">8dp</dimen><dimen name="SmallTextSize">14dp</dimen><dimen name="SmallTiteSzie">12dp</dimen><dimen name="SmallerPadding">3dp</dimen><dimen name="SmallerTextSize">13dp</dimen><dimen name="SmallestPadding">2dp</dimen><dimen name="SmallestTextSize">12dp</dimen><dimen name="SuperTextSize">20dp</dimen><dimen name="SwitchBtnHeight">24dp</dimen><dimen name="SwitchBtnRadiusIn">10dp</dimen><dimen name="SwitchBtnRadiusOut">12dp</dimen><dimen name="SwitchBtnWidth">45dp</dimen><dimen name="ZeroDPPadding">0dp</dimen><dimen name="abc_action_bar_progress_bar_size">0dp</dimen><dimen name="album_chooser_height">32dp</dimen><dimen name="album_chooser_img_margin_start">6dp</dimen><dimen name="album_chooser_txt_height">25dp</dimen><dimen name="album_chooser_txt_margin_start">12dp</dimen><dimen name="album_chooser_txt_size">17dp</dimen><dimen name="album_smart_gallery_entrance_size">24dp</dimen><dimen name="app_brand_action_sheet_header_height">56dp</dimen><dimen name="app_brand_action_sheet_header_text_size">16dp</dimen><dimen name="app_brand_actionbar_back_arrow_height">24dp</dimen><dimen name="app_brand_actionbar_back_arrow_width">12dp</dimen><dimen name="app_brand_actionbar_capsule_view_right_margin_default">9dp</dimen><dimen name="app_brand_actionbar_capsule_view_right_margin_wxa">@dimen/app_brand_actionbar_capsule_view_right_margin_default</dimen><dimen name="app_brand_actionbar_height">@dimen/DefaultActionbarHeightPort</dimen><dimen name="app_brand_actionbar_height_single_page_mode_security">64dp</dimen><dimen name="app_brand_actionbar_home_nav_area_h_w">32dp</dimen><dimen name="app_brand_actionbar_home_nav_area_margin_left">12dp</dimen><dimen name="app_brand_actionbar_home_nav_area_margin_right">8dp</dimen><dimen name="app_brand_actionbar_home_nav_btn_h_w">32dp</dimen><dimen name="app_brand_actionbar_left_margin">@dimen/LargePadding</dimen><dimen name="app_brand_actionbar_right_custom_btn_image_h_w">24dp</dimen><dimen name="app_brand_actionbar_right_margin">@dimen/LargePadding</dimen><dimen name="app_brand_auth_auto_fill_data_know_list_item_bottom_margin">10dp</dimen><dimen name="app_brand_default_capsule_actionbarcornersize">1000dp</dimen><dimen name="app_brand_default_capsule_actionbardividerheight">19dp</dimen><dimen name="app_brand_default_capsule_actionbarheight">32dp</dimen><dimen name="app_brand_default_capsule_bar_initial_width">96dp</dimen><dimen name="app_brand_desktop_half_view_item_width">64dp</dimen><dimen name="app_brand_desktop_icon_size">48dp</dimen><dimen name="app_brand_error_page_top_margin">96dp</dimen><dimen name="app_brand_launcher_recents_unread_red_dot_radius">9dp</dimen><dimen name="app_brand_loading_circleWidth">0.5dp</dimen><dimen name="app_brand_loading_dotWidth">1dp</dimen><dimen name="app_brand_loading_progressWidth">3dp</dimen><dimen name="app_brand_recent_view_height">150dp</dimen><dimen name="app_brand_recent_view_padding_left">3dp</dimen><dimen name="app_brand_recent_view_padding_top">40dp</dimen><dimen name="app_brand_tabbar_item_badge_default_margin_start">-10dp</dimen><dimen name="app_brand_tabbar_item_reddot_default_margin_start">-3dp</dimen><dimen name="auth_state_icon_size">12dp</dimen><dimen name="authorize_bottom_dialog_bottom_margin_bottom_landscape">28dp</dimen><dimen name="authorize_bottom_dialog_bottom_margin_bottom_portrait">52dp</dimen><dimen name="authorize_bottom_dialog_bottom_margin_top">40dp</dimen><dimen name="authorize_bottom_dialog_width_landscape">375dp</dimen><dimen name="authorize_dialog_select_list_item_height">64dp</dimen><dimen name="big_horizontal_progress_height">8dp</dimen><dimen name="bottomsheet_dividing_line_height">0.5dp</dimen><dimen name="bottomsheet_grid_icon_width">32dp</dimen><dimen name="bottomsheet_grid_item_height">82dp</dimen><dimen name="bottomsheet_grid_text_size">10dp</dimen><dimen name="bottomsheet_list_checkbox_item_height">64dp</dimen><dimen name="bottomsheet_list_icon_padding">24dp</dimen><dimen name="bottomsheet_list_icon_width">24dp</dimen><dimen name="bottomsheet_list_item_height">@dimen/Edge_7A</dimen><dimen name="bottomsheet_list_text_desc_size">@dimen/FootnoteextSize</dimen><dimen name="bottomsheet_list_text_size">17dp</dimen><dimen name="bottomsheet_title_default_height">132dp</dimen><dimen name="chattingBubblepadding">17dp</dimen><dimen name="chatting_custom_huge_item_width">271dp</dimen><dimen name="chatting_custom_item_width">236dp</dimen><dimen name="chatting_custom_super_item_width">256dp</dimen><dimen name="chatting_huge_item_width">282dp</dimen><dimen name="chatting_huger_item_width">282dp</dimen><dimen name="chatting_large_item_width">273dp</dimen><dimen name="chatting_loaction_item_height">145dp</dimen><dimen name="chatting_loaction_item_width">240dp</dimen><dimen name="chatting_music_item_height">90dp</dimen><dimen name="chatting_music_item_width">250dp</dimen><dimen name="chatting_normal_item_width">280dp</dimen><dimen name="chatting_small_item_width">277dp</dimen><dimen name="chatting_super_item_width">280dp</dimen><dimen name="collapse_arrow_height">24dp</dimen><dimen name="collapse_arrow_width">47dp</dimen><dimen name="dividingHeight">24dp</dimen><dimen name="edgePadding">11dp</dimen><dimen name="grid_item_left_right_padding">12dp</dimen><dimen name="grid_item_top_bottom_padding">@dimen/Edge_3A</dimen><dimen name="horizontalPadding">4dp</dimen><dimen name="login_auth_button_padding_top">22dp</dimen><dimen name="login_auth_item_padding_top">14dp</dimen><dimen name="login_desc_list_height">182dp</dimen><dimen name="login_scope_item_width">232dp</dimen><dimen name="menuLeftPadding">16dp</dimen><dimen name="menuRightPadding">28dp</dimen><dimen name="minMenuWidth">100dp</dimen><dimen name="msgIconWidth">40dp</dimen><dimen name="picker_container_height_landscape">414dp</dimen><dimen name="picker_item_height">24dp</dimen><dimen name="picker_max_height">184dp</dimen><dimen name="picker_toolbar_height_land_space">72dp</dimen><dimen name="picker_toolbar_height_portrait">112dp</dimen><dimen name="pickerview_min_textsize">10sp</dimen><dimen name="pickerview_textsize">17sp</dimen><dimen name="pickerview_topbar_btn_textsize">17sp</dimen><dimen name="pickerview_topbar_height">44dp</dimen><dimen name="pickerview_topbar_padding">20dp</dimen><dimen name="pickerview_topbar_title_textsize">17sp</dimen><dimen name="progress_cancel_btn_padding">3dp</dimen><dimen name="qbar_activity_horizontal_margin">16dp</dimen><dimen name="qbar_activity_vertical_margin">16dp</dimen><dimen name="qbar_scan_rect_height">400dp</dimen><dimen name="qbar_scan_rect_width">400dp</dimen><dimen name="qrcodeSize">@dimen/Edge_25A</dimen><dimen name="qrcode_login_qrimage_corner_radius">2.67dp</dimen><dimen name="scan_code_rect_height">244dp</dimen><dimen name="scan_code_rect_width">244dp</dimen><dimen name="scan_scroll_tab_layout_height">72dp</dimen><dimen name="scan_success_mark_dot_size_big">64dp</dimen><dimen name="small_horizontal_progress_height">4dp</dimen><dimen name="small_icon_h_w">27dp</dimen><dimen name="tipsBarHeight">48dp</dimen><dimen name="tipsBarIconWidth">24dp</dimen><dimen name="tipsBarTextSize">14dp</dimen><dimen name="topTabbarHeight">40dp</dimen><dimen name="unReadCountTextSize">13dp</dimen><dimen name="unReadNewTextSize">11dp</dimen><dimen name="verify_code_layout_height">48dp</dimen><dimen name="wechat_abc_action_bar_default_height">@dimen/DefaultActionbarHeightPort</dimen><dimen name="wmpf_dialog_corners_radius">12dp</dimen><item format="float" name="wmpf_qrlogin_appname_vertical_percent_value" type="dimen">0.0261</item><item format="float" name="wmpf_qrlogin_background_image_vertical_percent_value" type="dimen">0.69</item><item format="float" name="wmpf_qrlogin_body_vertical_percent_value" type="dimen">0.74</item><dimen name="wmpf_qrlogin_image_frame_max_width">225dp</dimen><item format="float" name="wmpf_qrlogin_image_frame_vertical_percent_value" type="dimen">0.42</item><item format="float" name="wmpf_qrlogin_wechat_icon_vertical_percent_value" type="dimen">0.0341</item><item format="float" name="wmpf_setting_body_vertical_percent_value" type="dimen">0.74</item><dimen name="wmpf_setting_dialog_preference_summary_text_size">15dp</dimen><dimen name="wmpf_splash_brand_icon_bottom_margin_game">56dp</dimen><dimen name="wmpf_splash_brand_icon_bottom_margin_wxa">24dp</dimen><fraction name="wmpf_qrlogin_appname_vertical_percent">@dimen/wmpf_qrlogin_appname_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_background_image_vertical_percent">@dimen/wmpf_qrlogin_background_image_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_body_vertical_percent">@dimen/wmpf_qrlogin_body_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_image_frame_vertical_percent">@dimen/wmpf_qrlogin_image_frame_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_wechat_icon_vertical_percent">@dimen/wmpf_qrlogin_wechat_icon_vertical_percent_value</fraction><fraction name="wmpf_setting_body_vertical_percent">@dimen/wmpf_setting_body_vertical_percent_value</fraction><item name="app_brand_action_bar" type="id"/><item name="app_brand_action_bar_container" type="id"/><item name="app_brand_debug_view" type="id"/><item name="app_brand_keyboard_input_view_tag" type="id"/><item name="app_brand_keyboard_linear_layout" type="id"/><item name="app_brand_keyboard_number" type="id"/><item name="app_brand_keyboard_security" type="id"/><item name="app_brand_keyboard_smiley" type="id"/><item name="app_brand_map_view_controller" type="id"/><item name="app_brand_multi_options_picker_view_index_tag" type="id"/><item name="app_brand_multi_page_tabbar" type="id"/><item name="app_brand_page_area" type="id"/><item name="app_brand_page_attached_animator" type="id"/><item name="app_brand_page_content" type="id"/><item name="app_brand_page_input_container" type="id"/><item name="app_brand_page_view_footer" type="id"/><item name="app_brand_page_view_share_screenshot_cover" type="id"/><item name="app_brand_pageview_html_webview" type="id"/><item name="app_brand_picker_panel" type="id"/><item name="app_brand_runtime_root_child_index_tag" type="id"/><item name="app_brand_tab_bar_item_badge" type="id"/><item name="app_brand_tab_bar_item_container" type="id"/><item name="app_brand_tab_bar_item_icon" type="id"/><item name="app_brand_tab_bar_item_icon_text" type="id"/><item name="app_brand_tab_bar_item_indicator" type="id"/><item name="app_brand_tab_bar_item_red_dot" type="id"/><item name="app_brand_tab_bar_item_text" type="id"/><item name="app_brand_toast_view_tag" type="id"/><item name="app_brand_ui_loading_splash_action_bar" type="id"/><item name="app_brand_ui_root" type="id"/><item name="appbrand_view_motion_compat_inverse_matrix_held_by_view_tag" type="id"/><item name="auto_focus" type="id"/><item name="decode" type="id"/><item name="decode_failed" type="id"/><item name="decode_file" type="id"/><item name="decode_file_failed" type="id"/><item name="decode_succeeded" type="id"/><item name="encode_failed" type="id"/><item name="encode_succeeded" type="id"/><item name="launch_product_query" type="id"/><item name="quit" type="id"/><item name="restart_preview" type="id"/><item name="return_scan_result" type="id"/><item name="search_book_contents_failed" type="id"/><item name="search_book_contents_succeeded" type="id"/><item name="text_view_callback" type="id"/><item name="touch_loc" type="id"/><item name="weui_at_end_callback" type="id"/><item name="weui_at_start_callback" type="id"/><integer name="TDI_TRANSFER_REQ_SCENE">3</integer><integer name="animation_default_duration">300</integer><string name="actionbar_back">返回</string><string name="actionbar_more">更多</string><string name="album_chooser_txt">图片和视频</string><string name="app_bottom_sheet_header_title_wechat_login_hint">微信帐号登录</string><string name="app_bottom_sheet_header_title_wechat_logout_hint">退出登录</string><string name="app_bottom_sheet_item_logout_alert_logout_confirm">退出</string><string name="app_brand_accessibility_camera_normal_mode">相机摄像模式</string><string name="app_brand_accessibility_camera_scan_mode">相机扫码模式</string><string name="app_brand_accessibility_canvas_view">绘图区域</string><string name="app_brand_accessibility_close_button">关闭</string><string name="app_brand_accessibility_live_player_mode_live">直播播放器组件</string><string name="app_brand_accessibility_live_player_mode_rtc">视频通话播放器组件</string><string name="app_brand_accessibility_live_pusher_view">直播推流组件</string><string name="app_brand_accessibility_option_button">更多</string><string name="app_brand_accessibility_video_view">视频播放器</string><string name="app_brand_action_plugin_splash_loading">加载中 ...</string><string name="app_brand_ad_title">封面广告</string><string name="app_brand_add_collection_blocked">该小程序涉及恶意营销,无法添加。</string><string name="app_brand_add_collection_over_limit">最多可添加%d个我的小程序</string><string name="app_brand_app_debug_type_previewing">体验版</string><string name="app_brand_app_debug_type_testing">开发版</string><string name="app_brand_auth_close_auth">关闭授权</string><string name="app_brand_auth_close_tips">关闭授权后可能会影响使用小程序的部分功能,请确认</string><string name="app_brand_auth_info_none">%s未使用你的任何信息</string><string name="app_brand_auth_info_used">允许\"%s\"使用</string><string name="app_brand_auth_user_auto_fill_data_dialog_know_detail">了解详情</string><string name="app_brand_auth_user_auto_fill_data_dialog_no">不允许</string><string name="app_brand_auth_user_auto_fill_data_dialog_title">是否使用你保存的信息</string><string name="app_brand_auth_user_auto_fill_data_dialog_title_after_write">是否保存填写的信息</string><string name="app_brand_auth_user_auto_fill_data_dialog_yes">允许</string><string name="app_brand_auth_user_auto_fill_data_url">https://${brand.qbrand.com}/cgi-bin/readtemplate?t=weixin_agreement&amp;s=quick_fill&amp;lang=</string><string name="app_brand_authorize_settings">设置</string><string name="app_brand_authorize_simple_desc_none">不允许</string><string name="app_brand_choose_media_memory_check_message">内存不足,可能影响后续操作,建议关闭空闲的后台程序。</string><string name="app_brand_choose_media_video_compressing">压缩中,请稍候...</string><string name="app_brand_choose_media_video_processing">处理中,请稍候...</string><string name="app_brand_collection_add_failed">添加失败</string><string name="app_brand_collection_list_blank_page_tip">还未添加我的小程序\n可在小程序右上角菜单里添加</string><string name="app_brand_collection_remove_failed">删除失败</string><string name="app_brand_copy_path_toast">已复制</string><string name="app_brand_debug_disabled_toast">调试模式已禁用,请重启生效</string><string name="app_brand_debug_enabled_toast">调试模式已启用,请重启生效</string><string name="app_brand_debug_v8_disabled_toast">V8调试已禁用,重启生效中...</string><string name="app_brand_debug_v8_enabled_toast">V8调试已启用,重启生效中...</string><string name="app_brand_demo_pkg_cgi_fail">网络请求失败,无法校验体验版小程序</string><string name="app_brand_demo_pkg_cgi_timeout">网络请求超时,无法校验体验版小程序</string><string name="app_brand_demo_pkg_has_been_deleted">小程序体验版不存在,无法体验</string><string name="app_brand_demo_pkg_user_not_in_white_list">无体验权限,请联系小程序管理员</string><string name="app_brand_desktop_delete_normal_text">删除</string><string name="app_brand_desktop_search_edit_text_hint">搜索小程序</string><string name="app_brand_desktop_title">小程序</string><string name="app_brand_dev_tools">开发调试</string><string name="app_brand_disable_debug">关闭调试</string><string name="app_brand_disable_v8_debug">关闭V8调试</string><string name="app_brand_enable_debug">开发调试</string><string name="app_brand_enable_v8_debug">打开V8调试</string><string name="app_brand_get_phone_number_bind_success">已保存</string><string name="app_brand_get_phone_number_expose_desc_default">你授权后,小程序开发者将获得你的${BRAND}绑定手机信息,为你提供相关服务。如发现该小程序不恰当收集你的信息,可以向平台举报,</string><string name="app_brand_get_phone_number_expose_desc_end">投诉该小程序</string><string name="app_brand_get_phone_number_expose_ok_hint">知道了</string><string name="app_brand_get_phone_number_expose_title">${BRAND}手机号授权功能说明</string><string name="app_brand_get_phone_number_has_phone_do_login">确认授权</string><string name="app_brand_get_phone_number_has_phone_title">${BRAND}手机号授权</string><string name="app_brand_get_phone_number_no_bind_phone_msg">${BRAND_account}绑定手机号后才可使用手机号快速填写功能</string><string name="app_brand_get_phone_number_no_bind_phone_title">${BRAND_account}还没有绑定手机号</string><string name="app_brand_get_phone_number_not_receive_verify_code">收不到验证码,</string><string name="app_brand_get_phone_number_ok">确认</string><string name="app_brand_get_phone_number_repeat_send_after_second">%s秒可重发</string><string name="app_brand_get_phone_number_resend_verify_code">重新发送</string><string name="app_brand_get_phone_number_send_verify_code_fail">发送失败,请稍后再试</string><string name="app_brand_get_phone_number_send_verify_code_frequent">操作太频繁,请稍后再试</string><string name="app_brand_get_phone_number_to_bind_phone">绑定手机号</string><string name="app_brand_get_phone_number_verify_code_error">验证码输入不正确,请重新输入</string><string name="app_brand_get_phone_number_verify_code_error_empty">验证码不能为空</string><string name="app_brand_get_phone_number_verify_code_error_format">验证码长度过短</string><string name="app_brand_get_phone_number_verify_code_fail">验证失败,请稍后再试</string><string formatted="false" name="app_brand_get_phone_number_verify_mobile">已发送到手机号:%s</string><string name="app_brand_get_phone_number_verify_sms_confirm_phone">确认手机号码</string><string name="app_brand_get_phone_number_verify_sms_msg">我们将发送验证码短信到下面的号码:\n</string><string name="app_brand_get_phone_number_verify_sms_title">请填写手机短信验证码</string><string name="app_brand_jsapi_mock_user_auth_allow_wording">允许</string><string name="app_brand_jsapi_mock_user_auth_apply_wording">申请</string><string name="app_brand_jsapi_mock_user_auth_camera_record_tip">使用你的摄像头</string><string name="app_brand_jsapi_mock_user_auth_deny_wording">拒绝</string><string name="app_brand_jsapi_mock_user_auth_location_tip">获取你的位置信息</string><string name="app_brand_jsapi_mock_user_auth_voice_record_tip">使用你的麦克风</string><string name="app_brand_jsapi_open_document_no_available_3rd_apps">未找到可以打开该类型文档的应用</string><string name="app_brand_jsapi_update_app_dialog_cancel_for_debug">调试不升级</string><string name="app_brand_jsapi_update_app_dialog_confirm">知道了</string><string name="app_brand_jsapi_update_app_dialog_confirm_for_debug">调试升级</string><string formatted="false" name="app_brand_jsapi_update_app_need_reboot_wording_for_game">%s小游戏需要重启以使用最新功能</string><string formatted="false" name="app_brand_jsapi_update_app_need_reboot_wording_for_normal">%s小程序需要重启以使用最新功能</string><string name="app_brand_jsapi_update_app_updating">更新中...</string><string name="app_brand_jsapi_user_auth_confirm">允许</string><string name="app_brand_jsapi_user_auth_deny">不允许</string><string name="app_brand_launcher_recents_list_menu_delete">删除</string><string name="app_brand_launching_dev_pkg_expired">开发版小程序已过期,请在开发者工具中重新扫码</string><string name="app_brand_launching_release_version_not_published_yet">小程序尚未发布</string><string name="app_brand_open_debug_app_failed_by_invalid_appid">小程序AppId异常,无法打开开发版小程序</string><string name="app_brand_open_debug_app_failed_by_network">网络请求失败,无法打开发版小程序</string><string name="app_brand_open_debug_app_failed_by_no_dev_code">开发版小程序不存在</string><string name="app_brand_open_debug_app_failed_by_no_login">未登录时无法打开开发版小程序</string><string name="app_brand_open_debug_app_failed_by_no_permission">无开发权限,请联系小程序管理员</string><string name="app_brand_open_debug_app_failed_by_system_error">启动开发版小程序异常</string><string name="app_brand_open_demo_app_failed_by_no_login">未登录时无法打开体验版小程序</string><string name="app_brand_performance_basic">基础</string><string name="app_brand_performance_cpu">CPU</string><string name="app_brand_performance_disable">关闭性能监控面板</string><string name="app_brand_performance_disable_toast">重启小程序后将关闭性能监控面板</string><string name="app_brand_performance_download">下载耗时</string><string name="app_brand_performance_dump_trace">导出 Trace 数据</string><string name="app_brand_performance_dump_trace_fail">导出 Trace 数据失败,请检查 SDCard 是否已插入,并有足够储存空间</string><string name="app_brand_performance_dump_trace_start">正在导出 Trace 数据...</string><string name="app_brand_performance_dump_trace_success">已成功导出 Trace 数据</string><string name="app_brand_performance_enable">打开性能监控面板</string><string name="app_brand_performance_enable_toast">重启小程序后将打开性能监控面板</string><string name="app_brand_performance_first_render">初次渲染耗时</string><string name="app_brand_performance_fps">帧率</string><string name="app_brand_performance_init">启动和切换</string><string name="app_brand_performance_js2render">首屏渲染耗时</string><string name="app_brand_performance_jsinject">js注入耗时</string><string name="app_brand_performance_launching">启动耗时</string><string name="app_brand_performance_memory">内存</string><string name="app_brand_performance_memory_delta">业务内存</string><string name="app_brand_performance_memory_details">内存详情</string><string name="app_brand_performance_memory_native">Native 内存</string><string name="app_brand_performance_other">其它</string><string name="app_brand_performance_re_render">再次渲染耗时</string><string name="app_brand_performance_render">渲染</string><string name="app_brand_performance_storage">数据缓存</string><string name="app_brand_performance_switch">页面切换耗时</string><string name="app_brand_performance_title">性能数据</string><string name="app_brand_performance_to_logic">视图层到逻辑层耗时</string><string name="app_brand_performance_to_logic_data">视图层到逻辑层数据</string><string name="app_brand_performance_to_logic_native">视图层到逻辑层Native耗时</string><string name="app_brand_performance_to_view">逻辑层到视图层耗时</string><string name="app_brand_performance_to_view_data">逻辑层到视图层数据</string><string name="app_brand_performance_to_view_native">逻辑层到视图层Native耗时</string><string name="app_brand_pick_contact_error">你选的手机号码格式错误,请重新选择。</string><string name="app_brand_pick_set_date">设置日期</string><string name="app_brand_pick_set_local">设置地区</string><string name="app_brand_pick_set_time">设置时间</string><string name="app_brand_plugin_splash_loading_plain_text">加载中</string><string formatted="false" name="app_brand_preparing_pkg_fail">下载代码包失败</string><string formatted="false" name="app_brand_preparing_pkg_manifest_null">%s记录不存在,无法运行</string><string name="app_brand_qrcode_result_dev_qrcode_expired">开发版小程序二维码已失效</string><string name="app_brand_read_contact_error">${BRAND}没有读取联系人权限,请到系统设置或手机管理软件中开启该权限。</string><string formatted="false" name="app_brand_recent_view_down_sound_path">sound/app_brand_pull_recent_vew_down_sound.mp3</string><string name="app_brand_remote_debug_collapse">收起</string><string name="app_brand_remote_debug_connect_abnormal">连接断开</string><string name="app_brand_remote_debug_connect_hit_break_point">已连接 断点中</string><string formatted="false" name="app_brand_remote_debug_connect_local_net_fail_confirm">连接局域网 %s 失败,已切换回广域网模式</string><string formatted="false" name="app_brand_remote_debug_connect_local_net_fail_confirm_for_miniapp">连接局域网 %s 失败,请重新编译资源包</string><string name="app_brand_remote_debug_connect_normal">已连接</string><string name="app_brand_remote_debug_expand">展开</string><string formatted="false" name="app_brand_remote_debug_info">待确认 %1$d\n待发送 %2$d\n已接收 %3$d</string><string name="app_brand_remote_debug_quit">结束</string><string name="app_brand_remote_debug_quit_confirm">确认结束调试?</string><string name="app_brand_remote_debug_server_abnormal">服务器忙</string><string name="app_brand_remote_debug_server_normal">服务器正常</string><string name="app_brand_scan_qrcode_parameter_error">二维码错误</string><string name="app_brand_short_link_launch_alert_allow">允许</string><string name="app_brand_short_link_launch_alert_cancel">取消</string><string name="app_brand_short_link_launch_alert_mgs">即将打开\"%s\"小程序</string><string name="app_brand_short_link_launch_alert_nocontent_mgs">即将打开小程序</string><string name="app_brand_show_debug_info">显示调试信息</string><string name="app_brand_supplement_info">补充说明</string><string name="app_brand_usage_add_collection">添加到我的小程序</string><string name="app_brand_usage_add_collection_for_menu_item">添加到\n我的小程序</string><string name="app_brand_usage_modify_collection_added">已添加</string><string name="app_brand_usage_modify_collection_removed">已移除</string><string name="app_brand_usage_remove_collection">从我的小程序中移除</string><string name="app_brand_usage_remove_collection_for_menu_item">从我的小程\n序中移除</string><string name="app_empty_string"/><string name="app_field_mmsight">拍摄</string><string name="app_field_select_new_pic">从相册选择</string><string name="app_i_known">知道了</string><string name="app_tip">提示</string><string name="appbrand_auth_user_auto_fill_accept">允许</string><string name="appbrand_auth_user_auto_fill_reject">拒绝</string><string name="appbrand_auth_user_auto_fill_title">快速填写授权</string><string name="appbrand_authorize_item_decs_personal_information">${BRAND}个人信息</string><string name="appbrand_authorize_item_delete">删除</string><string name="appbrand_camera_permission_authorize_desc">将会上传你摄录的照片及视频</string><string name="appbrand_commlib_updated_reload_prompt_btn_confirmed" translatable="false">@string/app_i_known</string><string name="appbrand_commlib_updated_reload_prompt_failed_tips">部分资源更新失败,无法打开小程序。</string><string name="appbrand_commlib_updated_reload_prompt_succeed_tips">部分资源已更新,需要重启以使用最新功能</string><string name="appbrand_data_transfer_tip">数据下载中,请稍候...</string><string name="appbrand_menu_back_to_home">回到首页</string><string name="appbrand_menu_back_to_home_disable">当前为首页</string><string name="appbrand_menu_profile_title">小程序资料</string><string name="appbrand_mobile_input_send_sms_timer_title">%d秒后重试</string><string name="appbrand_navigate_back_confirm_dialog_leave_btn">确认</string><string name="appbrand_navigate_back_confirm_dialog_stay_btn">取消</string><string name="appbrand_permission_authorize_explain_title">第三方用户信息授权说明</string><string name="appbrand_phone_number_add_for_use">保存此号码供以后授权使用</string><string name="appbrand_phone_number_add_phone_number">添加手机号码</string><string name="appbrand_phone_number_add_phone_number_tips">只可添加3个号码</string><string name="appbrand_phone_number_apply_for_access">申请使用</string><string name="appbrand_phone_number_cancel">拒绝</string><string name="appbrand_phone_number_exist">输入的手机号与${BRAND}绑定号码重复,请返回检查</string><string name="appbrand_phone_number_expose_desc_default">你授权后,小程序开发者将获得你${BRAND}绑定的或你添加的手机号信息,为你提供相关服务。如发现该小程序不恰当收集你的信息,可以向平台投诉。</string><string name="appbrand_phone_number_expose_slogan_end">投诉</string><string formatted="false" name="appbrand_phone_number_expose_slogan_start">如果发现不恰当收集或使用信息的行为,可以向平台%s</string><string name="appbrand_phone_number_finish_menu">完成</string><string name="appbrand_phone_number_format_err_msg">你输入的不是一个有效的手机号码</string><string name="appbrand_phone_number_format_err_title">手机号码错误</string><string name="appbrand_phone_number_input_hint">输入有效手机号</string><string name="appbrand_phone_number_input_layout_text">获取验证码</string><string name="appbrand_phone_number_input_title">手机号码</string><string name="appbrand_phone_number_loading">加载中</string><string name="appbrand_phone_number_manager_menu">管理</string><string name="appbrand_phone_number_manager_phone_number">管理手机号码</string><string name="appbrand_phone_number_ok">允许</string><string name="appbrand_phone_number_use_other_phone_number">使用其他手机号码</string><string name="appbrand_phone_number_verify_code_hint">输入六位验证码</string><string name="appbrand_phone_number_verify_code_sending">验证码发送中</string><string name="appbrand_phone_number_verify_code_title">验证码</string><string name="appbrand_phone_number_verify_code_verifying">验证中</string><string name="appbrand_phone_number_wechat_phone_number">${BRAND}绑定号码</string><string name="appbrand_phone_number_your_phone_number">你的手机号码</string><string name="appbrand_request_accept">允许</string><string name="appbrand_request_reject">拒绝</string><string name="appbrand_setting_do_delete">正在删除</string><string name="appbrand_setting_network_fail">设置失败,请检查你的网络设置</string><string name="appbrand_setting_usernifo_authrize_desc">开启后,\"%s\"可获取你的头像、昵称、地区和性别信息。</string><string name="appbrand_setting_usernifo_authrize_list_title">用户信息</string><string name="appbrand_setting_usernifo_authrize_page_switch_title">授权用户信息</string><string name="appbrand_setting_usernifo_authrize_user_info_list_desc">切换用户信息只更改你在“%s”中的微信头像和昵称。</string><string name="appbrand_subscribemsg">消息订阅</string><string name="appbrand_subscribemsg_profile_preference_off">不接收</string><string name="authorize_full_desc_both">使用小程序期间和离开小程序后</string><string name="authorize_full_desc_foreground">仅在使用小程序期间</string><string name="authorize_full_desc_none">不允许</string><string name="authorize_location_scopedsc">位置信息</string><string name="authorize_setting_do_setting">正在设置</string><string name="authorize_simple_desc_both">使用时和离开后</string><string name="authorize_simple_desc_foreground">使用时</string><string name="authorize_simple_desc_none">不允许</string><string name="authorize_tip">提示</string><string formatted="false" name="authorize_usage_desc">小程序说明:%s</string><string name="authorize_wait">请稍等</string><string name="biz_subscribe_msg_close_with_nickname">不允许“%s”发送任何通知</string><string name="biz_subscribe_msg_manager_ui_title">通知</string><string name="biz_subscribe_msg_open_with_nickname">允许“%s”发送以下通知</string><string name="biz_subscribe_msg_recv">接收通知</string><string name="biz_subscribe_msg_show_message_sample">查看消息示例</string><string name="biz_subscribe_msg_voice_template_accept">接收</string><string name="biz_subscribe_msg_voice_template_accept_play_voice">接收并开启语音提醒</string><string name="biz_subscribe_msg_voice_template_no_accept">不接收</string><string name="biz_subscribe_msg_voice_template_open_alert_left_btn_wording">知道了</string><string name="biz_subscribe_msg_voice_template_open_alert_msg">你可以试听提醒音,建议使用手机音量键调节到合适的效果。注意:手机需处于非静音状态。</string><string name="biz_subscribe_msg_voice_template_open_alert_right_btn_wording">试听语音</string><string name="biz_subscribe_msg_voice_template_open_alert_title">已开启语音提醒</string><string name="bottom_sheet_more_share">更多分享</string><string name="bottom_sheet_no_more_share">暂没有更多分享</string><string name="button_cancel">取消</string><string name="button_clear">清空</string><string name="button_ok">确定</string><string name="cropimage_saved">图片已保存至%s 文件夹</string><string name="decode_wait">请稍等</string><string name="delete_appbrand">删除</string><string name="error_open_sdk_transfer_title">打开失败 </string><string name="error_wechat_low_version">微信客户端版本过低</string><string name="error_wechat_not_installed">未安装微信客户端</string><string name="exportfile_image_saved_to_path">图片已保存至 %s 路径</string><string name="exportfile_permission_msg">需要授权存储空间权限,以将图片、视频等文件保存到手机。</string><string name="face_login_btn_wording">确认登录</string><string name="face_login_et_hint">请输入你的手机号码</string><string name="face_login_title">人脸识别登录</string><string name="fat_aar_excluded_app_name">textview</string><string name="full_transluent_theme" translatable="false">fullTransluentTheme</string><string name="host_mp_weixin_qq_com">mp.weixin.qq.com</string><string name="host_res_servicewechat_com">res.servicewechat.com</string><string name="host_servicewechat_com">servicewechat.com</string><string formatted="false" name="html_webview_geo_location_prompt_msg">允许%s访问你当前的地理位置信息?</string><string name="html_webview_geo_location_prompt_title">地理位置授权</string><string name="html_webview_js_oauth_no">否 </string><string name="html_webview_js_oauth_yes">是</string><string name="html_webview_native_oauth_failed">微信登录失败</string><string name="html_webview_native_oauth_waiting">正在登录中...</string><string name="icons_outlined_refresh">重新进入\n小程序</string><string name="item_selected">已选中</string><string name="jump_to_settings">去设置</string><string name="key_step_logger_analyser_detail_title">详情</string><string name="key_step_logger_analyser_list_title">列表</string><string name="key_step_logger_analyser_switch_title">视图切换</string><string name="key_step_logger_date_picker_btn">选择日期</string><string name="key_step_logger_icon_error">I非可选步骤未执行或者错误</string><string name="key_step_logger_icon_error_not_fatal">I非致命步骤执行错误</string><string name="key_step_logger_icon_ok">I执行成功</string><string name="key_step_logger_icon_optional">I可选步骤未执行</string><string name="keyboard_delete">删除</string><string name="loading">加载中...</string><string name="login_accept_button">允许</string><string name="login_auth_non_userinfo">%s申请获得以下权限:</string><string name="login_auth_request_tips">%s申请获取以下权限:</string><string name="login_auth_snsapi_userinfo">%s申请获得:</string><string name="login_reject_button">拒绝</string><string name="luggage_app_brand_done">完成</string><string formatted="false" name="luggage_app_brand_error_guide">该页面不存在,你可以进入%s首页获取更多服务</string><string name="luggage_app_brand_error_page_reason">页面不存在</string><string name="luggage_app_brand_jsapi_getting_location">该小程序正在使用你的位置信息</string><string name="luggage_app_brand_jsapi_recording">该小程序正在使用你的麦克风</string><string name="luggage_app_brand_module_load_tips">加载中</string><string name="luggage_app_cancel">取消</string><string name="luggage_app_ok">确定</string><string name="luggage_app_waiting">请稍候...</string><string name="luggage_confirm_dialog_cancel">取消</string><string name="luggage_confirm_dialog_ok">确定</string><string name="luggage_game_splash_addiction" translatable="false">抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。\n适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。</string><string name="luggage_hce_service_description">微信</string><string name="luggage_jump_to_settings">去设置</string><string name="luggage_keyboard_delete">删除</string><string name="luggage_lbs_btn_cancel">我知道了</string><string name="luggage_lbs_btn_ok">前往设置</string><string name="luggage_lbs_content">无法使用此小程序,前往“权限”-“位置信息”-“精确定位”中打开</string><string name="luggage_lbs_titile">精确定位未开启</string><string name="luggage_not_open_nfc_switch_tips">你未在手机系统设置里打开NFC功能,请在系统设置里打开此功能</string><string name="luggage_not_set_default_nfc_application_tips">你未将${BRAND}设置为你的NFC默认应用,请将${BRAND}设置为默认应用</string><string name="luggage_open_nfc_switch_tips">请在你的手机系统设置里打开NFC功能</string><string name="luggage_phone_contact_add_exist_contact">添加到现有联系人</string><string name="luggage_phone_contact_add_new_contact">创建新联系人</string><string name="luggage_wxa_app_cancel">取消</string><string name="luggage_wxa_app_navigate_back_interuption_dialog_defult_content">离开此页面?</string><string name="luggage_wxa_app_ok">确定</string><string name="menu_copy_done">已复制</string><string name="menu_cut_done">已剪切</string><string name="menu_select">选择</string><string name="miniprogram_actionsheet_copy_link">复制链接</string><string name="miniprogram_actionsheet_exit">退出小程序</string><string name="miniprogram_actionsheet_open_setting">设置</string><string name="miniprogram_actionsheet_reload">重新进入\n小程序</string><string name="miniprogram_actionsheet_share">分享到微信</string><string name="miniprogram_actionsheet_share_disabled">当页面不可分享</string><string name="mmsight_capture_init_error">相机不能使用,请确认微信是否有相机及录音权限。</string><string name="multitask_bar_back_wechat">${BRAND}会话</string><string name="my_app_brand">我的小程序</string><string name="no_music_play">暂无歌曲播放</string><string name="notitle_transluent_theme" translatable="false">NoTitleTransluentTheme</string><string name="open_sdk_ticket_transfer_waiting_for_wechat">正在跳转微信...</string><string name="permission_camera_request_again_msg">在设置-应用-权限中开启相机权限,以正常使用拍照、扫一扫等功能</string><string name="permission_dialog_cancel">取消</string><string name="permission_dialog_ok">确定</string><string name="permission_request_again_msg">开启权限以正常使用该功能</string><string name="permission_request_tips_title">权限申请</string><string name="permission_tips_title">权限申请</string><string name="picker_long_term">长期</string><string name="picker_time_apr">4</string><string name="picker_time_aug">8</string><string name="picker_time_dec">12</string><string name="picker_time_feb">2</string><string name="picker_time_jan">1</string><string name="picker_time_jul">7</string><string name="picker_time_jun">6</string><string name="picker_time_mar">3</string><string name="picker_time_may">5</string><string name="picker_time_nov">11</string><string name="picker_time_oct">10</string><string name="picker_time_sept">9</string><string name="pickerview_cancel">取消</string><string name="pickerview_day">日</string><string name="pickerview_hours">时</string><string name="pickerview_minutes">分</string><string name="pickerview_month">月</string><string name="pickerview_seconds">秒</string><string name="pickerview_submit">确定</string><string name="pickerview_year">年</string><string name="preview_item_test">体验版</string><string name="ps_all_audio">所有音频</string><string name="ps_audio">获取系统录音权限被拒绝</string><string name="ps_audio_empty">你可以使用系统录音录制音频</string><string name="ps_audio_error">音频已损坏</string><string name="ps_camera">获取系统相机权限被拒绝</string><string name="ps_camera_roll">相机胶卷</string><string name="ps_camera_roll_num">%1$s (%2$d)</string><string name="ps_cancel">取消</string><string name="ps_choose_limit_seconds">只能选择 %1$ds 至 %2$ds内的视频</string><string name="ps_choose_max_seconds">最大只能选择 %1$ds 以内的视频</string><string name="ps_choose_min_seconds">不能选择低于 %1$ds 内的视频</string><string name="ps_completed">已完成</string><string name="ps_confirm">确定</string><string name="ps_current_month">这个月</string><string name="ps_current_week">本周</string><string name="ps_data_exception">获取相册数据异常…</string><string name="ps_data_null">这里空空如也…</string><string name="ps_default_original_image">原图</string><string name="ps_done">完 成</string><string name="ps_done_front_num">%1$d/%2$d 完成</string><string name="ps_editor">编辑</string><string name="ps_empty">你可以使用相机拍摄照片或视频</string><string name="ps_empty_audio_title">无音频文件\n</string><string name="ps_empty_title">无视频或照片\n</string><string name="ps_error">图片已损坏</string><string name="ps_gif_tag">动图</string><string name="ps_go_setting">去设置</string><string name="ps_jurisdiction">读取内存卡权限被拒绝</string><string name="ps_know">我知道了</string><string name="ps_long_chart">长图</string><string name="ps_message_audio_max_num">你最多只能选择%1$s个音频</string><string name="ps_message_max_num">你最多只能选择%1$s张照片</string><string name="ps_message_video_max_num">你最多只能选择%1$s个视频</string><string name="ps_min_audio_num">音频最低选择不能少于%1$s个</string><string name="ps_min_img_num">图片最低选择不能少于%1$s张</string><string name="ps_min_video_num">视频最低选择不能少于%1$s个</string><string name="ps_not_crop_data">无可用裁剪数据</string><string name="ps_original_image">原图 (%1$s)</string><string name="ps_pause_audio">暂停</string><string name="ps_photograph">拍照</string><string name="ps_play_audio">播放</string><string name="ps_please">请稍候…</string><string name="ps_please_select">请选择</string><string name="ps_preview">预览</string><string name="ps_preview_image_num">%1$d/%2$d</string><string name="ps_preview_num">预览(%1$d)</string><string name="ps_prompt">提示</string><string name="ps_prompt_audio_content">是否保存音频至手机?</string><string name="ps_prompt_image_content">是否保存图片至手机?</string><string name="ps_prompt_video_content">是否保存视频至手机?</string><string name="ps_quit_audio">退出</string><string name="ps_record_video">录视频</string><string name="ps_rule">不能同时选择图片或视频</string><string name="ps_save_audio_error">音频保存失败</string><string name="ps_save_image_error">图片保存失败</string><string name="ps_save_success">文件保存成功至</string><string name="ps_save_video_error">视频保存失败</string><string name="ps_select">选择</string><string name="ps_select_audio_max_second">选择音频大于%1$d秒</string><string name="ps_select_audio_min_second">选择音频小于%1$d秒</string><string name="ps_select_max_size">选择文件大于%1$s</string><string name="ps_select_min_size">选择文件小于%1$s</string><string name="ps_select_no_support">不支持的选择类型</string><string name="ps_select_video_max_second">选择视频大于%1$d秒</string><string name="ps_select_video_min_second">选择视频小于%1$d秒</string><string name="ps_send">完成</string><string name="ps_send_num">完成(%1$d)</string><string name="ps_stop_audio">停止</string><string name="ps_take_picture">拍摄</string><string name="ps_tape">录音</string><string name="ps_use_camera">正在使用相机</string><string name="ps_use_sound">正在使用录音功能</string><string name="ps_video_error">视频已损坏</string><string name="ps_video_toast">视频不可预览</string><string name="ps_warning">暂无媒体文件!</string><string name="ps_webp_tag">webp</string><string name="push_down_keyboard">收起键盘</string><string name="qbar_tip_only_qrcode">将二维码放入框内,即可自动扫描</string><string name="qbar_tip_only_zbar">将条码放入框内,即可自动扫描</string><string name="qrcode_completed_2">sound/qrcode_completed_2.wav</string><string name="qrcode_transfer_normal_call_tip">请使用微信扫码完成下一步</string><string name="qrcode_transfer_pay_tip">请使用微信扫码支付</string><string name="qrcode_transfer_qr_connect_error">连接错误</string><string name="qrcode_transfer_qr_error">扫描失败</string><string name="qrcode_transfer_qr_scanned">扫描成功</string><string name="qrcode_transfer_share_tip">请使用微信扫码分享</string><string formatted="false" name="qrlogin_appname_format">微信登录%s</string><string name="qrlogin_display_message">使用微信扫描二维码登录\n登录后即可使用该设备上的小程序</string><string name="recent_app_brand">最近使用</string><string name="scan_click_to_resume">轻触屏幕继续扫描</string><string name="scan_entry_qbar">扫码</string><string name="scan_flash_close_hint">轻触关闭</string><string name="scan_flash_open_hint">轻触照亮</string><string name="scan_multi_code_tips">轻触小绿点,打开页面</string><string name="scan_no_code">未发现二维码 / 条码</string><string name="scan_qr_code_tips">扫二维码 / 条码 </string><string name="setting_network_fail">设置失败,请检查你的网络设置</string><string name="subscribe_msg_alert_action_go_to_setting_page">前往设置</string><string name="subscribe_msg_alert_default_content">操作失败,请稍后重试</string><string name="subscribe_msg_common_fail">订阅失败,请稍后重试</string><string name="switch_check_desc">已开启</string><string name="switch_uncheck_desc">已关闭</string><string name="transluent_theme" translatable="false">transluentTheme</string><string name="ui_new">NEW</string><string name="ui_search">搜索</string><string name="video_file_saved">视频已保存至%s</string><string name="video_multispeed">"倍速"</string><string name="wechat_auth">${BRAND}授权</string><string name="wmpf_qrlogin_qrcode_expired_message">请刷新页面重新扫码</string><string name="wmpf_qrlogin_qrcode_expired_title">扫描失败</string><string name="wmpf_qrlogin_refresh_qrcode">刷新</string><string name="wmpf_qrlogin_scanned_tip_messeage">请在微信轻触确认即可登录</string><string name="wmpf_qrlogin_scanned_tip_title">扫描成功</string><string formatted="false" name="wv_allow_camera_and_record_audio_permission">%s 申请使用你的摄像头和麦克风</string><string formatted="false" name="wv_allow_camera_and_record_audio_permission_fail_tips">无法访问摄像头和麦克风,请前往「设置」中打开权限</string><string formatted="false" name="wv_allow_camera_permission">%s 申请使用你的摄像头</string><string formatted="false" name="wv_allow_camera_permission_fail_tips">无法访问摄像头,请前往「设置」中打开权限</string><string formatted="false" name="wv_allow_record_audio_permission">%s 申请使用你的麦克风</string><string formatted="false" name="wv_allow_record_audio_permission_fail_tips">无法访问麦克风,请前往「设置」中打开权限</string><string formatted="false" name="wv_get_location_msg_fail_tips">无法访问位置信息,请前往「设置」中打开权限</string><string name="wxa_brand_hint">小程序</string><string name="wxa_brand_hint_donut">Powered By Donut</string><string name="wxa_brand_hint_game">小游戏</string><string name="wxa_image_preview_menu_cancel">取消</string><string name="wxa_image_preview_menu_save_to_disk">保存图片</string><string name="wxa_menu_enable_debug">开发调试</string><string name="wxa_menu_feedback">反馈与投诉</string><string name="wxa_menu_growth_care">未成年人成长守护</string><string name="wxa_menu_modify_collection_add">添加到微信我的小程序</string><string name="wxa_menu_moment">分享到\n朋友圈</string><string name="wxa_menu_send_app_msg_disable">当前页面不可转发</string><string name="wxa_menu_setting">设置</string><string name="wxa_menu_share_appmsg">发送给\n微信朋友</string><string name="wxa_menu_share_favor">收藏到\n微信</string><string name="wxa_menu_status_lbs">正在定位</string><string name="wxa_menu_status_normal">微信小程序</string><string name="wxa_menu_status_record_screen">正在录屏</string><string name="wxa_menu_status_record_voice">正在录音</string><string name="wxa_profile_button_enter_app">进入小程序</string><string name="wxa_profile_button_enter_wechat">在微信中查看</string><string name="wxa_profile_no_star">暂无评分</string><string name="wxa_profile_service_category">服务类目</string><string name="wxa_profile_star_not_enough">评价人数不足</string><string name="wxa_proflie_register_body">开发团队</string><string formatted="false" name="wxa_score_text">%s分</string><style name="ActionBar.Solid" parent="@style/Widget.AppCompat.ActionBar">
  2794. <item name="height">?attr/actionBarSize</item>
  2795. <item name="background">?attr/app_actionbar_color</item>
  2796. <item name="backgroundStacked">?attr/app_actionbar_color</item>
  2797. <item name="backgroundSplit">?attr/app_actionbar_color</item>
  2798. <item name="android:background">?attr/app_actionbar_color</item>
  2799. <item name="android:backgroundStacked">?attr/app_actionbar_color</item>
  2800. <item name="android:backgroundSplit">?attr/app_actionbar_color</item>
  2801. <item name="titleTextStyle">@style/MMActionBar.TitleTextStyle</item>
  2802. <item name="android:titleTextStyle">@style/MMActionBar.TitleTextStyle</item>
  2803. <item name="subtitleTextStyle">@style/MMActionBar.SubTitleTextStyle</item>
  2804. <item name="android:subtitleTextStyle">@style/MMActionBar.SubTitleTextStyle</item>
  2805. <item name="elevation">1px</item>
  2806. <item name="contentInsetStart">0dp</item>
  2807. <item name="contentInsetEnd">0dp</item>
  2808. <item name="contentInsetLeft">0dp</item>
  2809. <item name="contentInsetRight">0dp</item>
  2810. <item name="android:paddingLeft">0dp</item>
  2811. <item name="android:paddingRight">0dp</item>
  2812. </style><style name="AppBrandPickerPanelTextButton" parent="@style/MMSolidWhiteSmallButton">
  2813. <item name="android:layout_width">wrap_content</item>
  2814. <item name="android:minWidth">@dimen/ConfirmButtonWidth</item>
  2815. <item name="android:background">@drawable/alert_btn_background</item>
  2816. <item name="android:textSize">@dimen/NormalTextSize</item>
  2817. <item name="android:gravity">center</item>
  2818. </style><style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"/><style name="AppTheme.Picker" parent="Theme.AppCompat.Light.NoActionBar">
  2819. <item name="android:textColorPrimary">@color/normal_text_color</item>
  2820. </style><style name="AppTheme.WeUI.Png" parent="Theme.AppCompat.Light.DarkActionBar">
  2821. <item name="radio_selector">@drawable/radio_selector_png</item>
  2822. <item name="checkbox_selector">@drawable/checkbox_btn_png</item>
  2823. <item name="ok_icon">@drawable/ok_icon</item>
  2824. <item name="progress_cancel">@drawable/progress_cancel_png</item>
  2825. <item name="et_clear_selector">@drawable/et_clear_png</item>
  2826. </style><style name="AppbrandKeyBoardDividerLine">
  2827. <item name="android:layout_width">match_parent</item>
  2828. <item name="android:layout_height">1px</item>
  2829. <item name="android:background">@color/FG_3</item>
  2830. </style><style name="AppbrandKeyBoardVerticalDividerLine">
  2831. <item name="android:layout_width">1px</item>
  2832. <item name="android:layout_height">match_parent</item>
  2833. <item name="android:background">@color/FG_3</item>
  2834. </style><style name="AppbrandKeyboardText">
  2835. <item name="android:layout_width">0dp</item>
  2836. <item name="android:layout_height">fill_parent</item>
  2837. <item name="android:layout_weight">1</item>
  2838. <item name="android:textColor">@color/normal_text</item>
  2839. <item name="android:textSize">28dp</item>
  2840. </style><style name="Base.Theme.NoActionBar" parent="Theme.AppCompat.Light.NoActionBar"/><style name="BodyTextStyle">
  2841. <item name="android:layout_width">wrap_content</item>
  2842. <item name="android:layout_height">wrap_content</item>
  2843. <item name="android:textSize">@dimen/BodyTextSize</item>
  2844. <item name="android:textColor">@color/FG_1</item>
  2845. </style><style name="BottomSheetDialog" parent="android:style/Theme.Dialog">
  2846. <item name="android:windowBackground">@android:color/transparent</item>
  2847. <item name="android:windowAnimationStyle">@style/BottomToTopSlowAnimation</item>
  2848. </style><style name="BottomToTopAnimation" parent="@android:style/Animation.Dialog">
  2849. <item name="android:windowEnterAnimation">@anim/in_from_bottom</item>
  2850. <item name="android:windowExitAnimation">@anim/out_to_bottom</item>
  2851. </style><style name="BottomToTopSlowAnimation" parent="@android:style/Animation.Dialog">
  2852. <item name="android:windowEnterAnimation">@anim/in_from_bottom_slow</item>
  2853. <item name="android:windowExitAnimation">@anim/out_to_bottom_slow</item>
  2854. </style><style name="ConfirmDialogEditText" parent="@android:style/Widget.EditText">
  2855. <item name="android:layout_width">fill_parent</item>
  2856. <item name="android:layout_height">wrap_content</item>
  2857. <item name="android:layout_marginTop">@dimen/Edge_2A</item>
  2858. <item name="android:textSize">@dimen/GroupTitleTextSize</item>
  2859. <item name="android:textCursorDrawable">@drawable/green_cursor</item>
  2860. <item name="android:textColor">@color/normal_text_color</item>
  2861. <item name="android:textColorHint">@color/hint_text_color</item>
  2862. <item name="android:background">@drawable/input_gray_bg</item>
  2863. <item name="android:maxLines">2</item>
  2864. <item name="android:minHeight">32dp</item>
  2865. </style><style name="ConfirmDialogSource">
  2866. <item name="android:layout_width">fill_parent</item>
  2867. <item name="android:layout_height">wrap_content</item>
  2868. <item name="android:layout_marginTop">@dimen/BasicPaddingSize</item>
  2869. <item name="android:textColor">@color/dialog_msg_color</item>
  2870. <item name="android:textSize">@dimen/SmallestTextSize</item>
  2871. <item name="android:ellipsize">end</item>
  2872. <item name="android:maxLines">1</item>
  2873. </style><style name="CustomSheetStyle" parent="android:style/Theme.Dialog">
  2874. <item name="android:windowBackground">@android:color/transparent</item>
  2875. <item name="android:windowNoTitle">true</item>
  2876. <item name="android:windowIsFloating">true</item>
  2877. <item name="android:windowContentOverlay">@null</item>
  2878. <item name="android:scrollHorizontally">true</item>
  2879. <item name="android:windowFrame">@null</item>
  2880. <item name="android:windowIsTranslucent">false</item>
  2881. <item name="android:backgroundDimEnabled">true</item>
  2882. </style><style name="DescTextStyle">
  2883. <item name="android:layout_width">wrap_content</item>
  2884. <item name="android:layout_height">wrap_content</item>
  2885. <item name="android:textSize">@dimen/DescTextSize</item>
  2886. <item name="android:lineSpacingMultiplier">1.4</item>
  2887. <item name="android:textColor">@color/BW_0_Alpha_0_3</item>
  2888. </style><style name="DividerLine">
  2889. <item name="android:layout_width">match_parent</item>
  2890. <item name="android:layout_height">@dimen/bottomsheet_dividing_line_height</item>
  2891. <item name="android:background">@color/FG_3</item>
  2892. </style><style name="EmDescTextStyle">
  2893. <item name="android:layout_width">wrap_content</item>
  2894. <item name="android:layout_height">wrap_content</item>
  2895. <item name="android:textSize">@dimen/DescTextSize</item>
  2896. <item name="android:lineSpacingMultiplier">1.4</item>
  2897. <item name="android:textColor">@color/FG_1</item>
  2898. </style><style name="EmGroupTitleTextStyle">
  2899. <item name="android:layout_width">wrap_content</item>
  2900. <item name="android:layout_height">wrap_content</item>
  2901. <item name="android:textSize">@dimen/GroupTitleTextSize</item>
  2902. <item name="android:textStyle">bold</item>
  2903. <item name="android:lineSpacingMultiplier">1.4</item>
  2904. <item name="android:textColor">@color/FG_0</item>
  2905. </style><style name="EmTitleTextStyle">
  2906. <item name="android:layout_width">wrap_content</item>
  2907. <item name="android:layout_height">wrap_content</item>
  2908. <item name="android:textSize">@dimen/BodyTextSize</item>
  2909. <item name="android:textStyle">bold</item>
  2910. <item name="android:lineSpacingMultiplier">1.4</item>
  2911. <item name="android:textColor">@color/FG_0</item>
  2912. </style><style name="FootNoteTextStyle">
  2913. <item name="android:layout_width">wrap_content</item>
  2914. <item name="android:layout_height">wrap_content</item>
  2915. <item name="android:textSize">@dimen/FootnoteextSize</item>
  2916. <item name="android:lineSpacingMultiplier">1.4</item>
  2917. <item name="android:textColor">@color/FG_2</item>
  2918. </style><style name="GreenSmallButton" parent="@style/SmallButton">
  2919. <item name="android:background">@drawable/btn_solid_green</item>
  2920. </style><style name="GroupTitleTextStyle">
  2921. <item name="android:layout_width">wrap_content</item>
  2922. <item name="android:layout_height">wrap_content</item>
  2923. <item name="android:textSize">@dimen/DescTextSize</item>
  2924. <item name="android:lineSpacingMultiplier">1.4</item>
  2925. <item name="android:textColor">@color/FG_1</item>
  2926. </style><style name="HalfBottomDialog" parent="android:style/Theme.Dialog">
  2927. <item name="android:windowBackground">@android:color/transparent</item>
  2928. <item name="android:windowAnimationStyle">@style/BottomToTopSlowAnimation</item>
  2929. <item name="android:windowNoTitle">true</item>
  2930. </style><style name="HeadlineTextStyle">
  2931. <item name="android:layout_width">wrap_content</item>
  2932. <item name="android:layout_height">wrap_content</item>
  2933. <item name="android:textSize">@dimen/HeadlineTextSize</item>
  2934. <item name="android:lineSpacingMultiplier">1.4</item>
  2935. <item name="android:textColor">@color/FG_0</item>
  2936. </style><style name="MMActionBar.SubTitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
  2937. <item name="android:textColor">@color/actionbar_subtitle_color</item>
  2938. <item name="android:textSize">@dimen/FootnoteextSize</item>
  2939. </style><style name="MMActionBar.TitleTextStyle" parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title">
  2940. <item name="android:textColor">@color/actionbar_title_color</item>
  2941. <item name="android:textSize">@dimen/BodyTextSize</item>
  2942. </style><style name="MMBriefText">
  2943. <item name="android:layout_width">fill_parent</item>
  2944. <item name="android:layout_height">wrap_content</item>
  2945. <item name="android:textColor">@color/desc_text_color</item>
  2946. <item name="android:textSize">@dimen/DescTextSize</item>
  2947. </style><style name="MMCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox">
  2948. <item name="android:background">?attr/checkbox_selector</item>
  2949. <item name="android:button">@null</item>
  2950. </style><style name="MMCheckBoxRed" parent="@android:style/Widget.CompoundButton.CheckBox">
  2951. <item name="android:background">@drawable/mm_checkbox_btn_red</item>
  2952. <item name="android:button">@null</item>
  2953. </style><style name="MMEditText">
  2954. <item name="android:layout_height">wrap_content</item>
  2955. <item name="android:layout_width">wrap_content</item>
  2956. <item name="android:textSize">@dimen/NormalTextSize</item>
  2957. <item name="android:minHeight">@dimen/Edge_4A</item>
  2958. <item name="android:paddingTop">@dimen/BasicPaddingSize</item>
  2959. <item name="android:paddingBottom">@dimen/BasicPaddingSize</item>
  2960. <item name="android:paddingRight">@dimen/Edge_2A</item>
  2961. <item name="android:singleLine">true</item>
  2962. <item name="android:background">@drawable/edittext_bg_selector</item>
  2963. <item name="android:gravity">center_vertical</item>
  2964. <item name="android:textColor">@color/FG_0</item>
  2965. <item name="android:textColorHint">@color/FG_2</item>
  2966. <item name="android:textCursorDrawable">@drawable/green_cursor</item>
  2967. </style><style name="MMFontPreferenceLarge" parent="@style/WCTextStyleTitle">
  2968. <item name="android:singleLine">true</item>
  2969. <item name="android:ellipsize">end</item>
  2970. <item name="android:gravity">center_vertical</item>
  2971. </style><style name="MMFontPreferenceSmall" parent="@style/MMPreferenceTextSmall">
  2972. <item name="android:layout_width">wrap_content</item>
  2973. <item name="android:layout_height">wrap_content</item>
  2974. <item name="android:singleLine">true</item>
  2975. <item name="android:ellipsize">end</item>
  2976. <item name="android:gravity">center_vertical</item>
  2977. </style><style name="MMFontPreferenceSummary" parent="MMFontPreferenceSmall">
  2978. <item name="android:textAppearance">@style/MMPreferenceTextSmall</item>
  2979. </style><style name="MMFormInputEditText" parent="@style/MMLineEditText">
  2980. <item name="android:background">@null</item>
  2981. <item name="android:layout_height">fill_parent</item>
  2982. <item name="android:layout_marginLeft">@dimen/LittlePadding</item>
  2983. <item name="android:textColorHint">@color/form_hint_text_color</item>
  2984. </style><style name="MMFormInputTitleTextView" parent="@style/MMLineEditText">
  2985. <item name="android:layout_width">@dimen/Edge_12A</item>
  2986. <item name="android:layout_height">fill_parent</item>
  2987. <item name="android:gravity">center_vertical</item>
  2988. <item name="android:textColor">@color/normal_text_color</item>
  2989. <item name="android:textSize">@dimen/NormalTextSize</item>
  2990. <item name="android:background">@null</item>
  2991. </style><style name="MMFormInputView" parent="@style/MMLineEditText">
  2992. <item name="android:layout_width">fill_parent</item>
  2993. <item name="android:layout_height">wrap_content</item>
  2994. <item name="android:minHeight">@dimen/SmallListHeight</item>
  2995. <item name="android:focusable">true</item>
  2996. <item name="android:focusableInTouchMode">true</item>
  2997. <item name="android:importantForAutofill">noExcludeDescendants</item>
  2998. <item name="android:orientation">horizontal</item>
  2999. </style><style name="MMFullLineItem">
  3000. <item name="android:background">@drawable/settings_line</item>
  3001. <item name="android:paddingLeft">@dimen/EdgePadding</item>
  3002. <item name="android:minHeight">@dimen/DefaultListItemHeight</item>
  3003. </style><style name="MMLargeButton">
  3004. <item name="android:layout_width">fill_parent</item>
  3005. <item name="android:layout_height">wrap_content</item>
  3006. <item name="android:minHeight">@dimen/NormalButtonHeight</item>
  3007. <item name="android:gravity">center</item>
  3008. <item name="android:textSize">@dimen/LargeBtnTextSize</item>
  3009. <item name="android:textColor">@color/white_text_color_selector</item>
  3010. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  3011. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  3012. <item name="android:textAllCaps">false</item>
  3013. </style><style name="MMLineEditText" parent="@style/MMEditText">
  3014. <item name="android:layout_width">fill_parent</item>
  3015. </style><style name="MMList">
  3016. <item name="android:dividerHeight">0px</item>
  3017. <item name="android:fadingEdge">none</item>
  3018. <item name="android:scrollbars">none</item>
  3019. <item name="android:listSelector">@color/transparent</item>
  3020. <item name="android:layout_width">fill_parent</item>
  3021. <item name="android:layout_height">fill_parent</item>
  3022. <item name="android:divider">@null</item>
  3023. <item name="android:background">@color/default_background_color</item>
  3024. </style><style name="MMMiddleButton">
  3025. <item name="android:layout_width">wrap_content</item>
  3026. <item name="android:layout_height">wrap_content</item>
  3027. <item name="android:minHeight">@dimen/MiddleBtnHeight</item>
  3028. <item name="android:minWidth">@dimen/MiddleBtnWidth</item>
  3029. <item name="android:gravity">center</item>
  3030. <item name="android:textSize">@dimen/MiddleBtnTextSize</item>
  3031. <item name="android:textColor">@color/white_text_color_selector</item>
  3032. <item name="android:paddingLeft">@dimen/LargeBtnPadding</item>
  3033. <item name="android:paddingRight">@dimen/LargeBtnPadding</item>
  3034. <item name="android:textAllCaps">false</item>
  3035. </style><style name="MMPopupMenuButton">
  3036. <item name="android:layout_width">fill_parent</item>
  3037. <item name="android:layout_height">fill_parent</item>
  3038. <item name="android:gravity">center</item>
  3039. <item name="android:layout_gravity">center</item>
  3040. <item name="android:textColor">@color/FG_0</item>
  3041. <item name="android:textSize">@dimen/NormalTextSize</item>
  3042. <item name="android:ellipsize">end</item>
  3043. <item name="android:singleLine">true</item>
  3044. </style><style name="MMPreferenceTextLarge" parent="@style/WCTextStyleTitle">
  3045. <item name="android:singleLine">true</item>
  3046. <item name="android:ellipsize">end</item>
  3047. </style><style name="MMPreferenceTextSmall">
  3048. <item name="android:textSize">@dimen/BodyTextSize</item>
  3049. <item name="android:textColor">@color/FG_1</item>
  3050. <item name="android:singleLine">true</item>
  3051. <item name="android:ellipsize">end</item>
  3052. </style><style name="MMProgressHorizontal" parent="@android:style/Widget.ProgressBar.Horizontal">
  3053. <item name="android:progressDrawable">@drawable/mm_progress_horizontal</item>
  3054. <item name="android:minHeight">@dimen/big_horizontal_progress_height</item>
  3055. </style><style name="MMProgressHorizontalSmall" parent="@android:style/Widget.ProgressBar.Horizontal">
  3056. <item name="android:progressDrawable">@drawable/mm_progress_horizontal</item>
  3057. <item name="android:minHeight">@dimen/small_horizontal_progress_height</item>
  3058. </style><style name="MMProgressTransparentHorizontal" parent="@android:style/Widget.ProgressBar.Horizontal">
  3059. <item name="android:progressDrawable">@drawable/mm_progress_transparent_horizontal</item>
  3060. <item name="android:minHeight">@dimen/big_horizontal_progress_height</item>
  3061. </style><style name="MMRadioBtn" parent="@android:style/Widget.CompoundButton.RadioButton">
  3062. <item name="android:button">?attr/radio_selector</item>
  3063. <item name="android:textColor">@color/FG_0</item>
  3064. </style><style name="MMRadioBtnRed" parent="@android:style/Widget.CompoundButton.RadioButton">
  3065. <item name="android:button">@drawable/round_selector_red</item>
  3066. </style><style name="MMRatingBar" parent="@style/Widget.AppCompat.RatingBar">
  3067. <item name="android:progressDrawable">@drawable/rating_bar</item>
  3068. <item name="android:minHeight">32dp</item>
  3069. <item name="android:maxHeight">32dp</item>
  3070. <item name="android:thumb">@null</item>
  3071. </style><style name="MMRatingBarIndicator" parent="@style/Widget.AppCompat.RatingBar.Indicator">
  3072. <item name="android:progressDrawable">@drawable/rating_bar_indicator</item>
  3073. <item name="android:minHeight">16dp</item>
  3074. <item name="android:maxHeight">16dp</item>
  3075. <item name="android:thumb">@null</item>
  3076. <item name="android:isIndicator">true</item>
  3077. </style><style name="MMSeekBarStyle" parent="@android:style/Widget.ProgressBar.Horizontal">
  3078. <item name="android:progressDrawable">@drawable/mm_progress_horizontal</item>
  3079. <item name="android:minHeight">@dimen/small_horizontal_progress_height</item>
  3080. <item name="android:maxHeight">@dimen/small_horizontal_progress_height</item>
  3081. <item name="android:thumb">@drawable/seekbar_slider_block</item>
  3082. <item name="android:background">@null</item>
  3083. <item name="android:splitTrack">false</item>
  3084. </style><style name="MMSettingCatalog">
  3085. <item name="android:layout_width">fill_parent</item>
  3086. <item name="android:layout_height">wrap_content</item>
  3087. <item name="android:paddingTop">@dimen/SettingCatalogPadding</item>
  3088. <item name="android:paddingBottom">@dimen/LittlePadding</item>
  3089. <item name="android:orientation">horizontal</item>
  3090. <item name="android:gravity">center_vertical</item>
  3091. <item name="android:textSize">@dimen/HintTextSize</item>
  3092. <item name="android:textColor">@color/hint_text_color</item>
  3093. </style><style name="MMSmallButton">
  3094. <item name="android:layout_width">wrap_content</item>
  3095. <item name="android:layout_height">wrap_content</item>
  3096. <item name="android:minHeight">@dimen/SmallButtonHeight</item>
  3097. <item name="android:minWidth">@dimen/SmallBtnWidth</item>
  3098. <item name="android:gravity">center</item>
  3099. <item name="android:textSize">@dimen/SmallBtnTextSize</item>
  3100. <item name="android:textColor">@color/white_text_color_selector</item>
  3101. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  3102. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  3103. <item name="android:textAllCaps">false</item>
  3104. </style><style name="MMSmallTextSettingCatalog" parent="MMSettingCatalog">
  3105. <item name="android:paddingTop">@dimen/Edge_2A</item>
  3106. </style><style name="MMSolidGoldRedLargeButton" parent="@style/MMLargeButton">
  3107. <item name="android:textColor">@color/white_text_color_selector</item>
  3108. <item name="android:background">@drawable/btn_solid_gold_red</item>
  3109. </style><style name="MMSolidGreenLargeButton" parent="@style/MMLargeButton">
  3110. <item name="android:textColor">@color/color_btn_text_selector</item>
  3111. <item name="android:background">@drawable/btn_solid_green</item>
  3112. </style><style name="MMSolidGreenMiddleButton" parent="@style/MMMiddleButton">
  3113. <item name="android:textColor">@color/color_btn_text_selector</item>
  3114. <item name="android:background">@drawable/btn_solid_green</item>
  3115. </style><style name="MMSolidGreenSmallButton" parent="@style/MMSmallButton">
  3116. <item name="android:textColor">@color/color_btn_text_selector</item>
  3117. <item name="android:background">@drawable/btn_solid_green_small</item>
  3118. </style><style name="MMSolidRedLargeButton" parent="@style/MMLargeButton">
  3119. <item name="android:textColor">@color/color_btn_text_selector</item>
  3120. <item name="android:background">@drawable/btn_solid_red</item>
  3121. </style><style name="MMSolidRedMiddleButton" parent="@style/MMMiddleButton">
  3122. <item name="android:textColor">@color/white_text_color_selector</item>
  3123. <item name="android:background">@drawable/btn_solid_red</item>
  3124. </style><style name="MMSolidRedSmallButton" parent="@style/MMSmallButton">
  3125. <item name="android:textColor">@color/white_text_color_selector</item>
  3126. <item name="android:background">@drawable/btn_solid_red</item>
  3127. </style><style name="MMSolidWhiteLargeButton" parent="@style/MMLargeButton">
  3128. <item name="android:textColor">@color/white_btn_text_selector</item>
  3129. <item name="android:background">@drawable/btn_solid_white</item>
  3130. </style><style name="MMSolidWhiteLargeButtonNew" parent="@style/MMLargeButton">
  3131. <item name="android:textColor">@color/white_btn_text_selector</item>
  3132. <item name="android:background">@drawable/btn_solid_white_new</item>
  3133. </style><style name="MMSolidWhiteMiddleButton" parent="@style/MMMiddleButton">
  3134. <item name="android:textColor">@color/white_btn_text_selector</item>
  3135. <item name="android:background">@drawable/btn_solid_white</item>
  3136. </style><style name="MMSolidWhiteMiddleButtonNew" parent="@style/MMMiddleButton">
  3137. <item name="android:textColor">@color/white_btn_text_selector</item>
  3138. <item name="android:background">@drawable/btn_solid_white_new</item>
  3139. </style><style name="MMSolidWhiteSmallButton" parent="@style/MMSmallButton">
  3140. <item name="android:textColor">@color/white_btn_text_selector</item>
  3141. <item name="android:background">@drawable/btn_solid_white</item>
  3142. </style><style name="MMSolidWhiteSmallButtonNew" parent="@style/MMSmallButton">
  3143. <item name="android:textColor">@color/white_btn_text_selector</item>
  3144. <item name="android:background">@drawable/btn_solid_white_new</item>
  3145. </style><style name="MMTextCheckBox" parent="@android:style/Widget.CompoundButton.CheckBox">
  3146. <item name="android:background">@null</item>
  3147. <item name="android:drawableLeft">?attr/checkbox_selector</item>
  3148. <item name="android:drawablePadding">8dp</item>
  3149. <item name="android:textSize">@dimen/NormalTextSize</item>
  3150. <item name="android:textColor">@color/normal_text_color</item>
  3151. <item name="android:button">@null</item>
  3152. </style><style name="MMlineGreenLargeButton" parent="@style/MMSolidWhiteLargeButton">
  3153. </style><style name="MMlineGreenMiddleButton" parent="@style/MMSolidWhiteMiddleButton">
  3154. </style><style name="MMlineGreenSmallButton" parent="@style/MMSolidWhiteSmallButton">
  3155. </style><style name="MMlineGreyLargeButton" parent="@style/MMSolidWhiteLargeButton">
  3156. </style><style name="MMlineGreyMiddleButton" parent="@style/MMSolidWhiteMiddleButton">
  3157. </style><style name="MMlineGreySmallButton" parent="@style/MMSolidWhiteSmallButton">
  3158. </style><style name="NewTipsStyle">
  3159. <item name="android:layout_height">wrap_content</item>
  3160. <item name="android:layout_width">wrap_content</item>
  3161. <item name="android:textColor">@color/White</item>
  3162. <item name="android:textSize">11dp</item>
  3163. <item name="android:text">@string/ui_new</item>
  3164. <item name="android:gravity">center</item>
  3165. <item name="android:background">@drawable/new_tips_bg</item>
  3166. </style><style name="OperateItem">
  3167. <item name="android:layout_width">wrap_content</item>
  3168. <item name="android:layout_height">wrap_content</item>
  3169. <item name="android:minWidth">40dp</item>
  3170. <item name="android:paddingBottom">9dp</item>
  3171. <item name="android:paddingLeft">12dp</item>
  3172. <item name="android:paddingRight">12dp</item>
  3173. <item name="android:paddingTop">9dp</item>
  3174. <item name="android:gravity">center</item>
  3175. <item name="android:textColor">@color/White</item>
  3176. <item name="android:textSize">@dimen/DescTextSize</item>
  3177. </style><style name="OperateTextView">
  3178. <item name="android:layout_width">wrap_content</item>
  3179. <item name="android:layout_height">wrap_content</item>
  3180. <item name="android:paddingBottom">12dp</item>
  3181. <item name="android:paddingLeft">16dp</item>
  3182. <item name="android:paddingRight">16dp</item>
  3183. <item name="android:paddingTop">12dp</item>
  3184. <item name="android:textColor">@color/black_text_color</item>
  3185. <item name="android:textSize">14sp</item>
  3186. </style><style name="Picture.Theme.AlertDialog" parent="android:Theme.Dialog">
  3187. <item name="android:windowIsFloating">true</item>
  3188. <item name="android:windowIsTranslucent">false</item>
  3189. <item name="android:windowNoTitle">true</item>
  3190. <item name="android:windowFullscreen">false</item>
  3191. <item name="android:windowBackground">@color/ps_color_transparent</item>
  3192. <item name="android:windowAnimationStyle">@null</item>
  3193. <item name="android:backgroundDimEnabled">false</item>
  3194. <item name="android:backgroundDimAmount">0.4</item>
  3195. </style><style name="Picture.Theme.Dialog" parent="@android:style/Theme.Dialog">
  3196. <item name="android:windowFrame">@android:color/transparent</item>
  3197. <item name="android:windowIsFloating">true</item>
  3198. <item name="android:windowIsTranslucent">false</item>
  3199. <item name="android:windowNoTitle">true</item>
  3200. <item name="android:windowContentOverlay">@null</item>
  3201. <item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
  3202. <item name="android:windowSoftInputMode">stateUnspecified|adjustPan</item>
  3203. <item name="android:windowBackground">@android:color/transparent</item>
  3204. </style><style name="Picture.Theme.Dialog.AudioStyle">
  3205. <item name="android:windowEnterAnimation">@anim/ps_anim_enter</item>
  3206. <item name="android:windowExitAnimation">@anim/ps_anim_exit</item>
  3207. </style><style name="Picture.Theme.Translucent" parent="Base.Theme.NoActionBar">
  3208. <item name="android:windowBackground">@color/ps_color_transparent</item>
  3209. <item name="android:windowNoTitle">true</item>
  3210. <item name="android:windowIsTranslucent">true</item>
  3211. </style><style mce_bogus="1" name="PictureThemeDialogFragmentAnim" parent="android:Animation">
  3212. <item name="android:windowEnterAnimation">@anim/ps_anim_up_in</item>
  3213. <item name="android:windowExitAnimation">@anim/ps_anim_down_out</item>
  3214. </style><style name="PictureThemeDialogWindowStyle">
  3215. <item name="android:windowEnterAnimation">@anim/ps_anim_modal_in</item>
  3216. <item name="android:windowExitAnimation">@anim/ps_anim_modal_out</item>
  3217. </style><style name="PictureThemeWindowStyle">
  3218. <item name="android:windowEnterAnimation">@anim/ps_anim_album_show</item>
  3219. <item name="android:windowExitAnimation">@anim/ps_anim_album_dismiss</item>
  3220. </style><style name="PopCenterAnimation" parent="@android:style/Animation.Dialog">
  3221. <item name="android:windowEnterAnimation">@anim/pop_center_in</item>
  3222. <item name="android:windowExitAnimation">@anim/pop_center_out</item>
  3223. </style><style name="PopLeftBottomAnimation" parent="@android:style/Animation.Dialog">
  3224. <item name="android:windowEnterAnimation">@anim/pop_left_bottom_in</item>
  3225. <item name="android:windowExitAnimation">@anim/pop_left_bottom_out</item>
  3226. </style><style name="PopLeftTopAnimation" parent="@android:style/Animation.Dialog">
  3227. <item name="android:windowEnterAnimation">@anim/pop_left_top_in</item>
  3228. <item name="android:windowExitAnimation">@anim/pop_left_top_out</item>
  3229. </style><style name="PopRightBottomAnimation" parent="@android:style/Animation.Dialog">
  3230. <item name="android:windowEnterAnimation">@anim/pop_right_bottom_in</item>
  3231. <item name="android:windowExitAnimation">@anim/pop_right_bottom_out</item>
  3232. </style><style name="PopRightTopAnimation" parent="@android:style/Animation.Dialog">
  3233. <item name="android:windowEnterAnimation">@anim/pop_right_top_in</item>
  3234. <item name="android:windowExitAnimation">@anim/pop_right_top_out</item>
  3235. </style><style name="PopupBgWithoutShadow">
  3236. <item name="android:background">@drawable/popup_bg_without_shadow</item>
  3237. <item name="android:layout_marginLeft">@dimen/Edge_3A</item>
  3238. <item name="android:layout_marginRight">@dimen/Edge_3A</item>
  3239. </style><style name="RightToLeftAnimation" parent="@android:style/Animation.Dialog">
  3240. <item name="android:windowEnterAnimation">@anim/in_from_right</item>
  3241. <item name="android:windowExitAnimation">@anim/out_to_right</item>
  3242. </style><style name="ScanTipsTv">
  3243. <item name="android:gravity">center_horizontal</item>
  3244. <item name="android:paddingLeft">20dp</item>
  3245. <item name="android:paddingRight">20dp</item>
  3246. <item name="android:textSize">14dp</item>
  3247. <item name="android:textColor">#afafaf</item>
  3248. <item name="android:paddingTop">6dp</item>
  3249. <item name="android:layout_width">wrap_content</item>
  3250. <item name="android:layout_height">wrap_content</item>
  3251. </style><style name="SmallButton">
  3252. <item name="android:layout_width">wrap_content</item>
  3253. <item name="android:layout_height">wrap_content</item>
  3254. <item name="android:minHeight">@dimen/SmallButtonHeight</item>
  3255. <item name="android:minWidth">@dimen/SmallBtnWidth</item>
  3256. <item name="android:gravity">center</item>
  3257. <item name="android:textSize">@dimen/DescTextSize</item>
  3258. <item name="android:textColor">@color/White</item>
  3259. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  3260. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  3261. </style><style name="SmallButton_Two">
  3262. <item name="android:layout_width">wrap_content</item>
  3263. <item name="android:layout_height">wrap_content</item>
  3264. <item name="android:minHeight">@dimen/SmallButtonHeight</item>
  3265. <item name="android:minWidth">@dimen/SmallBtnWidth</item>
  3266. <item name="android:gravity">center</item>
  3267. <item name="android:textAppearance">@style/WhiteText</item>
  3268. <item name="android:paddingLeft">@dimen/SmallBtnPadding</item>
  3269. <item name="android:paddingRight">@dimen/SmallBtnPadding</item>
  3270. </style><style name="SnackBar_Button">
  3271. <item name="android:layout_width">wrap_content</item>
  3272. <item name="android:layout_height">wrap_content</item>
  3273. <item name="android:drawablePadding">12dp</item>
  3274. <item name="android:gravity">center</item>
  3275. <item name="android:paddingLeft">24dp</item>
  3276. <item name="android:paddingRight">24dp</item>
  3277. <item name="android:paddingTop">16dp</item>
  3278. <item name="android:paddingBottom">16dp</item>
  3279. <item name="android:textColor">@color/green_text_color</item>
  3280. <item name="android:editable">false</item>
  3281. <item name="android:textSize">14sp</item>
  3282. <item name="android:textAllCaps">true</item>
  3283. <item name="android:layout_gravity">center_vertical</item>
  3284. </style><style name="SnackBar_Container">
  3285. <item name="android:layout_width">fill_parent</item>
  3286. <item name="android:layout_height">wrap_content</item>
  3287. <item name="android:layout_gravity">bottom</item>
  3288. </style><style name="SnackBar_Message">
  3289. <item name="android:layout_width">0dp</item>
  3290. <item name="android:layout_height">wrap_content</item>
  3291. <item name="android:layout_weight">1</item>
  3292. <item name="android:layout_marginLeft">24dp</item>
  3293. <item name="android:layout_marginTop">16dp</item>
  3294. <item name="android:layout_marginBottom">16dp</item>
  3295. <item name="android:textSize">14sp</item>
  3296. <item name="android:layout_gravity">center_vertical</item>
  3297. <item name="android:textColor">#ffffff</item>
  3298. </style><style name="SnackBar_SnackBar">
  3299. <item name="android:layout_width">match_parent</item>
  3300. <item name="android:layout_height">wrap_content</item>
  3301. <item name="android:layout_gravity">bottom</item>
  3302. <item name="android:minHeight">48dp</item>
  3303. <item name="android:maxHeight">80dp</item>
  3304. <item name="android:orientation">horizontal</item>
  3305. <item name="android:background">#323232</item>
  3306. <item name="android:clickable">true</item>
  3307. <item name="android:layout_alignParentBottom">true</item>
  3308. </style><style name="SwipeBackLayout">
  3309. <item name="edge_size">50dip</item>
  3310. <item name="shadow_left">@drawable/shadow_left</item>
  3311. <item name="shadow_right">@drawable/shadow_right</item>
  3312. <item name="shadow_bottom">@drawable/shadow_bottom</item>
  3313. </style><style name="TenpayKeyboardText">
  3314. <item name="android:layout_width">0dp</item>
  3315. <item name="android:layout_height">fill_parent</item>
  3316. <item name="android:layout_weight">1</item>
  3317. <item name="android:textColor">@color/wallet_tenpay_keyboard_text_color</item>
  3318. <item name="android:textSize">28dp</item>
  3319. <item name="android:gravity">center</item>
  3320. </style><style name="TextTextStyle">
  3321. <item name="android:layout_width">wrap_content</item>
  3322. <item name="android:layout_height">wrap_content</item>
  3323. <item name="android:textSize">@dimen/BodyTextSize</item>
  3324. <item name="android:lineSpacingMultiplier">1.6</item>
  3325. <item name="android:textColor">@color/FG_0</item>
  3326. </style><style name="Theme.LuggageApp.Standalone" parent="WeUITheme.LightMode">
  3327. <item name="default_bg_color">#EDEDED</item>
  3328. <item name="FG_0">#E6000000</item>
  3329. <item name="FG_1">#80000000</item>
  3330. <item name="FG_2">#4D000000</item>
  3331. <item name="FG_3">#1A000000</item>
  3332. <item name="BG_0">#EDEDED</item>
  3333. <item name="BG_1">#F7F7F7</item>
  3334. <item name="BG_2">#FFFFFF</item>
  3335. <item name="BG_3">#F7F7F7</item>
  3336. <item name="BG_4">#4C4C4C</item>
  3337. <item name="BG_5">#FFFFFF</item>
  3338. <item name="arrow_color">#B2B2B2</item>
  3339. <item name="Orange">#FA9D3B</item>
  3340. <item name="Yellow">#FFC300</item>
  3341. <item name="LightGreen">#95EC69</item>
  3342. <item name="Indigo">#1485EE</item>
  3343. <item name="Purple">#6467F0</item>
  3344. <item name="Link">#576B95</item>
  3345. <item name="TextGreen">#06AE56</item>
  3346. <item name="conversation_click_color">#EDEDED</item>
  3347. <item name="Alphabet_text_color">#E6000000</item>
  3348. <item name="time_text_color">#33000000</item>
  3349. <item name="list_item_divider">@drawable/list_item_normal</item>
  3350. <item name="list_top_line_selector">@drawable/white_list_top_line_selector</item>
  3351. <item name="item_color_selector">@color/item_color_selector</item>
  3352. <item name="et_clear_selector">@drawable/actionbar_icon_dark_clear</item>
  3353. </style><style name="Theme.LuggageApp.Standalone.WxaSetting"/><style name="Theme.LuggageApp.Standalone.WxaSetting.Activity"/><style name="Theme.LuggageApp.Standalone.WxaSetting.Dialog">
  3354. <item name="android:windowIsTranslucent">true</item>
  3355. <item name="android:windowBackground">@android:color/transparent</item>
  3356. <item name="android:colorBackgroundCacheHint">@null</item>
  3357. <item name="android:windowAnimationStyle">@null</item>
  3358. <item name="android:windowContentOverlay">@null</item>
  3359. <item name="android:windowNoTitle">true</item>
  3360. <item name="windowNoTitle">true</item>
  3361. <item name="android:windowActionBar">false</item>
  3362. <item name="windowActionBar">false</item>
  3363. </style><style name="TitleTextStyle">
  3364. <item name="android:layout_width">wrap_content</item>
  3365. <item name="android:layout_height">wrap_content</item>
  3366. <item name="android:textSize">@dimen/BodyTextSize</item>
  3367. <item name="android:lineSpacingMultiplier">1.4</item>
  3368. <item name="android:textColor">@color/FG_0</item>
  3369. </style><style name="ToyBrickStyle" parent="MMFullLineItem">
  3370. <item name="android:background">@drawable/settings_line</item>
  3371. <item name="android:paddingLeft">@dimen/EdgePadding</item>
  3372. <item name="android:paddingRight">@dimen/EdgePadding</item>
  3373. <item name="android:minHeight">@dimen/SmallListHeight</item>
  3374. <item name="android:layout_width">match_parent</item>
  3375. <item name="android:layout_height">wrap_content</item>
  3376. <item name="android:gravity">left|center_vertical</item>
  3377. </style><style name="ToyBrickSummaryStyle" parent="MMFontPreferenceSmall">
  3378. <item name="android:layout_marginTop">@dimen/SmallPadding</item>
  3379. <item name="android:layout_marginBottom">@dimen/SmallPadding</item>
  3380. </style><style name="ToyBrickTitleStyle">
  3381. <item name="android:textColor">@color/normal_text_color</item>
  3382. <item name="android:singleLine">true</item>
  3383. <item name="android:ellipsize">end</item>
  3384. <item name="android:gravity">center_vertical</item>
  3385. <item name="android:textSize">@dimen/NormalTextSize</item>
  3386. </style><style name="TransDialog" parent="android:style/Theme.Dialog">
  3387. <item name="android:windowBackground">@android:color/transparent</item>
  3388. <item name="android:windowNoTitle">true</item>
  3389. <item name="android:windowIsFloating">true</item>
  3390. <item name="android:windowContentOverlay">@null</item>
  3391. <item name="android:scrollHorizontally">true</item>
  3392. <item name="android:windowFrame">@null</item>
  3393. <item name="android:windowIsTranslucent">false</item>
  3394. <item name="android:backgroundDimEnabled">true</item>
  3395. </style><style name="UnreadCountTipsStyle">
  3396. <item name="android:layout_height">wrap_content</item>
  3397. <item name="android:layout_width">wrap_content</item>
  3398. <item name="android:textColor">@color/White</item>
  3399. <item name="android:textSize">@dimen/unReadCountTextSize</item>
  3400. <item name="android:gravity">center</item>
  3401. <item name="android:background">@drawable/unread_count_shape</item>
  3402. <item name="android:singleLine">true</item>
  3403. </style><style name="UnreadDotStyle">
  3404. <item name="android:layout_height">10dp</item>
  3405. <item name="android:layout_width">10dp</item>
  3406. <item name="android:textSize">@dimen/SmallerTextSize</item>
  3407. <item name="android:gravity">center</item>
  3408. <item name="android:background">@drawable/unread_dot_shape</item>
  3409. </style><style name="VerticalDividerLine">
  3410. <item name="android:layout_width">@dimen/bottomsheet_dividing_line_height</item>
  3411. <item name="android:layout_height">match_parent</item>
  3412. <item name="android:background">@color/FG_3</item>
  3413. </style><style name="WCTextStyleDesc">
  3414. <item name="android:layout_width">wrap_content</item>
  3415. <item name="android:layout_height">wrap_content</item>
  3416. <item name="android:textColor">@color/desc_text_color</item>
  3417. <item name="android:textSize">@dimen/DescTextSize</item>
  3418. </style><style name="WCTextStyleFootnote">
  3419. <item name="android:layout_width">wrap_content</item>
  3420. <item name="android:layout_height">wrap_content</item>
  3421. <item name="android:textColor">@color/hint_text_color</item>
  3422. <item name="android:textSize">@dimen/FootnoteextSize</item>
  3423. </style><style name="WCTextStyleTitle">
  3424. <item name="android:layout_width">wrap_content</item>
  3425. <item name="android:layout_height">wrap_content</item>
  3426. <item name="android:textColor">@color/normal_text_color</item>
  3427. <item name="android:textSize">@dimen/BodyTextSize</item>
  3428. </style><style name="WeUITheme" parent="@style/AppTheme.WeUI.Png">
  3429. <item name="borderlessButtonStyle">?android:borderlessButtonStyle</item>
  3430. <item name="actionBarStyle">@style/ActionBar.Solid</item>
  3431. <item name="android:actionBarStyle">@style/ActionBar.Solid</item>
  3432. <item name="android:editTextBackground">@drawable/edittext_bg_selector</item>
  3433. <item name="android:checkboxStyle">@style/MMCheckBox</item>
  3434. <item name="android:radioButtonStyle">@style/MMRadioBtn</item>
  3435. <item name="android:buttonStyle">@android:style/Widget.Button</item>
  3436. <item name="android:windowBackground">?attr/app_content_bg_color</item>
  3437. <item name="android:textCursorDrawable">@drawable/green_cursor</item>
  3438. <item name="app_theme_color">@color/Red</item>
  3439. <item name="app_actionbar_color">@color/normal_actionbar_color</item>
  3440. <item name="app_content_bg_color">@color/normal_bg_color</item>
  3441. </style><style name="WeUITheme.DarkMode" parent="@style/WeUITheme">
  3442. <item name="et_clear_selector">@raw/actionbar_icon_light_clear</item>
  3443. </style><style name="WeUITheme.LightMode" parent="@style/WeUITheme">
  3444. <item name="et_clear_selector">@raw/actionbar_icon_dark_clear</item>
  3445. </style><style name="WeUITheme.NoTitleTranslucent" parent="@style/WeUITheme">
  3446. <item name="android:windowIsTranslucent">true</item>
  3447. <item name="android:windowBackground">@android:color/transparent</item>
  3448. <item name="android:colorBackgroundCacheHint">@null</item>
  3449. <item name="android:windowAnimationStyle">@null</item>
  3450. <item name="android:windowContentOverlay">@null</item>
  3451. <item name="android:windowNoTitle">true</item>
  3452. <item name="windowNoTitle">true</item>
  3453. <item name="android:windowActionBar">false</item>
  3454. <item name="windowActionBar">false</item>
  3455. </style><style name="WeUITheme_Black" parent="@style/WeUITheme">
  3456. <item name="app_theme_color">@color/BW_0</item>
  3457. </style><style name="WeUITheme_Green" parent="@style/WeUITheme">
  3458. <item name="app_theme_color">@color/wechat_green</item>
  3459. </style><style name="WhiteText">
  3460. <item name="android:textSize">@dimen/DescTextSize</item>
  3461. <item name="android:textColor">@color/White</item>
  3462. </style><style name="Widget.Picker" parent="@android:style/Theme.Holo.Light">
  3463. <item name="android:textSize">@dimen/NormalTextSize</item>
  3464. <item name="android:textColor">@color/black_text_color</item>
  3465. </style><style name="Widget.WMPF" parent="AppTheme"/><style name="Widget.WMPF.QRLogin.Button.Medium" parent="Widget.WMPF.QRLogin.Text">
  3466. <item name="autoSizeTextType">uniform</item>
  3467. <item name="autoSizeMinTextSize">10dp</item>
  3468. <item name="autoSizeMaxTextSize">14dp</item>
  3469. <item name="autoSizeStepGranularity">.5dp</item>
  3470. <item name="android:padding">3dp</item>
  3471. <item name="android:background">@drawable/qrcode_login_alert_button</item>
  3472. </style><style name="Widget.WMPF.QRLogin.Text" parent="Widget.WMPF">
  3473. <item name="android:lineSpacingMultiplier">1</item>
  3474. <item name="android:lineSpacingExtra">0px</item>
  3475. <item name="android:gravity">center</item>
  3476. </style><style name="Widget.WMPF.QRLogin.Text.Large">
  3477. <item name="autoSizeTextType">uniform</item>
  3478. <item name="autoSizeMinTextSize">16dp</item>
  3479. <item name="autoSizeMaxTextSize">22dp</item>
  3480. <item name="autoSizeStepGranularity">.5dp</item>
  3481. </style><style name="Widget.WMPF.QRLogin.Text.Primary">
  3482. <item name="autoSizeTextType">uniform</item>
  3483. <item name="autoSizeMinTextSize">13dp</item>
  3484. <item name="autoSizeMaxTextSize">18dp</item>
  3485. <item name="autoSizeStepGranularity">.5dp</item>
  3486. </style><style name="Widget.WMPF.QRLogin.Text.Secondary">
  3487. <item name="autoSizeTextType">uniform</item>
  3488. <item name="autoSizeMinTextSize">12dp</item>
  3489. <item name="autoSizeMaxTextSize">17dp</item>
  3490. <item name="autoSizeStepGranularity">.5dp</item>
  3491. </style><style name="WxaAppContainerTheme" parent="Theme.LuggageApp.Standalone">
  3492. <item name="android:windowIsTranslucent">false</item>
  3493. <item name="android:windowDisablePreview">true</item>
  3494. <item name="android:windowBackground">@color/transparent</item>
  3495. <item name="android:windowNoTitle">true</item>
  3496. <item name="windowNoTitle">true</item>
  3497. <item name="android:windowActionBar">false</item>
  3498. <item name="windowActionBar">false</item>
  3499. <item name="radio_selector">@drawable/round_selector</item>
  3500. <item name="checkbox_selector">@drawable/wmpf_checkbox_btn</item>
  3501. </style><style name="largeCustomGreenProgressBar" parent="@android:style/Widget.ProgressBar.Large">
  3502. <item name="android:indeterminateDrawable">@drawable/progress_green_large_holo</item>
  3503. </style><style name="largeCustomProgressBar" parent="@android:style/Widget.ProgressBar.Large">
  3504. <item name="android:indeterminateDrawable">@drawable/progress_large_holo</item>
  3505. </style><style name="largeCustomWhiteProgressBar" parent="@android:style/Widget.ProgressBar.Large">
  3506. <item name="android:indeterminateDrawable">@drawable/progress_white_large_holo</item>
  3507. </style><style name="mediumCustomGreenProgressBar" parent="@android:style/Widget.ProgressBar">
  3508. <item name="android:indeterminateDrawable">@drawable/progress_green_medium_holo</item>
  3509. </style><style name="mediumCustomProgressBar" parent="@android:style/Widget.ProgressBar">
  3510. <item name="android:indeterminateDrawable">@drawable/progress_medium_holo</item>
  3511. </style><style name="mediumCustomWhiteProgressBar" parent="@android:style/Widget.ProgressBar">
  3512. <item name="android:indeterminateDrawable">@drawable/progress_white_medium_holo</item>
  3513. </style><style name="mediumSingleWhiteProgressBar" parent="@android:style/Widget.ProgressBar">
  3514. <item name="android:indeterminateDrawable">@drawable/progress_single_white_medium_holo
  3515. </item>
  3516. </style><style name="mmalertdialog" parent="@android:style/Theme.Dialog">
  3517. <item name="android:windowFrame">@null</item>
  3518. <item name="android:windowIsFloating">true</item>
  3519. <item name="android:windowIsTranslucent">true</item>
  3520. <item name="android:windowNoTitle">true</item>
  3521. <item name="android:background">@color/transparent</item>
  3522. <item name="android:windowBackground">@color/transparent</item>
  3523. <item name="android:backgroundDimEnabled">true</item>
  3524. <item name="android:backgroundDimAmount">0.5</item>
  3525. </style><style name="mmcustomdialog" parent="@android:style/Theme.Dialog">
  3526. <item name="android:windowIsFloating">true</item>
  3527. <item name="android:windowNoTitle">true</item>
  3528. <item name="android:windowBackground">@color/transparent</item>
  3529. </style><style name="mmtipsdialog" parent="@android:style/Theme.Dialog">
  3530. <item name="android:windowFrame">@null</item>
  3531. <item name="android:windowIsFloating">true</item>
  3532. <item name="android:windowIsTranslucent">true</item>
  3533. <item name="android:windowNoTitle">true</item>
  3534. <item name="android:background">@color/transparent</item>
  3535. <item name="android:windowBackground">@color/transparent</item>
  3536. <item name="android:backgroundDimEnabled">false</item>
  3537. </style><style mce_bogus="1" name="picker_view_scale_anim" parent="android:Animation">
  3538. <item name="android:windowEnterAnimation">@anim/pickerview_dialog_scale_in</item>
  3539. <item name="android:windowExitAnimation">@anim/pickerview_dialog_scale_out</item>
  3540. </style><style mce_bogus="1" name="picker_view_slide_anim" parent="android:Animation">
  3541. <item name="android:windowEnterAnimation">@anim/pickerview_slide_in_bottom</item>
  3542. <item name="android:windowExitAnimation">@anim/pickerview_slide_out_bottom</item>
  3543. </style><style name="smallCustomGreenProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  3544. <item name="android:indeterminateDrawable">@drawable/progress_green_small_holo</item>
  3545. </style><style name="smallCustomProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  3546. <item name="android:indeterminateDrawable">@drawable/progress_small_holo</item>
  3547. </style><style name="smallCustomWhiteProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  3548. <item name="android:indeterminateDrawable">@drawable/progress_white_small_holo</item>
  3549. </style><style name="smallSingleWhiteProgressBar" parent="@android:style/Widget.ProgressBar.Small">
  3550. <item name="android:indeterminateDrawable">@drawable/progress_single_white_small_holo</item>
  3551. </style><style name="wmpf_round_checkbox_WeUITheme" parent="WeUITheme">
  3552. <item name="radio_selector">@drawable/round_selector</item>
  3553. <item name="checkbox_selector">@drawable/wmpf_checkbox_btn</item>
  3554. </style><declare-styleable name="ButtonBarContainerTheme">
  3555. <attr format="reference" name="metaButtonBarStyle"/>
  3556. <attr format="reference" name="metaButtonBarButtonStyle"/>
  3557. </declare-styleable><declare-styleable name="ButtonPreference">
  3558. <attr format="color" name="icon_color"/>
  3559. <attr format="reference" name="btn_icon"/>
  3560. <attr format="color" name="title_color"/>
  3561. <attr format="string" name="btn_title"/>
  3562. </declare-styleable><declare-styleable name="CellTextView">
  3563. <attr name="android:textSize"/>
  3564. <attr name="android:textColor"/>
  3565. <attr name="android:maxLines"/>
  3566. <attr name="android:maxWidth"/>
  3567. <attr name="android:maxHeight"/>
  3568. <attr name="android:gravity"/>
  3569. <attr name="android:minWidth"/>
  3570. <attr name="android:singleLine"/>
  3571. <attr name="android:text"/>
  3572. <attr name="android:background"/>
  3573. <attr name="android:textStyle"/>
  3574. <attr name="android:minHeight"/>
  3575. <attr name="android:fontFamily"/>
  3576. <attr name="android:typeface"/>
  3577. <attr name="android:lineSpacingExtra"/>
  3578. <attr name="android:paddingLeft"/>
  3579. <attr name="android:paddingRight"/>
  3580. <attr name="android:paddingTop"/>
  3581. <attr name="android:paddingBottom"/>
  3582. </declare-styleable><declare-styleable name="DatePicker">
  3583. <attr format="integer" name="firstDayOfWeek"/>
  3584. <attr format="string" name="minDate"/>
  3585. <attr format="string" name="maxDate"/>
  3586. <attr format="boolean" name="spinnersShown"/>
  3587. <attr format="boolean" name="calendarViewShown"/>
  3588. <attr format="reference" name="internalLayout"/>
  3589. <attr format="reference" name="legacyLayout"/>
  3590. <attr format="color" name="headerTextColor"/>
  3591. <attr format="reference" name="fat_aar_excluded_headerBackground"/>
  3592. <attr format="reference" name="yearListItemTextAppearance"/>
  3593. <attr format="reference" name="yearListItemActivatedTextAppearance"/>
  3594. <attr format="color" name="calendarTextColor"/>
  3595. <attr name="datePickerMode">
  3596. <enum name="spinner" value="1"/>
  3597. <enum name="calendar" value="2"/>
  3598. </attr>
  3599. <attr format="integer" name="startYear"/>
  3600. <attr format="integer" name="endYear"/>
  3601. <attr format="reference" name="headerMonthTextAppearance"/>
  3602. <attr format="reference" name="headerDayOfMonthTextAppearance"/>
  3603. <attr format="reference" name="headerYearTextAppearance"/>
  3604. <attr format="color" name="dayOfWeekBackground"/>
  3605. <attr format="reference" name="dayOfWeekTextAppearance"/>
  3606. <attr format="color" name="yearListSelectorColor"/>
  3607. </declare-styleable><declare-styleable name="DragSortListView">
  3608. <attr format="dimension" name="collapsed_height"/>
  3609. <attr format="float" name="drag_scroll_start"/>
  3610. <attr format="float" name="max_drag_scroll_speed"/>
  3611. <attr format="color" name="float_background_color"/>
  3612. <attr name="remove_mode">
  3613. <enum name="clickRemove" value="0"/>
  3614. <enum name="flingRemove" value="1"/>
  3615. </attr>
  3616. <attr format="boolean" name="track_drag_sort"/>
  3617. <attr format="float" name="float_alpha"/>
  3618. <attr format="float" name="slide_shuffle_speed"/>
  3619. <attr format="integer" name="remove_animation_duration"/>
  3620. <attr format="integer" name="drop_animation_duration"/>
  3621. <attr format="boolean" name="drag_enabled"/>
  3622. <attr format="boolean" name="sort_enabled"/>
  3623. <attr format="boolean" name="remove_enabled"/>
  3624. <attr name="drag_start_mode">
  3625. <enum name="onDown" value="0"/>
  3626. <enum name="onMove" value="1"/>
  3627. <enum name="onLongPress" value="2"/>
  3628. </attr>
  3629. <attr format="integer" name="drag_handle_id"/>
  3630. <attr format="integer" name="fling_handle_id"/>
  3631. <attr format="integer" name="click_remove_id"/>
  3632. <attr format="boolean" name="use_default_controller"/>
  3633. </declare-styleable><declare-styleable name="EllipsizeLayout">
  3634. <attr format="boolean" name="center_ellipsize_textview"/>
  3635. </declare-styleable><declare-styleable name="FormItemView">
  3636. <attr format="reference" name="form_layout"/>
  3637. <attr format="string" name="form_title"/>
  3638. <attr format="string" name="form_hint"/>
  3639. <attr format="string" name="form_btn_title"/>
  3640. </declare-styleable><declare-styleable name="MMAutoAdjustTextView">
  3641. <attr format="boolean" name="auto_change_size"/>
  3642. </declare-styleable><declare-styleable name="MMProgressWheel">
  3643. <attr format="boolean" name="matProg_progressIndeterminate"/>
  3644. <attr format="color" name="matProg_barColor"/>
  3645. <attr format="color" name="matProg_rimColor"/>
  3646. <attr format="dimension" name="matProg_rimWidth"/>
  3647. <attr format="float" name="matProg_spinSpeed"/>
  3648. <attr format="integer" name="matProg_barSpinCycleTime"/>
  3649. <attr format="dimension" name="matProg_circleRadius"/>
  3650. <attr format="boolean" name="matProg_fillRadius"/>
  3651. <attr format="dimension" name="matProg_barWidth"/>
  3652. <attr format="boolean" name="matProg_linearProgress"/>
  3653. </declare-styleable><declare-styleable name="MMSwitchBtn">
  3654. <attr format="color" name="on_color"/>
  3655. <attr format="color" name="off_color"/>
  3656. <attr format="color" name="slide_color"/>
  3657. <attr format="string" name="on_text"/>
  3658. <attr format="string" name="off_text"/>
  3659. </declare-styleable><declare-styleable name="NeatTextView"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:maxLines"/><attr name="android:lines"/><attr name="android:maxWidth"/><attr name="android:gravity"/><attr name="android:minWidth"/><attr name="android:singleLine"/><attr name="android:text"/><attr name="android:background"/><attr name="android:textStyle"/><attr name="android:minHeight"/><attr name="android:maxHeight"/><attr name="android:fontFamily"/><attr name="android:typeface"/><attr name="android:lineSpacingExtra"/><attr name="android:paddingLeft"/><attr name="android:paddingRight"/><attr name="android:paddingTop"/><attr name="android:paddingBottom"/><attr name="android:width"/><attr name="android:height"/><attr name="android:hint"/><attr name="android:textColorHint"/><attr name="android:textColorLink"/><attr name="android:ellipsize"/><attr format="boolean" name="smartLetter"/></declare-styleable><declare-styleable name="NestedBounceView">
  3660. <attr format="boolean" name="isBounceEnable"/>
  3661. </declare-styleable><declare-styleable name="PictureLongScaleImageView">
  3662. <attr format="reference" name="src"/>
  3663. <attr format="string" name="assetName"/>
  3664. <attr format="boolean" name="panEnabled"/>
  3665. <attr format="boolean" name="zoomEnabled"/>
  3666. <attr format="boolean" name="quickScaleEnabled"/>
  3667. <attr format="color" name="tileBackgroundColor"/>
  3668. </declare-styleable><declare-styleable name="PictureMediumBoldTextView">
  3669. <attr format="float" name="stroke_Width"/>
  3670. </declare-styleable><declare-styleable name="PictureRoundCornerRelativeLayout">
  3671. <attr format="dimension" name="psCorners"/>
  3672. <attr format="boolean" name="psTopNormal"/>
  3673. <attr format="boolean" name="psBottomNormal"/>
  3674. </declare-styleable><declare-styleable name="ProgressLoading">
  3675. <attr format="color" name="loadProgressColor"/>
  3676. <attr format="integer" name="loadMax"/>
  3677. <attr format="integer" name="loadStartAngle"/>
  3678. <attr format="integer" name="loadprogress"/>
  3679. </declare-styleable><declare-styleable name="RoundProgressBtn">
  3680. <attr format="color" name="roundColor"/>
  3681. <attr format="dimension" name="roundwidth"/>
  3682. <attr format="color" name="progressColor"/>
  3683. <attr format="dimension" name="progressWidth"/>
  3684. <attr format="integer" name="max"/>
  3685. <attr format="integer" name="fat_aar_excluded_startAngle"/>
  3686. <attr format="integer" name="progress"/>
  3687. <attr format="boolean" name="hasPause"/>
  3688. </declare-styleable><declare-styleable name="SwipeBackLayout"><attr format="dimension" name="edge_size"/><attr name="edge_flag">
  3689. <enum name="left" value="0"/>
  3690. <enum name="right" value="1"/>
  3691. <enum name="bottom" value="2"/>
  3692. <enum name="all" value="3"/>
  3693. </attr><attr format="reference" name="shadow_left"/><attr format="reference" name="shadow_right"/><attr format="reference" name="shadow_bottom"/></declare-styleable><declare-styleable name="TenPayRelativeLayout">
  3694. <attr format="string" name="TenPayAccessibilityClassName"/>
  3695. </declare-styleable><declare-styleable name="ThreeDotsLoadingView">
  3696. <attr format="color" name="dotColor"/>
  3697. </declare-styleable><declare-styleable name="ViewfinderView">
  3698. <attr format="dimension" name="inner_width"/>
  3699. <attr format="dimension" name="inner_height"/>
  3700. <attr format="dimension" name="inner_margintop"/>
  3701. <attr format="color" name="inner_corner_color"/>
  3702. <attr format="dimension" name="inner_corner_length"/>
  3703. <attr format="dimension" name="inner_corner_width"/>
  3704. <attr format="reference" name="inner_scan_bitmap"/>
  3705. <attr format="integer" name="inner_scan_speed"/>
  3706. <attr format="boolean" name="inner_scan_iscircle"/>
  3707. </declare-styleable><declare-styleable name="WeImageBtn">
  3708. <attr format="color" name="btnIconColor"/>
  3709. <attr format="float" name="btnIconAlpha"/>
  3710. </declare-styleable><declare-styleable name="WeImageView">
  3711. <attr format="color" name="iconColor"/>
  3712. <attr format="float" name="iconAlpha"/>
  3713. </declare-styleable><declare-styleable name="WheelView">
  3714. <attr name="fat_aar_excluded_wheelview_gravity">
  3715. <enum name="center" value="17"/>
  3716. <enum name="left" value="3"/>
  3717. <enum name="right" value="5"/>
  3718. </attr>
  3719. <attr format="dimension" name="wheelview_textSize"/>
  3720. <attr format="color" name="wheelview_textColorOut"/>
  3721. <attr format="color" name="wheelview_textColorCenter"/>
  3722. <attr format="color" name="wheelview_dividerColor"/>
  3723. <attr format="float" name="wheelview_lineSpacingMultiplier"/>
  3724. </declare-styleable><declare-styleable name="toyBrick">
  3725. <attr format="string" name="identity"/>
  3726. <attr format="string" name="title"/>
  3727. <attr format="string" name="rightDesc"/>
  3728. <attr format="string" name="summary"/>
  3729. <attr format="dimension" name="fat_aar_excluded_space"/>
  3730. <attr format="boolean" name="checked"/>
  3731. <attr format="boolean" name="isVisible"/>
  3732. <attr format="boolean" name="rightArrowEnable"/>
  3733. <attr format="reference" name="icon"/>
  3734. <attr format="reference" name="rightIcon"/>
  3735. <attr format="integer" name="prospectNum"/>
  3736. <attr format="reference" name="prospectStyle">
  3737. <enum name="NONE" value="0"/>
  3738. <enum name="RED_NEW" value="1"/>
  3739. <enum name="RED_DOT" value="2"/>
  3740. <enum name="RED_NUM" value="3"/>
  3741. </attr>
  3742. </declare-styleable></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\values-en\values-en.xml" qualifiers="en"><string name="picker_time_apr">APR</string><string name="picker_time_aug">AUG</string><string name="picker_time_dec">DEC</string><string name="picker_time_feb">FEB</string><string name="picker_time_jan">JAN</string><string name="picker_time_jul">JUL</string><string name="picker_time_jun">JUN</string><string name="picker_time_mar">MAR</string><string name="picker_time_may">MAY</string><string name="picker_time_nov">NOV</string><string name="picker_time_oct">OCT</string><string name="picker_time_sept">SEPT</string><string name="pickerview_cancel">Cancel</string><string name="pickerview_day"> </string><string name="pickerview_hours"> </string><string name="pickerview_minutes"> </string><string name="pickerview_month"> </string><string name="pickerview_seconds"> </string><string name="pickerview_submit">Confirm</string><string name="pickerview_year"> </string></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\values-land\values-land.xml" qualifiers="land"><dimen name="app_brand_actionbar_capsule_view_right_margin_wxa">24dp</dimen><dimen name="app_brand_actionbar_height">52dp</dimen><dimen name="app_brand_actionbar_home_nav_area_margin_left">@dimen/app_brand_actionbar_left_margin</dimen><dimen name="app_brand_actionbar_left_margin">24dp</dimen><item format="float" name="wmpf_qrlogin_appname_vertical_percent_value" type="dimen">0.0371</item><item format="float" name="wmpf_qrlogin_background_image_vertical_percent_value" type="dimen">0.99</item><item format="float" name="wmpf_qrlogin_body_vertical_percent_value" type="dimen">0.34</item><dimen name="wmpf_qrlogin_image_frame_max_width">188dp</dimen><item format="float" name="wmpf_qrlogin_image_frame_vertical_percent_value" type="dimen">0.6</item><item format="float" name="wmpf_qrlogin_wechat_icon_vertical_percent_value" type="dimen">0.04</item><item format="float" name="wmpf_setting_body_vertical_percent_value" type="dimen">0.44</item><fraction name="wmpf_qrlogin_appname_vertical_percent">@dimen/wmpf_qrlogin_appname_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_background_image_vertical_percent">@dimen/wmpf_qrlogin_background_image_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_body_vertical_percent">@dimen/wmpf_qrlogin_body_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_image_frame_vertical_percent">@dimen/wmpf_qrlogin_image_frame_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_wechat_icon_vertical_percent">@dimen/wmpf_qrlogin_wechat_icon_vertical_percent_value</fraction><fraction name="wmpf_setting_body_vertical_percent">@dimen/wmpf_setting_body_vertical_percent_value</fraction></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\values-sw600dp-land-v13\values-sw600dp-land-v13.xml" qualifiers="sw600dp-land-v13"><item format="float" name="wmpf_qrlogin_body_vertical_percent_value" type="dimen">0.469</item><item format="float" name="wmpf_setting_body_vertical_percent_value" type="dimen">0.44</item><fraction name="wmpf_qrlogin_body_vertical_percent">@dimen/wmpf_qrlogin_body_vertical_percent_value</fraction><fraction name="wmpf_setting_body_vertical_percent">@dimen/wmpf_setting_body_vertical_percent_value</fraction></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\values-sw600dp-v13\values-sw600dp-v13.xml" qualifiers="sw600dp-v13"><item format="float" name="wmpf_qrlogin_body_vertical_percent_value" type="dimen">0.625</item><item format="float" name="wmpf_qrlogin_image_frame_vertical_percent_value" type="dimen">0.42</item><item format="float" name="wmpf_setting_body_vertical_percent_value" type="dimen">0.54</item><fraction name="wmpf_qrlogin_body_vertical_percent">@dimen/wmpf_qrlogin_body_vertical_percent_value</fraction><fraction name="wmpf_qrlogin_image_frame_vertical_percent">@dimen/wmpf_qrlogin_image_frame_vertical_percent_value</fraction><fraction name="wmpf_setting_body_vertical_percent">@dimen/wmpf_setting_body_vertical_percent_value</fraction></file><file path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\values-w820dp-v13\values-w820dp-v13.xml" qualifiers="w820dp-v13"><dimen name="activity_horizontal_margin">64dp</dimen></file><file name="file_paths" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\xml\file_paths.xml" qualifiers="" type="xml"/><file name="hce_apdu" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\xml\hce_apdu.xml" qualifiers="" type="xml"/><file name="openapipath" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\xml\openapipath.xml" qualifiers="" type="xml"/><file name="ps_file_paths" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\xml\ps_file_paths.xml" qualifiers="" type="xml"/><file name="share_file_path" path="C:\Users\candy\.gradle\caches\transforms-2\files-2.1\0ffff97601344532b2c1586f904ef837\wxa-standalone-open-runtime-SaaA-plugin-sdk-1.0.3\res\xml\share_file_path.xml" qualifiers="" type="xml"/></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config=":plugin$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\packaged_res\release"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config=":plugin" from-dependency="true" generated-set=":plugin$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\packaged_res\release"><file path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\plugin\build\intermediates\packaged_res\release\values\values.xml" qualifiers=""><style name="TransparentTheme" parent="Theme.AppCompat.NoActionBar">
  3743. <item name="android:windowAnimationStyle">@null</item>
  3744. <item name="android:windowBackground">@android:color/transparent</item>
  3745. <item name="android:windowIsTranslucent">true</item>
  3746. <item name="android:windowTranslucentStatus">true</item>
  3747. </style></file></source></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res"/><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\build\generated\res\rs\arm64\release"/><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\build\generated\res\resValues\arm64\release"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res"><file name="progress_large_holo" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\drawable\progress_large_holo.xml" qualifiers="" type="drawable"/><file name="progress_medium_holo" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\drawable\progress_medium_holo.xml" qualifiers="" type="drawable"/><file name="progress_white_medium_holo" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\drawable\progress_white_medium_holo.xml" qualifiers="" type="drawable"/><file name="splashscreen" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\drawable-hdpi\splashscreen.xml" qualifiers="hdpi-v4" type="drawable"/><file name="wxa_spinner_48_outer_holo" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\drawable-xhdpi\wxa_spinner_48_outer_holo.png" qualifiers="xhdpi-v4" type="drawable"/><file name="wxa_spinner_white_48_outer_holo" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\drawable-xhdpi\wxa_spinner_white_48_outer_holo.png" qualifiers="xhdpi-v4" type="drawable"/><file name="layout" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\layout\layout.xml" qualifiers="" type="layout"/><file name="layout_splashscreen" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\layout\layout_splashscreen.xml" qualifiers="" type="layout"/><file name="ic_launcher" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\mipmap-xhdpi\ic_launcher.png" qualifiers="xhdpi-v4" type="mipmap"/><file name="ic_launcher" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\mipmap-xxhdpi\ic_launcher.png" qualifiers="xxhdpi-v4" type="mipmap"/><file name="ic_launcher" path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\mipmap-xxxhdpi\ic_launcher.png" qualifiers="xxxhdpi-v4" type="mipmap"/><file path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\values\strings.xml" qualifiers=""><string name="app_name">多端测试应用</string><string name="wxa_btn_hint">启动小程序</string></file><file path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\main\res\values\styles.xml" qualifiers=""><style name="Theme.App.Global" parent="Theme.AppCompat.Light.NoActionBar">
  3748. </style><style name="Theme.Translucent" parent="@android:style/Theme.DeviceDefault.Light">
  3749. <item name="android:windowBackground">@null</item>
  3750. <item name="android:windowNoTitle">true</item>
  3751. <item name="android:windowIsTranslucent">true</item>
  3752. </style><style name="Theme.Splashscreen" parent="Theme.AppCompat.Light.NoActionBar">
  3753. <item name="android:windowNoTitle">true</item>
  3754. </style></file></source><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\build\generated\res\rs\arm64\release"/><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\build\generated\res\resValues\arm64\release"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="arm64$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\arm64\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="arm64" generated-set="arm64$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\arm64\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="release$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\release\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="release" generated-set="release$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\release\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="arm64Release$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\arm64Release\res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="arm64Release" generated-set="arm64Release$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="F:\Work_Space\Wechat_workSpace\reader_plugin\android\app\src\arm64Release\res"/></dataSet><mergedItems><configuration qualifiers=""><declare-styleable name="AlertDialog">
  3755. <attr name="android:layout"/>
  3756. <attr format="reference" name="buttonPanelSideLayout"/>
  3757. <attr format="reference" name="listLayout"/>
  3758. <attr format="reference" name="multiChoiceItemLayout"/>
  3759. <attr format="reference" name="singleChoiceItemLayout"/>
  3760. <attr format="reference" name="listItemLayout"/>
  3761. <attr format="boolean" name="showTitle"/>
  3762. <attr format="dimension" name="buttonIconDimen"/>
  3763. </declare-styleable><declare-styleable name="ButtonBarContainerTheme">
  3764. <attr format="reference" name="metaButtonBarStyle"/>
  3765. <attr format="reference" name="metaButtonBarButtonStyle"/>
  3766. </declare-styleable><declare-styleable name="MMAutoAdjustTextView">
  3767. <attr format="boolean" name="auto_change_size"/>
  3768. </declare-styleable><declare-styleable name="ViewfinderView">
  3769. <attr format="dimension" name="inner_width"/>
  3770. <attr format="dimension" name="inner_height"/>
  3771. <attr format="dimension" name="inner_margintop"/>
  3772. <attr format="color" name="inner_corner_color"/>
  3773. <attr format="dimension" name="inner_corner_length"/>
  3774. <attr format="dimension" name="inner_corner_width"/>
  3775. <attr format="reference" name="inner_scan_bitmap"/>
  3776. <attr format="integer" name="inner_scan_speed"/>
  3777. <attr format="boolean" name="inner_scan_iscircle"/>
  3778. </declare-styleable><declare-styleable name="MMProgressWheel">
  3779. <attr format="boolean" name="matProg_progressIndeterminate"/>
  3780. <attr format="color" name="matProg_barColor"/>
  3781. <attr format="color" name="matProg_rimColor"/>
  3782. <attr format="dimension" name="matProg_rimWidth"/>
  3783. <attr format="float" name="matProg_spinSpeed"/>
  3784. <attr format="integer" name="matProg_barSpinCycleTime"/>
  3785. <attr format="dimension" name="matProg_circleRadius"/>
  3786. <attr format="boolean" name="matProg_fillRadius"/>
  3787. <attr format="dimension" name="matProg_barWidth"/>
  3788. <attr format="boolean" name="matProg_linearProgress"/>
  3789. </declare-styleable><declare-styleable name="BottomSheetBehavior_Layout"><attr format="dimension" name="behavior_peekHeight">
  3790. <enum name="auto" value="-1"/>
  3791. </attr><attr format="boolean" name="behavior_hideable"/><attr format="boolean" name="behavior_skipCollapsed"/><attr format="boolean" name="behavior_fitToContents"/></declare-styleable><declare-styleable name="ForegroundLinearLayout"><attr name="android:foreground"/><attr name="android:foregroundGravity"/><attr format="boolean" name="foregroundInsidePadding"/></declare-styleable><declare-styleable name="MMSwitchBtn">
  3792. <attr format="color" name="on_color"/>
  3793. <attr format="color" name="off_color"/>
  3794. <attr format="color" name="slide_color"/>
  3795. <attr format="string" name="on_text"/>
  3796. <attr format="string" name="off_text"/>
  3797. </declare-styleable><declare-styleable name="Fragment">
  3798. <attr name="android:name"/>
  3799. <attr name="android:id"/>
  3800. <attr name="android:tag"/>
  3801. </declare-styleable><declare-styleable name="GradientColorItem">
  3802. <attr name="android:offset"/>
  3803. <attr name="android:color"/>
  3804. </declare-styleable><declare-styleable name="MaterialCardView"><attr name="strokeColor"/><attr name="strokeWidth"/></declare-styleable><declare-styleable name="AppCompatTheme">
  3805. <eat-comment/>
  3806. <attr format="boolean" name="windowActionBar"/>
  3807. <attr format="boolean" name="windowNoTitle"/>
  3808. <attr format="boolean" name="windowActionBarOverlay"/>
  3809. <attr format="boolean" name="windowActionModeOverlay"/>
  3810. <attr format="dimension|fraction" name="windowFixedWidthMajor"/>
  3811. <attr format="dimension|fraction" name="windowFixedHeightMinor"/>
  3812. <attr format="dimension|fraction" name="windowFixedWidthMinor"/>
  3813. <attr format="dimension|fraction" name="windowFixedHeightMajor"/>
  3814. <attr format="dimension|fraction" name="windowMinWidthMajor"/>
  3815. <attr format="dimension|fraction" name="windowMinWidthMinor"/>
  3816. <attr name="android:windowIsFloating"/>
  3817. <attr name="android:windowAnimationStyle"/>
  3818. <eat-comment/>
  3819. <attr format="reference" name="actionBarTabStyle"/>
  3820. <attr format="reference" name="actionBarTabBarStyle"/>
  3821. <attr format="reference" name="actionBarTabTextStyle"/>
  3822. <attr format="reference" name="actionOverflowButtonStyle"/>
  3823. <attr format="reference" name="actionOverflowMenuStyle"/>
  3824. <attr format="reference" name="actionBarPopupTheme"/>
  3825. <attr format="reference" name="actionBarStyle"/>
  3826. <attr format="reference" name="actionBarSplitStyle"/>
  3827. <attr format="reference" name="actionBarTheme"/>
  3828. <attr format="reference" name="actionBarWidgetTheme"/>
  3829. <attr format="dimension" name="actionBarSize">
  3830. <enum name="wrap_content" value="0"/>
  3831. </attr>
  3832. <attr format="reference" name="actionBarDivider"/>
  3833. <attr format="reference" name="actionBarItemBackground"/>
  3834. <attr format="reference" name="actionMenuTextAppearance"/>
  3835. <attr format="color|reference" name="actionMenuTextColor"/>
  3836. <eat-comment/>
  3837. <attr format="reference" name="actionModeStyle"/>
  3838. <attr format="reference" name="actionModeCloseButtonStyle"/>
  3839. <attr format="reference" name="actionModeBackground"/>
  3840. <attr format="reference" name="actionModeSplitBackground"/>
  3841. <attr format="reference" name="actionModeCloseDrawable"/>
  3842. <attr format="reference" name="actionModeCutDrawable"/>
  3843. <attr format="reference" name="actionModeCopyDrawable"/>
  3844. <attr format="reference" name="actionModePasteDrawable"/>
  3845. <attr format="reference" name="actionModeSelectAllDrawable"/>
  3846. <attr format="reference" name="actionModeShareDrawable"/>
  3847. <attr format="reference" name="actionModeFindDrawable"/>
  3848. <attr format="reference" name="actionModeWebSearchDrawable"/>
  3849. <attr format="reference" name="actionModePopupWindowStyle"/>
  3850. <eat-comment/>
  3851. <attr format="reference" name="textAppearanceLargePopupMenu"/>
  3852. <attr format="reference" name="textAppearanceSmallPopupMenu"/>
  3853. <attr format="reference" name="textAppearancePopupMenuHeader"/>
  3854. <eat-comment/>
  3855. <attr format="reference" name="dialogTheme"/>
  3856. <attr format="dimension" name="dialogPreferredPadding"/>
  3857. <attr format="reference" name="listDividerAlertDialog"/>
  3858. <attr format="dimension" name="dialogCornerRadius"/>
  3859. <eat-comment/>
  3860. <attr format="reference" name="actionDropDownStyle"/>
  3861. <attr format="dimension" name="dropdownListPreferredItemHeight"/>
  3862. <attr format="reference" name="spinnerDropDownItemStyle"/>
  3863. <attr format="reference" name="homeAsUpIndicator"/>
  3864. <attr format="reference" name="actionButtonStyle"/>
  3865. <attr format="reference" name="buttonBarStyle"/>
  3866. <attr format="reference" name="buttonBarButtonStyle"/>
  3867. <attr format="reference" name="selectableItemBackground"/>
  3868. <attr format="reference" name="selectableItemBackgroundBorderless"/>
  3869. <attr format="reference" name="borderlessButtonStyle"/>
  3870. <attr format="reference" name="dividerVertical"/>
  3871. <attr format="reference" name="dividerHorizontal"/>
  3872. <attr format="reference" name="activityChooserViewStyle"/>
  3873. <attr format="reference" name="toolbarStyle"/>
  3874. <attr format="reference" name="toolbarNavigationButtonStyle"/>
  3875. <attr format="reference" name="popupMenuStyle"/>
  3876. <attr format="reference" name="popupWindowStyle"/>
  3877. <attr format="reference|color" name="editTextColor"/>
  3878. <attr format="reference" name="editTextBackground"/>
  3879. <attr format="reference" name="imageButtonStyle"/>
  3880. <eat-comment/>
  3881. <attr format="reference" name="textAppearanceSearchResultTitle"/>
  3882. <attr format="reference" name="textAppearanceSearchResultSubtitle"/>
  3883. <attr format="reference|color" name="textColorSearchUrl"/>
  3884. <attr format="reference" name="searchViewStyle"/>
  3885. <eat-comment/>
  3886. <attr format="dimension" name="listPreferredItemHeight"/>
  3887. <attr format="dimension" name="listPreferredItemHeightSmall"/>
  3888. <attr format="dimension" name="listPreferredItemHeightLarge"/>
  3889. <attr format="dimension" name="listPreferredItemPaddingLeft"/>
  3890. <attr format="dimension" name="listPreferredItemPaddingRight"/>
  3891. <attr format="dimension" name="listPreferredItemPaddingStart"/>
  3892. <attr format="dimension" name="listPreferredItemPaddingEnd"/>
  3893. <attr format="reference" name="dropDownListViewStyle"/>
  3894. <attr format="reference" name="listPopupWindowStyle"/>
  3895. <attr format="reference" name="textAppearanceListItem"/>
  3896. <attr format="reference" name="textAppearanceListItemSecondary"/>
  3897. <attr format="reference" name="textAppearanceListItemSmall"/>
  3898. <eat-comment/>
  3899. <attr format="reference" name="panelBackground"/>
  3900. <attr format="dimension" name="panelMenuListWidth"/>
  3901. <attr format="reference" name="panelMenuListTheme"/>
  3902. <attr format="reference" name="listChoiceBackgroundIndicator"/>
  3903. <eat-comment/>
  3904. <attr format="color" name="colorPrimary"/>
  3905. <attr format="color" name="colorPrimaryDark"/>
  3906. <attr format="color" name="colorAccent"/>
  3907. <attr format="color" name="colorControlNormal"/>
  3908. <attr format="color" name="colorControlActivated"/>
  3909. <attr format="color" name="colorControlHighlight"/>
  3910. <attr format="color" name="colorButtonNormal"/>
  3911. <attr format="color" name="colorSwitchThumbNormal"/>
  3912. <attr format="reference" name="controlBackground"/>
  3913. <attr format="color" name="colorBackgroundFloating"/>
  3914. <eat-comment/>
  3915. <attr format="reference" name="alertDialogStyle"/>
  3916. <attr format="reference" name="alertDialogButtonGroupStyle"/>
  3917. <attr format="boolean" name="alertDialogCenterButtons"/>
  3918. <attr format="reference" name="alertDialogTheme"/>
  3919. <attr format="reference|color" name="textColorAlertDialogListItem"/>
  3920. <attr format="reference" name="buttonBarPositiveButtonStyle"/>
  3921. <attr format="reference" name="buttonBarNegativeButtonStyle"/>
  3922. <attr format="reference" name="buttonBarNeutralButtonStyle"/>
  3923. <eat-comment/>
  3924. <attr format="reference" name="autoCompleteTextViewStyle"/>
  3925. <attr format="reference" name="buttonStyle"/>
  3926. <attr format="reference" name="buttonStyleSmall"/>
  3927. <attr format="reference" name="checkboxStyle"/>
  3928. <attr format="reference" name="checkedTextViewStyle"/>
  3929. <attr format="reference" name="editTextStyle"/>
  3930. <attr format="reference" name="radioButtonStyle"/>
  3931. <attr format="reference" name="ratingBarStyle"/>
  3932. <attr format="reference" name="ratingBarStyleIndicator"/>
  3933. <attr format="reference" name="ratingBarStyleSmall"/>
  3934. <attr format="reference" name="seekBarStyle"/>
  3935. <attr format="reference" name="spinnerStyle"/>
  3936. <attr format="reference" name="switchStyle"/>
  3937. <attr format="reference" name="listMenuViewStyle"/>
  3938. <eat-comment/>
  3939. <attr format="reference" name="tooltipFrameBackground"/>
  3940. <attr format="reference|color" name="tooltipForegroundColor"/>
  3941. <attr format="reference|color" name="colorError"/>
  3942. <attr format="string" name="viewInflaterClass"/>
  3943. <eat-comment/>
  3944. <attr format="reference" name="listChoiceIndicatorMultipleAnimated"/>
  3945. <attr format="reference" name="listChoiceIndicatorSingleAnimated"/>
  3946. </declare-styleable><declare-styleable name="ScrimInsetsFrameLayout"><attr format="color|reference" name="insetForeground"/></declare-styleable><declare-styleable name="ButtonPreference">
  3947. <attr format="color" name="icon_color"/>
  3948. <attr format="reference" name="btn_icon"/>
  3949. <attr format="color" name="title_color"/>
  3950. <attr format="string" name="btn_title"/>
  3951. </declare-styleable><declare-styleable name="CollapsingToolbarLayout"><attr format="dimension" name="expandedTitleMargin"/><attr format="dimension" name="expandedTitleMarginStart"/><attr format="dimension" name="expandedTitleMarginTop"/><attr format="dimension" name="expandedTitleMarginEnd"/><attr format="dimension" name="expandedTitleMarginBottom"/><attr format="reference" name="expandedTitleTextAppearance"/><attr format="reference" name="collapsedTitleTextAppearance"/><attr format="color" name="contentScrim"/><attr format="color" name="statusBarScrim"/><attr format="reference" name="toolbarId"/><attr format="dimension" name="scrimVisibleHeightTrigger"/><attr format="integer" name="scrimAnimationDuration"/><attr name="collapsedTitleGravity">
  3952. <flag name="top" value="0x30"/>
  3953. <flag name="bottom" value="0x50"/>
  3954. <flag name="left" value="0x03"/>
  3955. <flag name="right" value="0x05"/>
  3956. <flag name="center_vertical" value="0x10"/>
  3957. <flag name="fill_vertical" value="0x70"/>
  3958. <flag name="center_horizontal" value="0x01"/>
  3959. <flag name="center" value="0x11"/>
  3960. <flag name="start" value="0x00800003"/>
  3961. <flag name="end" value="0x00800005"/>
  3962. </attr><attr name="expandedTitleGravity">
  3963. <flag name="top" value="0x30"/>
  3964. <flag name="bottom" value="0x50"/>
  3965. <flag name="left" value="0x03"/>
  3966. <flag name="right" value="0x05"/>
  3967. <flag name="center_vertical" value="0x10"/>
  3968. <flag name="fill_vertical" value="0x70"/>
  3969. <flag name="center_horizontal" value="0x01"/>
  3970. <flag name="center" value="0x11"/>
  3971. <flag name="start" value="0x00800003"/>
  3972. <flag name="end" value="0x00800005"/>
  3973. </attr><attr format="boolean" name="titleEnabled"/><attr name="title"/></declare-styleable><declare-styleable name="MenuView">
  3974. <attr name="android:itemTextAppearance"/>
  3975. <attr name="android:horizontalDivider"/>
  3976. <attr name="android:verticalDivider"/>
  3977. <attr name="android:headerBackground"/>
  3978. <attr name="android:itemBackground"/>
  3979. <attr name="android:windowAnimationStyle"/>
  3980. <attr name="android:itemIconDisabledAlpha"/>
  3981. <attr format="boolean" name="preserveIconSpacing"/>
  3982. <attr format="reference" name="subMenuArrow"/>
  3983. </declare-styleable><declare-styleable name="AppBarLayout"><attr name="elevation"/><attr name="android:background"/><attr format="boolean" name="expanded"/><attr name="android:keyboardNavigationCluster"/><attr name="android:touchscreenBlocksFocus"/><attr format="boolean" name="liftOnScroll"/></declare-styleable><declare-styleable name="RecycleListView">
  3984. <attr format="dimension" name="paddingBottomNoButtons"/>
  3985. <attr format="dimension" name="paddingTopNoTitle"/>
  3986. </declare-styleable><declare-styleable name="Toolbar">
  3987. <attr format="reference" name="titleTextAppearance"/>
  3988. <attr format="reference" name="subtitleTextAppearance"/>
  3989. <attr name="title"/>
  3990. <attr name="subtitle"/>
  3991. <attr name="android:gravity"/>
  3992. <attr format="dimension" name="titleMargin"/>
  3993. <attr format="dimension" name="titleMarginStart"/>
  3994. <attr format="dimension" name="titleMarginEnd"/>
  3995. <attr format="dimension" name="titleMarginTop"/>
  3996. <attr format="dimension" name="titleMarginBottom"/>
  3997. <attr format="dimension" name="titleMargins"/>
  3998. <attr name="contentInsetStart"/>
  3999. <attr name="contentInsetEnd"/>
  4000. <attr name="contentInsetLeft"/>
  4001. <attr name="contentInsetRight"/>
  4002. <attr name="contentInsetStartWithNavigation"/>
  4003. <attr name="contentInsetEndWithActions"/>
  4004. <attr format="dimension" name="maxButtonHeight"/>
  4005. <attr name="buttonGravity">
  4006. <flag name="center_vertical" value="0x10"/>
  4007. <flag name="top" value="0x30"/>
  4008. <flag name="bottom" value="0x50"/>
  4009. </attr>
  4010. <attr format="reference" name="collapseIcon"/>
  4011. <attr format="string" name="collapseContentDescription"/>
  4012. <attr name="popupTheme"/>
  4013. <attr format="reference" name="navigationIcon"/>
  4014. <attr format="string" name="navigationContentDescription"/>
  4015. <attr name="logo"/>
  4016. <attr format="string" name="logoDescription"/>
  4017. <attr format="color" name="titleTextColor"/>
  4018. <attr format="color" name="subtitleTextColor"/>
  4019. <attr name="android:minHeight"/>
  4020. <attr format="reference" name="menu"/>
  4021. </declare-styleable><declare-styleable name="StateListDrawableItem">
  4022. <attr name="android:drawable"/>
  4023. </declare-styleable><declare-styleable name="AppCompatTextView">
  4024. <attr format="reference|boolean" name="textAllCaps"/>
  4025. <attr format="string" name="textLocale"/>
  4026. <attr name="android:textAppearance"/>
  4027. <attr format="enum" name="autoSizeTextType">
  4028. <enum name="none" value="0"/>
  4029. <enum name="uniform" value="1"/>
  4030. </attr>
  4031. <attr format="dimension" name="autoSizeStepGranularity"/>
  4032. <attr format="reference" name="autoSizePresetSizes"/>
  4033. <attr format="dimension" name="autoSizeMinTextSize"/>
  4034. <attr format="dimension" name="autoSizeMaxTextSize"/>
  4035. <attr format="string" name="fontFamily"/>
  4036. <attr format="dimension" name="lineHeight"/>
  4037. <attr format="dimension" name="firstBaselineToTopHeight"/>
  4038. <attr format="dimension" name="lastBaselineToBottomHeight"/>
  4039. <attr format="string" name="fontVariationSettings"/>
  4040. <attr format="reference" name="drawableLeftCompat"/>
  4041. <attr format="reference" name="drawableTopCompat"/>
  4042. <attr format="reference" name="drawableRightCompat"/>
  4043. <attr format="reference" name="drawableBottomCompat"/>
  4044. <attr format="reference" name="drawableStartCompat"/>
  4045. <attr format="reference" name="drawableEndCompat"/>
  4046. <attr format="color" name="drawableTint"/>
  4047. <attr name="drawableTintMode">
  4048. <enum name="src_over" value="3"/>
  4049. <enum name="src_in" value="5"/>
  4050. <enum name="src_atop" value="9"/>
  4051. <enum name="multiply" value="14"/>
  4052. <enum name="screen" value="15"/>
  4053. <enum name="add" value="16"/>
  4054. </attr>
  4055. </declare-styleable><declare-styleable name="CollapsingToolbarLayout_Layout"><attr name="layout_collapseMode">
  4056. <enum name="none" value="0"/>
  4057. <enum name="pin" value="1"/>
  4058. <enum name="parallax" value="2"/>
  4059. </attr><attr format="float" name="layout_collapseParallaxMultiplier"/></declare-styleable><declare-styleable name="DragSortListView">
  4060. <attr format="dimension" name="collapsed_height"/>
  4061. <attr format="float" name="drag_scroll_start"/>
  4062. <attr format="float" name="max_drag_scroll_speed"/>
  4063. <attr format="color" name="float_background_color"/>
  4064. <attr name="remove_mode">
  4065. <enum name="clickRemove" value="0"/>
  4066. <enum name="flingRemove" value="1"/>
  4067. </attr>
  4068. <attr format="boolean" name="track_drag_sort"/>
  4069. <attr format="float" name="float_alpha"/>
  4070. <attr format="float" name="slide_shuffle_speed"/>
  4071. <attr format="integer" name="remove_animation_duration"/>
  4072. <attr format="integer" name="drop_animation_duration"/>
  4073. <attr format="boolean" name="drag_enabled"/>
  4074. <attr format="boolean" name="sort_enabled"/>
  4075. <attr format="boolean" name="remove_enabled"/>
  4076. <attr name="drag_start_mode">
  4077. <enum name="onDown" value="0"/>
  4078. <enum name="onMove" value="1"/>
  4079. <enum name="onLongPress" value="2"/>
  4080. </attr>
  4081. <attr format="integer" name="drag_handle_id"/>
  4082. <attr format="integer" name="fling_handle_id"/>
  4083. <attr format="integer" name="click_remove_id"/>
  4084. <attr format="boolean" name="use_default_controller"/>
  4085. </declare-styleable><declare-styleable name="PopupWindowBackgroundState">
  4086. <attr format="boolean" name="state_above_anchor"/>
  4087. </declare-styleable><declare-styleable name="ActionMode">
  4088. <attr name="titleTextStyle"/>
  4089. <attr name="subtitleTextStyle"/>
  4090. <attr name="background"/>
  4091. <attr name="backgroundSplit"/>
  4092. <attr name="height"/>
  4093. <attr format="reference" name="closeItemLayout"/>
  4094. </declare-styleable><declare-styleable name="DatePicker">
  4095. <attr format="integer" name="firstDayOfWeek"/>
  4096. <attr format="string" name="minDate"/>
  4097. <attr format="string" name="maxDate"/>
  4098. <attr format="boolean" name="spinnersShown"/>
  4099. <attr format="boolean" name="calendarViewShown"/>
  4100. <attr format="reference" name="internalLayout"/>
  4101. <attr format="reference" name="legacyLayout"/>
  4102. <attr format="color" name="headerTextColor"/>
  4103. <attr format="reference" name="fat_aar_excluded_headerBackground"/>
  4104. <attr format="reference" name="yearListItemTextAppearance"/>
  4105. <attr format="reference" name="yearListItemActivatedTextAppearance"/>
  4106. <attr format="color" name="calendarTextColor"/>
  4107. <attr name="datePickerMode">
  4108. <enum name="spinner" value="1"/>
  4109. <enum name="calendar" value="2"/>
  4110. </attr>
  4111. <attr format="integer" name="startYear"/>
  4112. <attr format="integer" name="endYear"/>
  4113. <attr format="reference" name="headerMonthTextAppearance"/>
  4114. <attr format="reference" name="headerDayOfMonthTextAppearance"/>
  4115. <attr format="reference" name="headerYearTextAppearance"/>
  4116. <attr format="color" name="dayOfWeekBackground"/>
  4117. <attr format="reference" name="dayOfWeekTextAppearance"/>
  4118. <attr format="color" name="yearListSelectorColor"/>
  4119. </declare-styleable><declare-styleable name="Snackbar"><attr format="reference" name="snackbarStyle"/><attr format="reference" name="snackbarButtonStyle"/></declare-styleable><declare-styleable name="MaterialComponentsTheme"><attr name="colorAccent"/><attr name="colorPrimary"/><attr name="colorPrimaryDark"/><attr name="colorSecondary"/><attr name="scrimBackground"/><attr name="colorBackgroundFloating"/><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/><attr name="materialButtonStyle"/><attr name="chipGroupStyle"/><attr name="chipStyle"/><attr name="chipStandaloneStyle"/><attr name="editTextStyle"/><attr name="floatingActionButtonStyle"/><attr name="materialCardViewStyle"/><attr name="navigationViewStyle"/><attr name="tabStyle"/><attr name="textInputStyle"/><attr name="snackbarButtonStyle"/><attr name="textAppearanceHeadline1"/><attr name="textAppearanceHeadline2"/><attr name="textAppearanceHeadline3"/><attr name="textAppearanceHeadline4"/><attr name="textAppearanceHeadline5"/><attr name="textAppearanceHeadline6"/><attr name="textAppearanceSubtitle1"/><attr name="textAppearanceSubtitle2"/><attr name="textAppearanceBody1"/><attr name="textAppearanceBody2"/><attr name="textAppearanceCaption"/><attr name="textAppearanceButton"/><attr name="textAppearanceOverline"/></declare-styleable><declare-styleable name="AnimatedStateListDrawableCompat">
  4120. <attr name="android:visible"/>
  4121. <attr name="android:variablePadding"/>
  4122. <attr name="android:constantSize"/>
  4123. <attr name="android:dither"/>
  4124. <attr name="android:enterFadeDuration"/>
  4125. <attr name="android:exitFadeDuration"/>
  4126. </declare-styleable><declare-styleable name="Spinner">
  4127. <attr name="android:prompt"/>
  4128. <attr name="popupTheme"/>
  4129. <attr name="android:popupBackground"/>
  4130. <attr name="android:dropDownWidth"/>
  4131. <attr name="android:entries"/>
  4132. </declare-styleable><declare-styleable name="ConstraintLayout_placeholder"><attr name="emptyVisibility"/><attr name="content"/></declare-styleable><declare-styleable name="DrawerArrowToggle">
  4133. <attr format="color" name="color"/>
  4134. <attr format="boolean" name="spinBars"/>
  4135. <attr format="dimension" name="drawableSize"/>
  4136. <attr format="dimension" name="gapBetweenBars"/>
  4137. <attr format="dimension" name="arrowHeadLength"/>
  4138. <attr format="dimension" name="arrowShaftLength"/>
  4139. <attr format="dimension" name="barLength"/>
  4140. <attr format="dimension" name="thickness"/>
  4141. </declare-styleable><declare-styleable name="Chip"><attr format="color" name="chipBackgroundColor"/><attr format="dimension" name="chipMinHeight"/><attr format="dimension" name="chipCornerRadius"/><attr format="color" name="chipStrokeColor"/><attr format="dimension" name="chipStrokeWidth"/><attr name="rippleColor"/><attr name="android:text"/><attr name="android:textAppearance"/><attr name="android:ellipsize"/><attr name="android:maxWidth"/><attr format="boolean" name="chipIconVisible"/><attr format="boolean" name="chipIconEnabled"/><attr format="reference" name="chipIcon"/><attr format="color" name="chipIconTint"/><attr format="dimension" name="chipIconSize"/><attr format="boolean" name="closeIconVisible"/><attr format="boolean" name="closeIconEnabled"/><attr format="reference" name="closeIcon"/><attr format="color" name="closeIconTint"/><attr format="dimension" name="closeIconSize"/><attr name="android:checkable"/><attr format="boolean" name="checkedIconVisible"/><attr format="boolean" name="checkedIconEnabled"/><attr format="reference" name="checkedIcon"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/><attr format="dimension" name="chipStartPadding"/><attr format="dimension" name="iconStartPadding"/><attr format="dimension" name="iconEndPadding"/><attr format="dimension" name="textStartPadding"/><attr format="dimension" name="textEndPadding"/><attr format="dimension" name="closeIconStartPadding"/><attr format="dimension" name="closeIconEndPadding"/><attr format="dimension" name="chipEndPadding"/></declare-styleable><declare-styleable name="ActionBarLayout">
  4142. <attr name="android:layout_gravity"/>
  4143. </declare-styleable><declare-styleable name="NestedBounceView">
  4144. <attr format="boolean" name="isBounceEnable"/>
  4145. </declare-styleable><declare-styleable name="ViewPager2">
  4146. <attr name="android:orientation"/>
  4147. </declare-styleable><declare-styleable name="ViewStubCompat">
  4148. <attr name="android:layout"/>
  4149. <attr name="android:inflatedId"/>
  4150. <attr name="android:id"/>
  4151. </declare-styleable><declare-styleable name="SnackbarLayout"><attr name="android:maxWidth"/><attr name="elevation"/><attr format="dimension" name="maxActionInlineWidth"/></declare-styleable><declare-styleable name="MenuGroup">
  4152. <attr name="android:id"/>
  4153. <attr name="android:menuCategory"/>
  4154. <attr name="android:orderInCategory"/>
  4155. <attr name="android:checkableBehavior"/>
  4156. <attr name="android:visible"/>
  4157. <attr name="android:enabled"/>
  4158. </declare-styleable><declare-styleable name="FontFamily">
  4159. <attr format="string" name="fontProviderAuthority"/>
  4160. <attr format="string" name="fontProviderPackage"/>
  4161. <attr format="string" name="fontProviderQuery"/>
  4162. <attr format="reference" name="fontProviderCerts"/>
  4163. <attr name="fontProviderFetchStrategy">
  4164. <enum name="blocking" value="0"/>
  4165. <enum name="async" value="1"/>
  4166. </attr>
  4167. <attr format="integer" name="fontProviderFetchTimeout">
  4168. <enum name="forever" value="-1"/>
  4169. </attr>
  4170. </declare-styleable><declare-styleable name="RoundedImageView"><attr format="dimension" name="riv_corner_radius"/><attr format="dimension" name="riv_corner_radius_top_left"/><attr format="dimension" name="riv_corner_radius_top_right"/><attr format="dimension" name="riv_corner_radius_bottom_left"/><attr format="dimension" name="riv_corner_radius_bottom_right"/><attr format="dimension" name="riv_border_width"/><attr format="color" name="riv_border_color"/><attr format="boolean" name="riv_mutate_background"/><attr format="boolean" name="riv_oval"/><attr name="android:scaleType"/><attr name="riv_tile_mode">
  4171. <enum name="clamp" value="0"/>
  4172. <enum name="repeat" value="1"/>
  4173. <enum name="mirror" value="2"/>
  4174. </attr><attr name="riv_tile_mode_x">
  4175. <enum name="clamp" value="0"/>
  4176. <enum name="repeat" value="1"/>
  4177. <enum name="mirror" value="2"/>
  4178. </attr><attr name="riv_tile_mode_y">
  4179. <enum name="clamp" value="0"/>
  4180. <enum name="repeat" value="1"/>
  4181. <enum name="mirror" value="2"/>
  4182. </attr></declare-styleable><declare-styleable name="RoundProgressBtn">
  4183. <attr format="color" name="roundColor"/>
  4184. <attr format="dimension" name="roundwidth"/>
  4185. <attr format="color" name="progressColor"/>
  4186. <attr format="dimension" name="progressWidth"/>
  4187. <attr format="integer" name="max"/>
  4188. <attr format="integer" name="fat_aar_excluded_startAngle"/>
  4189. <attr format="integer" name="progress"/>
  4190. <attr format="boolean" name="hasPause"/>
  4191. </declare-styleable><declare-styleable name="ThemeEnforcement"><attr format="boolean" name="enforceMaterialTheme"/><attr format="boolean" name="enforceTextAppearance"/><attr name="android:textAppearance"/></declare-styleable><declare-styleable name="AppBarLayoutStates"><attr format="boolean" name="state_collapsed"/><attr format="boolean" name="state_collapsible"/><attr format="boolean" name="state_lifted"/><attr format="boolean" name="state_liftable"/></declare-styleable><declare-styleable name="BottomAppBar"><attr name="backgroundTint"/><attr name="fabAlignmentMode">
  4192. <enum name="center" value="0"/>
  4193. <enum name="end" value="1"/>
  4194. </attr><attr format="dimension" name="fabCradleMargin"/><attr format="dimension" name="fabCradleRoundedCornerRadius"/><attr format="dimension" name="fabCradleVerticalOffset"/><attr format="boolean" name="hideOnScroll"/></declare-styleable><declare-styleable name="CoordinatorLayout">
  4195. <attr format="reference" name="keylines"/>
  4196. <attr format="color|reference" name="statusBarBackground"/>
  4197. </declare-styleable><declare-styleable name="FontFamilyFont">
  4198. <attr name="fontStyle">
  4199. <enum name="normal" value="0"/>
  4200. <enum name="italic" value="1"/>
  4201. </attr>
  4202. <attr format="reference" name="font"/>
  4203. <attr format="integer" name="fontWeight"/>
  4204. <attr format="string" name="fontVariationSettings"/>
  4205. <attr format="integer" name="ttcIndex"/>
  4206. <attr name="android:fontStyle"/>
  4207. <attr name="android:font"/>
  4208. <attr name="android:fontWeight"/>
  4209. <attr name="android:fontVariationSettings"/>
  4210. <attr name="android:ttcIndex"/>
  4211. </declare-styleable><declare-styleable name="DesignTheme"><attr name="bottomSheetDialogTheme"/><attr name="bottomSheetStyle"/></declare-styleable><declare-styleable name="LinearLayoutCompat">
  4212. <attr name="android:orientation"/>
  4213. <attr name="android:gravity"/>
  4214. <attr name="android:baselineAligned"/>
  4215. <attr name="android:baselineAlignedChildIndex"/>
  4216. <attr name="android:weightSum"/>
  4217. <attr format="boolean" name="measureWithLargestChild"/>
  4218. <attr name="divider"/>
  4219. <attr name="showDividers">
  4220. <flag name="none" value="0"/>
  4221. <flag name="beginning" value="1"/>
  4222. <flag name="middle" value="2"/>
  4223. <flag name="end" value="4"/>
  4224. </attr>
  4225. <attr format="dimension" name="dividerPadding"/>
  4226. </declare-styleable><declare-styleable name="FloatingActionButton_Behavior_Layout"><attr format="boolean" name="behavior_autoHide"/></declare-styleable><declare-styleable name="RecyclerView">
  4227. <attr format="string" name="layoutManager"/>
  4228. <eat-comment/>
  4229. <attr name="android:orientation"/>
  4230. <attr name="android:descendantFocusability"/>
  4231. <attr name="android:clipToPadding"/>
  4232. <attr format="integer" name="spanCount"/>
  4233. <attr format="boolean" name="reverseLayout"/>
  4234. <attr format="boolean" name="stackFromEnd"/>
  4235. <attr format="boolean" name="fastScrollEnabled"/>
  4236. <attr format="reference" name="fastScrollVerticalThumbDrawable"/>
  4237. <attr format="reference" name="fastScrollVerticalTrackDrawable"/>
  4238. <attr format="reference" name="fastScrollHorizontalThumbDrawable"/>
  4239. <attr format="reference" name="fastScrollHorizontalTrackDrawable"/>
  4240. </declare-styleable><declare-styleable name="ActionMenuView">
  4241. </declare-styleable><declare-styleable name="ChipGroup"><attr format="dimension" name="chipSpacing"/><attr format="dimension" name="chipSpacingHorizontal"/><attr format="dimension" name="chipSpacingVertical"/><attr format="boolean" name="singleLine"/><attr format="boolean" name="singleSelection"/><attr format="reference" name="checkedChip"/></declare-styleable><declare-styleable name="CompoundButton">
  4242. <attr name="android:button"/>
  4243. <attr format="reference" name="buttonCompat"/>
  4244. <attr format="color" name="buttonTint"/>
  4245. <attr name="buttonTintMode">
  4246. <enum name="src_over" value="3"/>
  4247. <enum name="src_in" value="5"/>
  4248. <enum name="src_atop" value="9"/>
  4249. <enum name="multiply" value="14"/>
  4250. <enum name="screen" value="15"/>
  4251. <enum name="add" value="16"/>
  4252. </attr>
  4253. </declare-styleable><declare-styleable name="AppCompatTextHelper">
  4254. <attr name="android:drawableLeft"/>
  4255. <attr name="android:drawableTop"/>
  4256. <attr name="android:drawableRight"/>
  4257. <attr name="android:drawableBottom"/>
  4258. <attr name="android:drawableStart"/>
  4259. <attr name="android:drawableEnd"/>
  4260. <attr name="android:textAppearance"/>
  4261. </declare-styleable><declare-styleable name="AppCompatSeekBar">
  4262. <attr name="android:thumb"/>
  4263. <attr format="reference" name="tickMark"/>
  4264. <attr format="color" name="tickMarkTint"/>
  4265. <attr name="tickMarkTintMode">
  4266. <enum name="src_over" value="3"/>
  4267. <enum name="src_in" value="5"/>
  4268. <enum name="src_atop" value="9"/>
  4269. <enum name="multiply" value="14"/>
  4270. <enum name="screen" value="15"/>
  4271. <enum name="add" value="16"/>
  4272. </attr>
  4273. </declare-styleable><declare-styleable name="CoordinatorLayout_Layout">
  4274. <attr name="android:layout_gravity"/>
  4275. <attr format="string" name="layout_behavior"/>
  4276. <attr format="reference" name="layout_anchor"/>
  4277. <attr format="integer" name="layout_keyline"/>
  4278. <attr name="layout_anchorGravity">
  4279. <flag name="top" value="0x30"/>
  4280. <flag name="bottom" value="0x50"/>
  4281. <flag name="left" value="0x03"/>
  4282. <flag name="right" value="0x05"/>
  4283. <flag name="center_vertical" value="0x10"/>
  4284. <flag name="fill_vertical" value="0x70"/>
  4285. <flag name="center_horizontal" value="0x01"/>
  4286. <flag name="fill_horizontal" value="0x07"/>
  4287. <flag name="center" value="0x11"/>
  4288. <flag name="fill" value="0x77"/>
  4289. <flag name="clip_vertical" value="0x80"/>
  4290. <flag name="clip_horizontal" value="0x08"/>
  4291. <flag name="start" value="0x00800003"/>
  4292. <flag name="end" value="0x00800005"/>
  4293. </attr>
  4294. <attr format="enum" name="layout_insetEdge">
  4295. <enum name="none" value="0x0"/>
  4296. <enum name="top" value="0x30"/>
  4297. <enum name="bottom" value="0x50"/>
  4298. <enum name="left" value="0x03"/>
  4299. <enum name="right" value="0x05"/>
  4300. <enum name="start" value="0x00800003"/>
  4301. <enum name="end" value="0x00800005"/>
  4302. </attr>
  4303. <attr name="layout_dodgeInsetEdges">
  4304. <flag name="none" value="0x0"/>
  4305. <flag name="top" value="0x30"/>
  4306. <flag name="bottom" value="0x50"/>
  4307. <flag name="left" value="0x03"/>
  4308. <flag name="right" value="0x05"/>
  4309. <flag name="start" value="0x00800003"/>
  4310. <flag name="end" value="0x00800005"/>
  4311. <flag name="all" value="0x77"/>
  4312. </attr>
  4313. </declare-styleable><declare-styleable name="NavigationView"><attr name="android:background"/><attr name="android:fitsSystemWindows"/><attr name="android:maxWidth"/><attr name="elevation"/><attr format="reference" name="menu"/><attr format="color" name="itemIconTint"/><attr format="color" name="itemTextColor"/><attr format="reference" name="itemBackground"/><attr format="reference" name="itemTextAppearance"/><attr format="reference" name="headerLayout"/><attr format="dimension" name="itemHorizontalPadding"/><attr format="dimension" name="itemIconPadding"/></declare-styleable><declare-styleable name="PictureLongScaleImageView">
  4314. <attr format="reference" name="src"/>
  4315. <attr format="string" name="assetName"/>
  4316. <attr format="boolean" name="panEnabled"/>
  4317. <attr format="boolean" name="zoomEnabled"/>
  4318. <attr format="boolean" name="quickScaleEnabled"/>
  4319. <attr format="color" name="tileBackgroundColor"/>
  4320. </declare-styleable><declare-styleable name="GradientColor">
  4321. <attr name="android:startColor"/>
  4322. <attr name="android:centerColor"/>
  4323. <attr name="android:endColor"/>
  4324. <attr name="android:type"/>
  4325. <attr name="android:gradientRadius"/>
  4326. <attr name="android:centerX"/>
  4327. <attr name="android:centerY"/>
  4328. <attr name="android:startX"/>
  4329. <attr name="android:startY"/>
  4330. <attr name="android:endX"/>
  4331. <attr name="android:endY"/>
  4332. <attr name="android:tileMode"/>
  4333. </declare-styleable><declare-styleable name="WheelView">
  4334. <attr name="fat_aar_excluded_wheelview_gravity">
  4335. <enum name="center" value="17"/>
  4336. <enum name="left" value="3"/>
  4337. <enum name="right" value="5"/>
  4338. </attr>
  4339. <attr format="dimension" name="wheelview_textSize"/>
  4340. <attr format="color" name="wheelview_textColorOut"/>
  4341. <attr format="color" name="wheelview_textColorCenter"/>
  4342. <attr format="color" name="wheelview_dividerColor"/>
  4343. <attr format="float" name="wheelview_lineSpacingMultiplier"/>
  4344. </declare-styleable><declare-styleable name="CellTextView">
  4345. <attr name="android:textSize"/>
  4346. <attr name="android:textColor"/>
  4347. <attr name="android:maxLines"/>
  4348. <attr name="android:maxWidth"/>
  4349. <attr name="android:maxHeight"/>
  4350. <attr name="android:gravity"/>
  4351. <attr name="android:minWidth"/>
  4352. <attr name="android:singleLine"/>
  4353. <attr name="android:text"/>
  4354. <attr name="android:background"/>
  4355. <attr name="android:textStyle"/>
  4356. <attr name="android:minHeight"/>
  4357. <attr name="android:fontFamily"/>
  4358. <attr name="android:typeface"/>
  4359. <attr name="android:lineSpacingExtra"/>
  4360. <attr name="android:paddingLeft"/>
  4361. <attr name="android:paddingRight"/>
  4362. <attr name="android:paddingTop"/>
  4363. <attr name="android:paddingBottom"/>
  4364. </declare-styleable><declare-styleable name="AnimatedStateListDrawableItem">
  4365. <attr name="android:drawable"/>
  4366. <attr name="android:id"/>
  4367. </declare-styleable><declare-styleable name="ScrollingViewBehavior_Layout"><attr format="dimension" name="behavior_overlapTop"/></declare-styleable><declare-styleable name="TextInputLayout"><attr name="android:textColorHint"/><attr name="android:hint"/><attr format="boolean" name="hintEnabled"/><attr format="boolean" name="hintAnimationEnabled"/><attr format="reference" name="hintTextAppearance"/><attr format="string" name="helperText"/><attr format="boolean" name="helperTextEnabled"/><attr format="reference" name="helperTextTextAppearance"/><attr format="boolean" name="errorEnabled"/><attr format="reference" name="errorTextAppearance"/><attr format="boolean" name="counterEnabled"/><attr format="integer" name="counterMaxLength"/><attr format="reference" name="counterTextAppearance"/><attr format="reference" name="counterOverflowTextAppearance"/><attr format="boolean" name="passwordToggleEnabled"/><attr format="reference" name="passwordToggleDrawable"/><attr format="string" name="passwordToggleContentDescription"/><attr format="color" name="passwordToggleTint"/><attr name="passwordToggleTintMode">
  4368. <enum name="src_over" value="3"/>
  4369. <enum name="src_in" value="5"/>
  4370. <enum name="src_atop" value="9"/>
  4371. <enum name="multiply" value="14"/>
  4372. <enum name="screen" value="15"/>
  4373. </attr><attr name="boxBackgroundMode">
  4374. <enum name="none" value="0"/>
  4375. <enum name="filled" value="1"/>
  4376. <enum name="outline" value="2"/>
  4377. </attr><attr format="dimension" name="boxCollapsedPaddingTop"/><attr format="dimension" name="boxCornerRadiusTopStart"/><attr format="dimension" name="boxCornerRadiusTopEnd"/><attr format="dimension" name="boxCornerRadiusBottomStart"/><attr format="dimension" name="boxCornerRadiusBottomEnd"/><attr format="color" name="boxStrokeColor"/><attr format="color" name="boxBackgroundColor"/><attr format="dimension" name="boxStrokeWidth"/></declare-styleable><declare-styleable name="WeImageBtn">
  4378. <attr format="color" name="btnIconColor"/>
  4379. <attr format="float" name="btnIconAlpha"/>
  4380. </declare-styleable><declare-styleable name="ActionBar">
  4381. <attr name="navigationMode">
  4382. <enum name="normal" value="0"/>
  4383. <enum name="listMode" value="1"/>
  4384. <enum name="tabMode" value="2"/>
  4385. </attr>
  4386. <attr name="displayOptions">
  4387. <flag name="none" value="0"/>
  4388. <flag name="useLogo" value="0x1"/>
  4389. <flag name="showHome" value="0x2"/>
  4390. <flag name="homeAsUp" value="0x4"/>
  4391. <flag name="showTitle" value="0x8"/>
  4392. <flag name="showCustom" value="0x10"/>
  4393. <flag name="disableHome" value="0x20"/>
  4394. </attr>
  4395. <attr name="title"/>
  4396. <attr format="string" name="subtitle"/>
  4397. <attr format="reference" name="titleTextStyle"/>
  4398. <attr format="reference" name="subtitleTextStyle"/>
  4399. <attr format="reference" name="icon"/>
  4400. <attr format="reference" name="logo"/>
  4401. <attr format="reference" name="divider"/>
  4402. <attr format="reference" name="background"/>
  4403. <attr format="reference|color" name="backgroundStacked"/>
  4404. <attr format="reference|color" name="backgroundSplit"/>
  4405. <attr format="reference" name="customNavigationLayout"/>
  4406. <attr name="height"/>
  4407. <attr format="reference" name="homeLayout"/>
  4408. <attr format="reference" name="progressBarStyle"/>
  4409. <attr format="reference" name="indeterminateProgressStyle"/>
  4410. <attr format="dimension" name="progressBarPadding"/>
  4411. <attr name="homeAsUpIndicator"/>
  4412. <attr format="dimension" name="itemPadding"/>
  4413. <attr format="boolean" name="hideOnContentScroll"/>
  4414. <attr format="dimension" name="contentInsetStart"/>
  4415. <attr format="dimension" name="contentInsetEnd"/>
  4416. <attr format="dimension" name="contentInsetLeft"/>
  4417. <attr format="dimension" name="contentInsetRight"/>
  4418. <attr format="dimension" name="contentInsetStartWithNavigation"/>
  4419. <attr format="dimension" name="contentInsetEndWithActions"/>
  4420. <attr format="dimension" name="elevation"/>
  4421. <attr format="reference" name="popupTheme"/>
  4422. </declare-styleable><declare-styleable name="ActionMenuItemView">
  4423. <attr name="android:minWidth"/>
  4424. </declare-styleable><declare-styleable name="FragmentContainerView">
  4425. <attr name="android:name"/>
  4426. <attr name="android:tag"/>
  4427. </declare-styleable><declare-styleable name="WeImageView">
  4428. <attr format="color" name="iconColor"/>
  4429. <attr format="float" name="iconAlpha"/>
  4430. </declare-styleable><declare-styleable name="LinearLayoutCompat_Layout">
  4431. <attr name="android:layout_width"/>
  4432. <attr name="android:layout_height"/>
  4433. <attr name="android:layout_weight"/>
  4434. <attr name="android:layout_gravity"/>
  4435. </declare-styleable><declare-styleable name="CardView">
  4436. <attr format="color" name="cardBackgroundColor"/>
  4437. <attr format="dimension" name="cardCornerRadius"/>
  4438. <attr format="dimension" name="cardElevation"/>
  4439. <attr format="dimension" name="cardMaxElevation"/>
  4440. <attr format="boolean" name="cardUseCompatPadding"/>
  4441. <attr format="boolean" name="cardPreventCornerOverlap"/>
  4442. <attr format="dimension" name="contentPadding"/>
  4443. <attr format="dimension" name="contentPaddingLeft"/>
  4444. <attr format="dimension" name="contentPaddingRight"/>
  4445. <attr format="dimension" name="contentPaddingTop"/>
  4446. <attr format="dimension" name="contentPaddingBottom"/>
  4447. <attr name="android:minWidth"/>
  4448. <attr name="android:minHeight"/>
  4449. </declare-styleable><declare-styleable name="ButtonBarLayout">
  4450. <attr format="boolean" name="allowStacking"/>
  4451. </declare-styleable><declare-styleable name="ViewBackgroundHelper">
  4452. <attr name="android:background"/>
  4453. <attr format="color" name="backgroundTint"/>
  4454. <attr name="backgroundTintMode">
  4455. <enum name="src_over" value="3"/>
  4456. <enum name="src_in" value="5"/>
  4457. <enum name="src_atop" value="9"/>
  4458. <enum name="multiply" value="14"/>
  4459. <enum name="screen" value="15"/>
  4460. <enum name="add" value="16"/>
  4461. </attr>
  4462. </declare-styleable><declare-styleable name="ConstraintSet"><attr name="android:orientation"/><attr name="android:id"/><attr name="android:visibility"/><attr name="android:alpha"/><attr name="android:elevation"/><attr name="android:rotation"/><attr name="android:rotationX"/><attr name="android:rotationY"/><attr name="android:scaleX"/><attr name="android:scaleY"/><attr name="android:transformPivotX"/><attr name="android:transformPivotY"/><attr name="android:translationX"/><attr name="android:translationY"/><attr name="android:translationZ"/><attr name="android:layout_width"/><attr name="android:layout_height"/><attr name="android:layout_marginStart"/><attr name="android:layout_marginBottom"/><attr name="android:layout_marginTop"/><attr name="android:layout_marginEnd"/><attr name="android:layout_marginLeft"/><attr name="android:layout_marginRight"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/><attr name="barrierDirection"/><attr name="constraint_referenced_ids"/><attr name="android:maxHeight"/><attr name="android:maxWidth"/><attr name="android:minHeight"/><attr name="android:minWidth"/><attr name="barrierAllowsGoneWidgets"/><attr name="chainUseRtl"/></declare-styleable><declare-styleable name="AppCompatImageView">
  4463. <attr name="android:src"/>
  4464. <attr format="reference" name="srcCompat"/>
  4465. <attr format="color" name="tint"/>
  4466. <attr name="tintMode">
  4467. <enum name="src_over" value="3"/>
  4468. <enum name="src_in" value="5"/>
  4469. <enum name="src_atop" value="9"/>
  4470. <enum name="multiply" value="14"/>
  4471. <enum name="screen" value="15"/>
  4472. <enum name="add" value="16"/>
  4473. </attr>
  4474. </declare-styleable><declare-styleable name="EllipsizeLayout">
  4475. <attr format="boolean" name="center_ellipsize_textview"/>
  4476. </declare-styleable><declare-styleable name="ConstraintLayout_Layout"><attr name="android:orientation"/><attr name="android:minWidth"/><attr name="android:minHeight"/><attr name="android:maxWidth"/><attr name="android:maxHeight"/><attr name="layout_optimizationLevel"/><attr name="constraintSet"/><attr name="barrierDirection"/><attr name="barrierAllowsGoneWidgets"/><attr name="constraint_referenced_ids"/><attr name="chainUseRtl"/><attr name="layout_constraintCircle"/><attr name="layout_constraintCircleRadius"/><attr name="layout_constraintCircleAngle"/><attr name="layout_constraintGuide_begin"/><attr name="layout_constraintGuide_end"/><attr name="layout_constraintGuide_percent"/><attr name="layout_constraintLeft_toLeftOf"/><attr name="layout_constraintLeft_toRightOf"/><attr name="layout_constraintRight_toLeftOf"/><attr name="layout_constraintRight_toRightOf"/><attr name="layout_constraintTop_toTopOf"/><attr name="layout_constraintTop_toBottomOf"/><attr name="layout_constraintBottom_toTopOf"/><attr name="layout_constraintBottom_toBottomOf"/><attr name="layout_constraintBaseline_toBaselineOf"/><attr name="layout_constraintStart_toEndOf"/><attr name="layout_constraintStart_toStartOf"/><attr name="layout_constraintEnd_toStartOf"/><attr name="layout_constraintEnd_toEndOf"/><attr name="layout_goneMarginLeft"/><attr name="layout_goneMarginTop"/><attr name="layout_goneMarginRight"/><attr name="layout_goneMarginBottom"/><attr name="layout_goneMarginStart"/><attr name="layout_goneMarginEnd"/><attr name="layout_constrainedWidth"/><attr name="layout_constrainedHeight"/><attr name="layout_constraintHorizontal_bias"/><attr name="layout_constraintVertical_bias"/><attr name="layout_constraintWidth_default"/><attr name="layout_constraintHeight_default"/><attr name="layout_constraintWidth_min"/><attr name="layout_constraintWidth_max"/><attr name="layout_constraintWidth_percent"/><attr name="layout_constraintHeight_min"/><attr name="layout_constraintHeight_max"/><attr name="layout_constraintHeight_percent"/><attr name="layout_constraintLeft_creator"/><attr name="layout_constraintTop_creator"/><attr name="layout_constraintRight_creator"/><attr name="layout_constraintBottom_creator"/><attr name="layout_constraintBaseline_creator"/><attr name="layout_constraintDimensionRatio"/><attr name="layout_constraintHorizontal_weight"/><attr name="layout_constraintVertical_weight"/><attr name="layout_constraintHorizontal_chainStyle"/><attr name="layout_constraintVertical_chainStyle"/><attr name="layout_editor_absoluteX"/><attr name="layout_editor_absoluteY"/></declare-styleable><declare-styleable name="toyBrick">
  4477. <attr format="string" name="identity"/>
  4478. <attr format="string" name="title"/>
  4479. <attr format="string" name="rightDesc"/>
  4480. <attr format="string" name="summary"/>
  4481. <attr format="dimension" name="fat_aar_excluded_space"/>
  4482. <attr format="boolean" name="checked"/>
  4483. <attr format="boolean" name="isVisible"/>
  4484. <attr format="boolean" name="rightArrowEnable"/>
  4485. <attr format="reference" name="icon"/>
  4486. <attr format="reference" name="rightIcon"/>
  4487. <attr format="integer" name="prospectNum"/>
  4488. <attr format="reference" name="prospectStyle">
  4489. <enum name="NONE" value="0"/>
  4490. <enum name="RED_NEW" value="1"/>
  4491. <enum name="RED_DOT" value="2"/>
  4492. <enum name="RED_NUM" value="3"/>
  4493. </attr>
  4494. </declare-styleable><declare-styleable name="ProgressLoading">
  4495. <attr format="color" name="loadProgressColor"/>
  4496. <attr format="integer" name="loadMax"/>
  4497. <attr format="integer" name="loadStartAngle"/>
  4498. <attr format="integer" name="loadprogress"/>
  4499. </declare-styleable><declare-styleable name="TabItem"><attr name="android:text"/><attr name="android:icon"/><attr name="android:layout"/></declare-styleable><declare-styleable name="SwitchCompat">
  4500. <attr name="android:thumb"/>
  4501. <attr format="color" name="thumbTint"/>
  4502. <attr name="thumbTintMode">
  4503. <enum name="src_over" value="3"/>
  4504. <enum name="src_in" value="5"/>
  4505. <enum name="src_atop" value="9"/>
  4506. <enum name="multiply" value="14"/>
  4507. <enum name="screen" value="15"/>
  4508. <enum name="add" value="16"/>
  4509. </attr>
  4510. <attr format="reference" name="track"/>
  4511. <attr format="color" name="trackTint"/>
  4512. <attr name="trackTintMode">
  4513. <enum name="src_over" value="3"/>
  4514. <enum name="src_in" value="5"/>
  4515. <enum name="src_atop" value="9"/>
  4516. <enum name="multiply" value="14"/>
  4517. <enum name="screen" value="15"/>
  4518. <enum name="add" value="16"/>
  4519. </attr>
  4520. <attr name="android:textOn"/>
  4521. <attr name="android:textOff"/>
  4522. <attr format="dimension" name="thumbTextPadding"/>
  4523. <attr format="reference" name="switchTextAppearance"/>
  4524. <attr format="dimension" name="switchMinWidth"/>
  4525. <attr format="dimension" name="switchPadding"/>
  4526. <attr format="boolean" name="splitTrack"/>
  4527. <attr format="boolean" name="showText"/>
  4528. </declare-styleable><declare-styleable name="TenPayRelativeLayout">
  4529. <attr format="string" name="TenPayAccessibilityClassName"/>
  4530. </declare-styleable><declare-styleable name="FormItemView">
  4531. <attr format="reference" name="form_layout"/>
  4532. <attr format="string" name="form_title"/>
  4533. <attr format="string" name="form_hint"/>
  4534. <attr format="string" name="form_btn_title"/>
  4535. </declare-styleable><declare-styleable name="FlowLayout"><attr format="dimension" name="itemSpacing"/><attr format="dimension" name="lineSpacing"/></declare-styleable><declare-styleable name="AppBarLayout_Layout"><attr name="layout_scrollFlags">
  4536. <flag name="scroll" value="0x1"/>
  4537. <flag name="exitUntilCollapsed" value="0x2"/>
  4538. <flag name="enterAlways" value="0x4"/>
  4539. <flag name="enterAlwaysCollapsed" value="0x8"/>
  4540. <flag name="snap" value="0x10"/>
  4541. <flag name="snapMargins" value="0x20"/>
  4542. </attr><attr format="reference" name="layout_scrollInterpolator"/></declare-styleable><declare-styleable name="ColorStateListItem">
  4543. <attr name="android:color"/>
  4544. <attr format="float" name="alpha"/>
  4545. <attr name="android:alpha"/>
  4546. </declare-styleable><declare-styleable name="PopupWindow">
  4547. <attr format="boolean" name="overlapAnchor"/>
  4548. <attr name="android:popupBackground"/>
  4549. <attr name="android:popupAnimationStyle"/>
  4550. </declare-styleable><declare-styleable name="StateListDrawable">
  4551. <attr name="android:visible"/>
  4552. <attr name="android:variablePadding"/>
  4553. <attr name="android:constantSize"/>
  4554. <attr name="android:dither"/>
  4555. <attr name="android:enterFadeDuration"/>
  4556. <attr name="android:exitFadeDuration"/>
  4557. </declare-styleable><declare-styleable name="MaterialButton"><attr name="android:insetLeft"/><attr name="android:insetRight"/><attr name="android:insetTop"/><attr name="android:insetBottom"/><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr format="reference" name="icon"/><attr format="dimension" name="iconSize"/><attr format="dimension" name="iconPadding"/><attr name="iconGravity">
  4558. <flag name="start" value="0x1"/>
  4559. <flag name="textStart" value="0x2"/>
  4560. </attr><attr format="color" name="iconTint"/><attr name="iconTintMode"/><attr name="strokeColor"/><attr name="strokeWidth"/><attr format="dimension" name="cornerRadius"/><attr name="rippleColor"/></declare-styleable><declare-styleable name="ActivityChooserView">
  4561. <attr format="string" name="initialActivityCount"/>
  4562. <attr format="reference" name="expandActivityOverflowButtonDrawable"/>
  4563. </declare-styleable><declare-styleable name="ListPopupWindow">
  4564. <attr name="android:dropDownVerticalOffset"/>
  4565. <attr name="android:dropDownHorizontalOffset"/>
  4566. </declare-styleable><declare-styleable name="PictureRoundCornerRelativeLayout">
  4567. <attr format="dimension" name="psCorners"/>
  4568. <attr format="boolean" name="psTopNormal"/>
  4569. <attr format="boolean" name="psBottomNormal"/>
  4570. </declare-styleable><declare-styleable name="BottomNavigationView"><attr name="menu"/><attr name="labelVisibilityMode">
  4571. <enum name="auto" value="-1"/>
  4572. <enum name="selected" value="0"/>
  4573. <enum name="labeled" value="1"/>
  4574. <enum name="unlabeled" value="2"/>
  4575. </attr><attr name="itemBackground"/><attr format="dimension" name="itemIconSize"/><attr name="itemIconTint"/><attr format="reference" name="itemTextAppearanceInactive"/><attr format="reference" name="itemTextAppearanceActive"/><attr name="itemTextColor"/><attr format="boolean" name="itemHorizontalTranslationEnabled"/><attr name="elevation"/></declare-styleable><declare-styleable name="TextAppearance">
  4576. <attr name="android:textSize"/>
  4577. <attr name="android:textColor"/>
  4578. <attr name="android:textColorHint"/>
  4579. <attr name="android:textColorLink"/>
  4580. <attr name="android:textStyle"/>
  4581. <attr name="android:textFontWeight"/>
  4582. <attr name="android:typeface"/>
  4583. <attr name="android:fontFamily"/>
  4584. <attr name="fontFamily"/>
  4585. <attr name="textAllCaps"/>
  4586. <attr name="textLocale"/>
  4587. <attr name="android:shadowColor"/>
  4588. <attr name="android:shadowDy"/>
  4589. <attr name="android:shadowDx"/>
  4590. <attr name="android:shadowRadius"/>
  4591. <attr name="fontVariationSettings"/>
  4592. </declare-styleable><declare-styleable name="TabLayout"><attr format="color" name="tabIndicatorColor"/><attr format="dimension" name="tabIndicatorHeight"/><attr format="dimension" name="tabContentStart"/><attr format="reference" name="tabBackground"/><attr format="reference" name="tabIndicator"/><attr name="tabIndicatorGravity">
  4593. <enum name="bottom" value="0"/>
  4594. <enum name="center" value="1"/>
  4595. <enum name="top" value="2"/>
  4596. <enum name="stretch" value="3"/>
  4597. </attr><attr format="integer" name="tabIndicatorAnimationDuration"/><attr format="boolean" name="tabIndicatorFullWidth"/><attr name="tabMode">
  4598. <enum name="scrollable" value="0"/>
  4599. <enum name="fixed" value="1"/>
  4600. </attr><attr name="tabGravity">
  4601. <enum name="fill" value="0"/>
  4602. <enum name="center" value="1"/>
  4603. </attr><attr format="boolean" name="tabInlineLabel"/><attr format="dimension" name="tabMinWidth"/><attr format="dimension" name="tabMaxWidth"/><attr format="reference" name="tabTextAppearance"/><attr format="color" name="tabTextColor"/><attr format="color" name="tabSelectedTextColor"/><attr format="dimension" name="tabPaddingStart"/><attr format="dimension" name="tabPaddingTop"/><attr format="dimension" name="tabPaddingEnd"/><attr format="dimension" name="tabPaddingBottom"/><attr format="dimension" name="tabPadding"/><attr format="color" name="tabIconTint"/><attr name="tabIconTintMode">
  4604. <enum name="src_over" value="3"/>
  4605. <enum name="src_in" value="5"/>
  4606. <enum name="src_atop" value="9"/>
  4607. <enum name="multiply" value="14"/>
  4608. <enum name="screen" value="15"/>
  4609. <enum name="add" value="16"/>
  4610. </attr><attr format="color" name="tabRippleColor"/><attr format="boolean" name="tabUnboundedRipple"/></declare-styleable><declare-styleable name="FloatingActionButton"><attr name="backgroundTint"/><attr name="backgroundTintMode"/><attr name="rippleColor"/><attr name="fabSize">
  4611. <enum name="auto" value="-1"/>
  4612. <enum name="normal" value="0"/>
  4613. <enum name="mini" value="1"/>
  4614. </attr><attr format="dimension" name="fabCustomSize"/><attr name="elevation"/><attr format="dimension" name="hoveredFocusedTranslationZ"/><attr format="dimension" name="pressedTranslationZ"/><attr format="dimension" name="borderWidth"/><attr format="boolean" name="useCompatPadding"/><attr format="dimension" name="maxImageSize"/><attr name="showMotionSpec"/><attr name="hideMotionSpec"/></declare-styleable><declare-styleable name="PictureMediumBoldTextView">
  4615. <attr format="float" name="stroke_Width"/>
  4616. </declare-styleable><declare-styleable name="NeatTextView"><attr name="android:textSize"/><attr name="android:textColor"/><attr name="android:maxLines"/><attr name="android:lines"/><attr name="android:maxWidth"/><attr name="android:gravity"/><attr name="android:minWidth"/><attr name="android:singleLine"/><attr name="android:text"/><attr name="android:background"/><attr name="android:textStyle"/><attr name="android:minHeight"/><attr name="android:maxHeight"/><attr name="android:fontFamily"/><attr name="android:typeface"/><attr name="android:lineSpacingExtra"/><attr name="android:paddingLeft"/><attr name="android:paddingRight"/><attr name="android:paddingTop"/><attr name="android:paddingBottom"/><attr name="android:width"/><attr name="android:height"/><attr name="android:hint"/><attr name="android:textColorHint"/><attr name="android:textColorLink"/><attr name="android:ellipsize"/><attr format="boolean" name="smartLetter"/></declare-styleable><declare-styleable name="ThreeDotsLoadingView">
  4617. <attr format="color" name="dotColor"/>
  4618. </declare-styleable><declare-styleable name="MenuItem">
  4619. <attr name="android:id"/>
  4620. <attr name="android:menuCategory"/>
  4621. <attr name="android:orderInCategory"/>
  4622. <attr name="android:title"/>
  4623. <attr name="android:titleCondensed"/>
  4624. <attr name="android:icon"/>
  4625. <attr name="android:alphabeticShortcut"/>
  4626. <attr name="alphabeticModifiers">
  4627. <flag name="META" value="0x10000"/>
  4628. <flag name="CTRL" value="0x1000"/>
  4629. <flag name="ALT" value="0x02"/>
  4630. <flag name="SHIFT" value="0x1"/>
  4631. <flag name="SYM" value="0x4"/>
  4632. <flag name="FUNCTION" value="0x8"/>
  4633. </attr>
  4634. <attr name="android:numericShortcut"/>
  4635. <attr name="numericModifiers">
  4636. <flag name="META" value="0x10000"/>
  4637. <flag name="CTRL" value="0x1000"/>
  4638. <flag name="ALT" value="0x02"/>
  4639. <flag name="SHIFT" value="0x1"/>
  4640. <flag name="SYM" value="0x4"/>
  4641. <flag name="FUNCTION" value="0x8"/>
  4642. </attr>
  4643. <attr name="android:checkable"/>
  4644. <attr name="android:checked"/>
  4645. <attr name="android:visible"/>
  4646. <attr name="android:enabled"/>
  4647. <attr name="android:onClick"/>
  4648. <attr name="showAsAction">
  4649. <flag name="never" value="0"/>
  4650. <flag name="ifRoom" value="1"/>
  4651. <flag name="always" value="2"/>
  4652. <flag name="withText" value="4"/>
  4653. <flag name="collapseActionView" value="8"/>
  4654. </attr>
  4655. <attr format="reference" name="actionLayout"/>
  4656. <attr format="string" name="actionViewClass"/>
  4657. <attr format="string" name="actionProviderClass"/>
  4658. <attr format="string" name="contentDescription"/>
  4659. <attr format="string" name="tooltipText"/>
  4660. <attr format="color" name="iconTint"/>
  4661. <attr name="iconTintMode">
  4662. <enum name="src_over" value="3"/>
  4663. <enum name="src_in" value="5"/>
  4664. <enum name="src_atop" value="9"/>
  4665. <enum name="multiply" value="14"/>
  4666. <enum name="screen" value="15"/>
  4667. <enum name="add" value="16"/>
  4668. </attr>
  4669. </declare-styleable><declare-styleable name="LinearConstraintLayout"><attr name="android:orientation"/></declare-styleable><declare-styleable name="AnimatedStateListDrawableTransition">
  4670. <attr name="android:fromId"/>
  4671. <attr name="android:toId"/>
  4672. <attr name="android:drawable"/>
  4673. <attr name="android:reversible"/>
  4674. </declare-styleable><declare-styleable name="View">
  4675. <attr format="dimension" name="paddingStart"/>
  4676. <attr format="dimension" name="paddingEnd"/>
  4677. <attr name="android:focusable"/>
  4678. <attr format="reference" name="theme"/>
  4679. <attr name="android:theme"/>
  4680. </declare-styleable><declare-styleable name="SwipeBackLayout"><attr format="dimension" name="edge_size"/><attr name="edge_flag">
  4681. <enum name="left" value="0"/>
  4682. <enum name="right" value="1"/>
  4683. <enum name="bottom" value="2"/>
  4684. <enum name="all" value="3"/>
  4685. </attr><attr format="reference" name="shadow_left"/><attr format="reference" name="shadow_right"/><attr format="reference" name="shadow_bottom"/></declare-styleable><declare-styleable name="SearchView">
  4686. <attr format="reference" name="layout"/>
  4687. <attr format="boolean" name="iconifiedByDefault"/>
  4688. <attr name="android:maxWidth"/>
  4689. <attr format="string" name="queryHint"/>
  4690. <attr format="string" name="defaultQueryHint"/>
  4691. <attr name="android:imeOptions"/>
  4692. <attr name="android:inputType"/>
  4693. <attr format="reference" name="closeIcon"/>
  4694. <attr format="reference" name="goIcon"/>
  4695. <attr format="reference" name="searchIcon"/>
  4696. <attr format="reference" name="searchHintIcon"/>
  4697. <attr format="reference" name="voiceIcon"/>
  4698. <attr format="reference" name="commitIcon"/>
  4699. <attr format="reference" name="suggestionRowLayout"/>
  4700. <attr format="reference" name="queryBackground"/>
  4701. <attr format="reference" name="submitBackground"/>
  4702. <attr name="android:focusable"/>
  4703. </declare-styleable></configuration></mergedItems></merger>