dependences.txt 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539
  1. > Task :app:dependencies
  2. ------------------------------------------------------------
  3. Project :app
  4. ------------------------------------------------------------
  5. _internal_aapt2_binary - The AAPT2 binary to use for processing resources.
  6. \--- com.android.tools.build:aapt2:3.2.1-4818971
  7. androidApis - Configuration providing various types of Android JAR file
  8. No dependencies
  9. androidTestAnnotationProcessor - Classpath for the annotation processor for 'androidTest'. (n)
  10. No dependencies
  11. androidTestApi - API dependencies for 'androidTest' sources. (n)
  12. No dependencies
  13. androidTestApiDependenciesMetadata
  14. No dependencies
  15. androidTestApk - Apk dependencies for 'androidTest' sources (deprecated: use 'androidTestRuntimeOnly' instead). (n)
  16. No dependencies
  17. androidTestCompile - Compile dependencies for 'androidTest' sources (deprecated: use 'androidTestImplementation' instead). (n)
  18. No dependencies
  19. androidTestCompileOnly - Compile only dependencies for 'androidTest' sources. (n)
  20. No dependencies
  21. androidTestCompileOnlyDependenciesMetadata
  22. No dependencies
  23. androidTestDebugAnnotationProcessor - Classpath for the annotation processor for 'androidTestDebug'. (n)
  24. No dependencies
  25. androidTestDebugApi - API dependencies for 'androidTestDebug' sources. (n)
  26. No dependencies
  27. androidTestDebugApiDependenciesMetadata
  28. No dependencies
  29. androidTestDebugApk - Apk dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugRuntimeOnly' instead). (n)
  30. No dependencies
  31. androidTestDebugCompile - Compile dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugImplementation' instead). (n)
  32. No dependencies
  33. androidTestDebugCompileOnly - Compile only dependencies for 'androidTestDebug' sources. (n)
  34. No dependencies
  35. androidTestDebugCompileOnlyDependenciesMetadata
  36. No dependencies
  37. androidTestDebugImplementation - Implementation only dependencies for 'androidTestDebug' sources. (n)
  38. No dependencies
  39. androidTestDebugImplementationDependenciesMetadata
  40. No dependencies
  41. androidTestDebugProvided - Provided dependencies for 'androidTestDebug' sources (deprecated: use 'androidTestDebugCompileOnly' instead). (n)
  42. No dependencies
  43. androidTestDebugRuntimeOnly - Runtime only dependencies for 'androidTestDebug' sources. (n)
  44. No dependencies
  45. androidTestDebugRuntimeOnlyDependenciesMetadata
  46. No dependencies
  47. androidTestDebugWearApp - Link to a wear app to embed for object 'androidTestDebug'. (n)
  48. No dependencies
  49. androidTestImplementation - Implementation only dependencies for 'androidTest' sources. (n)
  50. +--- androidx.test:core:1.1.0 (n)
  51. +--- androidx.test:runner:1.1.1 (n)
  52. +--- androidx.test:rules:1.1.1 (n)
  53. +--- androidx.test.ext:junit:1.1.0 (n)
  54. +--- androidx.test.ext:truth:1.1.0 (n)
  55. \--- androidx.test.espresso:espresso-core:3.1.1 (n)
  56. androidTestImplementationDependenciesMetadata
  57. +--- androidx.test:core:1.1.0
  58. | +--- androidx.annotation:annotation:1.0.0
  59. | +--- androidx.test:monitor:1.1.1
  60. | | \--- androidx.annotation:annotation:1.0.0
  61. | \--- androidx.lifecycle:lifecycle-common:2.0.0
  62. | \--- androidx.annotation:annotation:1.0.0
  63. +--- androidx.test:runner:1.1.1
  64. | +--- androidx.annotation:annotation:1.0.0
  65. | +--- androidx.test:monitor:1.1.1 (*)
  66. | +--- junit:junit:4.12
  67. | | \--- org.hamcrest:hamcrest-core:1.3
  68. | \--- net.sf.kxml:kxml2:2.3.0
  69. +--- androidx.test:rules:1.1.1
  70. | \--- androidx.test:runner:1.1.1 (*)
  71. +--- androidx.test.ext:junit:1.1.0
  72. | +--- junit:junit:4.12 (*)
  73. | +--- androidx.test:core:1.1.0 (*)
  74. | +--- androidx.test:monitor:1.1.1 (*)
  75. | \--- androidx.annotation:annotation:1.0.0
  76. +--- androidx.test.ext:truth:1.1.0
  77. | +--- androidx.test:core:1.1.0 (*)
  78. | +--- com.google.guava:guava:26.0-android
  79. | | +--- com.google.code.findbugs:jsr305:3.0.2
  80. | | +--- org.checkerframework:checker-compat-qual:2.5.2 -> 2.5.3
  81. | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.3.1
  82. | | +--- com.google.j2objc:j2objc-annotations:1.1
  83. | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
  84. | +--- com.google.truth:truth:0.42
  85. | | +--- com.google.guava:guava:25.1-android -> 26.0-android (*)
  86. | | +--- org.checkerframework:checker-compat-qual:2.5.3
  87. | | +--- org.checkerframework:checker-qual:2.5.3
  88. | | +--- junit:junit:4.12 (*)
  89. | | +--- com.googlecode.java-diff-utils:diffutils:1.3.0
  90. | | +--- com.google.auto.value:auto-value-annotations:1.6.2
  91. | | \--- com.google.errorprone:error_prone_annotations:2.3.1
  92. | \--- androidx.annotation:annotation:1.0.0
  93. \--- androidx.test.espresso:espresso-core:3.1.1
  94. +--- androidx.test:runner:1.1.1 (*)
  95. +--- androidx.test.espresso:espresso-idling-resource:3.1.1
  96. +--- com.squareup:javawriter:2.1.1
  97. +--- javax.inject:javax.inject:1
  98. +--- org.hamcrest:hamcrest-library:1.3
  99. | \--- org.hamcrest:hamcrest-core:1.3
  100. +--- org.hamcrest:hamcrest-integration:1.3
  101. | \--- org.hamcrest:hamcrest-library:1.3 (*)
  102. \--- com.google.code.findbugs:jsr305:2.0.1 -> 3.0.2
  103. androidTestProvided - Provided dependencies for 'androidTest' sources (deprecated: use 'androidTestCompileOnly' instead). (n)
  104. No dependencies
  105. androidTestRuntimeOnly - Runtime only dependencies for 'androidTest' sources. (n)
  106. No dependencies
  107. androidTestRuntimeOnlyDependenciesMetadata
  108. No dependencies
  109. androidTestUtil - Additional APKs used during instrumentation testing.
  110. No dependencies
  111. androidTestWearApp - Link to a wear app to embed for object 'androidTest'. (n)
  112. No dependencies
  113. annotationProcessor - Classpath for the annotation processor for 'main'. (n)
  114. No dependencies
  115. api - API dependencies for 'main' sources. (n)
  116. No dependencies
  117. apiDependenciesMetadata
  118. No dependencies
  119. apk - Apk dependencies for 'main' sources (deprecated: use 'runtimeOnly' instead). (n)
  120. No dependencies
  121. archives - Configuration for archive artifacts.
  122. No dependencies
  123. compile - Compile dependencies for 'main' sources (deprecated: use 'implementation' instead).
  124. No dependencies
  125. compileOnly - Compile only dependencies for 'main' sources. (n)
  126. No dependencies
  127. compileOnlyDependenciesMetadata
  128. No dependencies
  129. debugAndroidTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugAndroidTest
  130. No dependencies
  131. debugAndroidTestApi - API dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
  132. No dependencies
  133. debugAndroidTestApiDependenciesMetadata
  134. No dependencies
  135. debugAndroidTestCompile - Dependencies for compilation 'debugAndroidTest' (target (androidJvm)) (deprecated, use 'debugAndroidTestImplementation ' instead).
  136. No dependencies
  137. debugAndroidTestCompileClasspath - Compile classpath for compilation 'debugAndroidTest' (target (androidJvm)).
  138. +--- androidx.test:core:1.1.0
  139. | +--- androidx.annotation:annotation:1.0.0
  140. | +--- androidx.test:monitor:1.1.1
  141. | | \--- androidx.annotation:annotation:1.0.0
  142. | \--- androidx.lifecycle:lifecycle-common:2.0.0
  143. | \--- androidx.annotation:annotation:1.0.0
  144. +--- androidx.test:runner:1.1.1
  145. | +--- androidx.annotation:annotation:1.0.0
  146. | +--- androidx.test:monitor:1.1.1 (*)
  147. | +--- junit:junit:4.12
  148. | | \--- org.hamcrest:hamcrest-core:1.3
  149. | \--- net.sf.kxml:kxml2:2.3.0
  150. +--- androidx.test:rules:1.1.1
  151. | \--- androidx.test:runner:1.1.1 (*)
  152. +--- androidx.test.ext:junit:1.1.0
  153. | +--- junit:junit:4.12 (*)
  154. | +--- androidx.test:core:1.1.0 (*)
  155. | +--- androidx.test:monitor:1.1.1 (*)
  156. | \--- androidx.annotation:annotation:1.0.0
  157. +--- androidx.test.ext:truth:1.1.0
  158. | +--- androidx.test:core:1.1.0 (*)
  159. | +--- com.google.guava:guava:26.0-android
  160. | | +--- com.google.code.findbugs:jsr305:3.0.2
  161. | | +--- org.checkerframework:checker-compat-qual:2.5.2 -> 2.5.3
  162. | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.3.1
  163. | | +--- com.google.j2objc:j2objc-annotations:1.1
  164. | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
  165. | +--- com.google.truth:truth:0.42
  166. | | +--- com.google.guava:guava:25.1-android -> 26.0-android (*)
  167. | | +--- org.checkerframework:checker-compat-qual:2.5.3
  168. | | +--- org.checkerframework:checker-qual:2.5.3
  169. | | +--- junit:junit:4.12 (*)
  170. | | +--- com.googlecode.java-diff-utils:diffutils:1.3.0
  171. | | +--- com.google.auto.value:auto-value-annotations:1.6.2
  172. | | \--- com.google.errorprone:error_prone_annotations:2.3.1
  173. | \--- androidx.annotation:annotation:1.0.0
  174. +--- androidx.test.espresso:espresso-core:3.1.1
  175. | +--- androidx.test:runner:1.1.1 (*)
  176. | +--- androidx.test.espresso:espresso-idling-resource:3.1.1
  177. | +--- com.squareup:javawriter:2.1.1
  178. | +--- javax.inject:javax.inject:1
  179. | +--- org.hamcrest:hamcrest-library:1.3
  180. | | \--- org.hamcrest:hamcrest-core:1.3
  181. | +--- org.hamcrest:hamcrest-integration:1.3
  182. | | \--- org.hamcrest:hamcrest-library:1.3 (*)
  183. | \--- com.google.code.findbugs:jsr305:2.0.1 -> 3.0.2
  184. +--- project :file_picker
  185. +--- project :screen_stream_plugin
  186. +--- project :video_player
  187. +--- project :package_info
  188. +--- project :ttdj_plugin
  189. +--- project :flutter_picker
  190. +--- project :url_launcher
  191. +--- project :path_provider
  192. +--- project :image_cropper
  193. +--- project :shared_preferences
  194. +--- project :jpush_flutter
  195. +--- project :screen
  196. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  197. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  198. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  199. | \--- org.jetbrains:annotations:13.0
  200. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  201. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  202. debugAndroidTestCompileOnly - Compile only dependencies for compilation 'debugAndroidTest' (target (androidJvm)).
  203. No dependencies
  204. debugAndroidTestCompileOnlyDependenciesMetadata
  205. No dependencies
  206. debugAndroidTestImplementation - Implementation only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
  207. No dependencies
  208. debugAndroidTestImplementationDependenciesMetadata
  209. +--- androidx.test:core:1.1.0
  210. | +--- androidx.annotation:annotation:1.0.0
  211. | +--- androidx.test:monitor:1.1.1
  212. | | \--- androidx.annotation:annotation:1.0.0
  213. | \--- androidx.lifecycle:lifecycle-common:2.0.0
  214. | \--- androidx.annotation:annotation:1.0.0
  215. +--- androidx.test:runner:1.1.1
  216. | +--- androidx.annotation:annotation:1.0.0
  217. | +--- androidx.test:monitor:1.1.1 (*)
  218. | +--- junit:junit:4.12
  219. | | \--- org.hamcrest:hamcrest-core:1.3
  220. | \--- net.sf.kxml:kxml2:2.3.0
  221. +--- androidx.test:rules:1.1.1
  222. | \--- androidx.test:runner:1.1.1 (*)
  223. +--- androidx.test.ext:junit:1.1.0
  224. | +--- junit:junit:4.12 (*)
  225. | +--- androidx.test:core:1.1.0 (*)
  226. | +--- androidx.test:monitor:1.1.1 (*)
  227. | \--- androidx.annotation:annotation:1.0.0
  228. +--- androidx.test.ext:truth:1.1.0
  229. | +--- androidx.test:core:1.1.0 (*)
  230. | +--- com.google.guava:guava:26.0-android
  231. | | +--- com.google.code.findbugs:jsr305:3.0.2
  232. | | +--- org.checkerframework:checker-compat-qual:2.5.2 -> 2.5.3
  233. | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.3.1
  234. | | +--- com.google.j2objc:j2objc-annotations:1.1
  235. | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
  236. | +--- com.google.truth:truth:0.42
  237. | | +--- com.google.guava:guava:25.1-android -> 26.0-android (*)
  238. | | +--- org.checkerframework:checker-compat-qual:2.5.3
  239. | | +--- org.checkerframework:checker-qual:2.5.3
  240. | | +--- junit:junit:4.12 (*)
  241. | | +--- com.googlecode.java-diff-utils:diffutils:1.3.0
  242. | | +--- com.google.auto.value:auto-value-annotations:1.6.2
  243. | | \--- com.google.errorprone:error_prone_annotations:2.3.1
  244. | \--- androidx.annotation:annotation:1.0.0
  245. \--- androidx.test.espresso:espresso-core:3.1.1
  246. +--- androidx.test:runner:1.1.1 (*)
  247. +--- androidx.test.espresso:espresso-idling-resource:3.1.1
  248. +--- com.squareup:javawriter:2.1.1
  249. +--- javax.inject:javax.inject:1
  250. +--- org.hamcrest:hamcrest-library:1.3
  251. | \--- org.hamcrest:hamcrest-core:1.3
  252. +--- org.hamcrest:hamcrest-integration:1.3
  253. | \--- org.hamcrest:hamcrest-library:1.3 (*)
  254. \--- com.google.code.findbugs:jsr305:2.0.1 -> 3.0.2
  255. debugAndroidTestRuntime - Runtime dependencies for compilation 'debugAndroidTest' (target (androidJvm)) (deprecated, use 'debugAndroidTestRuntimeOnly ' instead).
  256. No dependencies
  257. debugAndroidTestRuntimeClasspath - Runtime classpath of compilation 'debugAndroidTest' (target (androidJvm)).
  258. +--- androidx.test:core:1.1.0
  259. | +--- androidx.annotation:annotation:1.0.0
  260. | +--- androidx.test:monitor:1.1.1
  261. | | \--- androidx.annotation:annotation:1.0.0
  262. | \--- androidx.lifecycle:lifecycle-common:2.0.0
  263. | \--- androidx.annotation:annotation:1.0.0
  264. +--- androidx.test:runner:1.1.1
  265. | +--- androidx.annotation:annotation:1.0.0
  266. | +--- androidx.test:monitor:1.1.1 (*)
  267. | +--- junit:junit:4.12
  268. | | \--- org.hamcrest:hamcrest-core:1.3
  269. | \--- net.sf.kxml:kxml2:2.3.0
  270. +--- androidx.test:rules:1.1.1
  271. | \--- androidx.test:runner:1.1.1 (*)
  272. +--- androidx.test.ext:junit:1.1.0
  273. | +--- junit:junit:4.12 (*)
  274. | +--- androidx.test:core:1.1.0 (*)
  275. | +--- androidx.test:monitor:1.1.1 (*)
  276. | \--- androidx.annotation:annotation:1.0.0
  277. +--- androidx.test.ext:truth:1.1.0
  278. | +--- androidx.test:core:1.1.0 (*)
  279. | +--- com.google.guava:guava:26.0-android
  280. | | +--- com.google.code.findbugs:jsr305:3.0.2
  281. | | +--- org.checkerframework:checker-compat-qual:2.5.2 -> 2.5.3
  282. | | +--- com.google.errorprone:error_prone_annotations:2.1.3 -> 2.3.1
  283. | | +--- com.google.j2objc:j2objc-annotations:1.1
  284. | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
  285. | +--- com.google.truth:truth:0.42
  286. | | +--- com.google.guava:guava:25.1-android -> 26.0-android (*)
  287. | | +--- org.checkerframework:checker-compat-qual:2.5.3
  288. | | +--- org.checkerframework:checker-qual:2.5.3
  289. | | +--- junit:junit:4.12 (*)
  290. | | +--- com.googlecode.java-diff-utils:diffutils:1.3.0
  291. | | +--- com.google.auto.value:auto-value-annotations:1.6.2
  292. | | \--- com.google.errorprone:error_prone_annotations:2.3.1
  293. | \--- androidx.annotation:annotation:1.0.0
  294. +--- androidx.test.espresso:espresso-core:3.1.1
  295. | +--- androidx.test:runner:1.1.1 (*)
  296. | +--- androidx.test.espresso:espresso-idling-resource:3.1.1
  297. | +--- com.squareup:javawriter:2.1.1
  298. | +--- javax.inject:javax.inject:1
  299. | +--- org.hamcrest:hamcrest-library:1.3
  300. | | \--- org.hamcrest:hamcrest-core:1.3
  301. | +--- org.hamcrest:hamcrest-integration:1.3
  302. | | \--- org.hamcrest:hamcrest-library:1.3 (*)
  303. | \--- com.google.code.findbugs:jsr305:2.0.1 -> 3.0.2
  304. +--- project :file_picker
  305. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  306. | +--- androidx.annotation:annotation:1.0.0
  307. | +--- androidx.core:core:1.0.1
  308. | | +--- androidx.annotation:annotation:1.0.0
  309. | | +--- androidx.collection:collection:1.0.0
  310. | | | \--- androidx.annotation:annotation:1.0.0
  311. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  312. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  313. | | | +--- androidx.arch.core:core-common:2.0.0
  314. | | | | \--- androidx.annotation:annotation:1.0.0
  315. | | | \--- androidx.annotation:annotation:1.0.0
  316. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  317. | | +--- androidx.annotation:annotation:1.0.0
  318. | | \--- androidx.collection:collection:1.0.0 (*)
  319. | +--- androidx.collection:collection:1.0.0 (*)
  320. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  321. | | \--- androidx.annotation:annotation:1.0.0
  322. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  323. | | +--- androidx.annotation:annotation:1.0.0
  324. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  325. | | +--- androidx.documentfile:documentfile:1.0.0
  326. | | | \--- androidx.annotation:annotation:1.0.0
  327. | | +--- androidx.loader:loader:1.0.0
  328. | | | +--- androidx.annotation:annotation:1.0.0
  329. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  330. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  331. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  332. | | | | | +--- androidx.annotation:annotation:1.0.0
  333. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  334. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  335. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  336. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  337. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  338. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  339. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  340. | | | \--- androidx.annotation:annotation:1.0.0
  341. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  342. | | | \--- androidx.annotation:annotation:1.0.0
  343. | | \--- androidx.print:print:1.0.0
  344. | | \--- androidx.annotation:annotation:1.0.0
  345. | +--- androidx.fragment:fragment:1.0.0
  346. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  347. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  348. | | | +--- androidx.annotation:annotation:1.0.0
  349. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  350. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  351. | | | +--- androidx.customview:customview:1.0.0
  352. | | | | +--- androidx.annotation:annotation:1.0.0
  353. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  354. | | | +--- androidx.viewpager:viewpager:1.0.0
  355. | | | | +--- androidx.annotation:annotation:1.0.0
  356. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  357. | | | | \--- androidx.customview:customview:1.0.0 (*)
  358. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  359. | | | | +--- androidx.annotation:annotation:1.0.0
  360. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  361. | | | | \--- androidx.customview:customview:1.0.0 (*)
  362. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  363. | | | | +--- androidx.annotation:annotation:1.0.0
  364. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  365. | | | | \--- androidx.customview:customview:1.0.0 (*)
  366. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  367. | | | | +--- androidx.annotation:annotation:1.0.0
  368. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  369. | | | | \--- androidx.customview:customview:1.0.0 (*)
  370. | | | +--- androidx.interpolator:interpolator:1.0.0
  371. | | | | \--- androidx.annotation:annotation:1.0.0
  372. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  373. | | | | +--- androidx.annotation:annotation:1.0.0
  374. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  375. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  376. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  377. | | | | +--- androidx.annotation:annotation:1.0.0
  378. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  379. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  380. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  381. | | +--- androidx.annotation:annotation:1.0.0
  382. | | +--- androidx.loader:loader:1.0.0 (*)
  383. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  384. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  385. | | +--- androidx.annotation:annotation:1.0.0
  386. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  387. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  388. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  389. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  390. +--- project :screen_stream_plugin
  391. | +--- org.bytedeco:javacv:1.4.4
  392. | | +--- org.bytedeco:javacpp:1.4.4
  393. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  394. | | | \--- org.bytedeco:javacpp:1.4.4
  395. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  396. | | | \--- org.bytedeco:javacpp:1.4.4
  397. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  398. | | | \--- org.bytedeco:javacpp:1.4.4
  399. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  400. | | | \--- org.bytedeco:javacpp:1.4.4
  401. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  402. | | | \--- org.bytedeco:javacpp:1.4.4
  403. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  404. | | | \--- org.bytedeco:javacpp:1.4.4
  405. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  406. | | | \--- org.bytedeco:javacpp:1.4.4
  407. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  408. | | | \--- org.bytedeco:javacpp:1.4.4
  409. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  410. | | | \--- org.bytedeco:javacpp:1.4.4
  411. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  412. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  413. | | | \--- org.bytedeco:javacpp:1.4.4
  414. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  415. | | | \--- org.bytedeco:javacpp:1.4.4
  416. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  417. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  418. | | \--- org.bytedeco:javacpp:1.4.4
  419. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  420. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  421. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  422. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  423. | \--- net.gotev:uploadservice:3.5.2
  424. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  425. +--- project :video_player
  426. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  427. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  428. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  429. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  430. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  431. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  432. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  433. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  434. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  435. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  436. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  437. +--- project :package_info
  438. +--- project :ttdj_plugin
  439. +--- project :flutter_picker
  440. +--- project :url_launcher
  441. +--- project :path_provider
  442. +--- project :image_cropper
  443. | \--- com.github.yalantis:ucrop:2.2.3
  444. | +--- com.android.support:appcompat-v7:28.0.0
  445. | | +--- com.android.support:support-annotations:28.0.0
  446. | | +--- com.android.support:support-compat:28.0.0
  447. | | | +--- com.android.support:support-annotations:28.0.0
  448. | | | +--- com.android.support:collections:28.0.0
  449. | | | | \--- com.android.support:support-annotations:28.0.0
  450. | | | +--- android.arch.lifecycle:runtime:1.1.1
  451. | | | | +--- android.arch.lifecycle:common:1.1.1
  452. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  453. | | | | +--- android.arch.core:common:1.1.1
  454. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  455. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  456. | | | \--- com.android.support:versionedparcelable:28.0.0
  457. | | | +--- com.android.support:support-annotations:28.0.0
  458. | | | \--- com.android.support:collections:28.0.0 (*)
  459. | | +--- com.android.support:collections:28.0.0 (*)
  460. | | +--- com.android.support:cursoradapter:28.0.0
  461. | | | \--- com.android.support:support-annotations:28.0.0
  462. | | +--- com.android.support:support-core-utils:28.0.0
  463. | | | +--- com.android.support:support-annotations:28.0.0
  464. | | | +--- com.android.support:support-compat:28.0.0 (*)
  465. | | | +--- com.android.support:documentfile:28.0.0
  466. | | | | \--- com.android.support:support-annotations:28.0.0
  467. | | | +--- com.android.support:loader:28.0.0
  468. | | | | +--- com.android.support:support-annotations:28.0.0
  469. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  470. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  471. | | | | | +--- android.arch.core:runtime:1.1.1
  472. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  473. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  474. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  475. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  476. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  477. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  478. | | | | | \--- android.arch.core:common:1.1.1 (*)
  479. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  480. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  481. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  482. | | | | \--- com.android.support:support-annotations:28.0.0
  483. | | | \--- com.android.support:print:28.0.0
  484. | | | \--- com.android.support:support-annotations:28.0.0
  485. | | +--- com.android.support:support-fragment:28.0.0
  486. | | | +--- com.android.support:support-compat:28.0.0 (*)
  487. | | | +--- com.android.support:support-core-ui:28.0.0
  488. | | | | +--- com.android.support:support-annotations:28.0.0
  489. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  490. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  491. | | | | +--- com.android.support:customview:28.0.0
  492. | | | | | +--- com.android.support:support-annotations:28.0.0
  493. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  494. | | | | +--- com.android.support:viewpager:28.0.0
  495. | | | | | +--- com.android.support:support-annotations:28.0.0
  496. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  497. | | | | | \--- com.android.support:customview:28.0.0 (*)
  498. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  499. | | | | | +--- com.android.support:support-annotations:28.0.0
  500. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  501. | | | | | \--- com.android.support:customview:28.0.0 (*)
  502. | | | | +--- com.android.support:drawerlayout:28.0.0
  503. | | | | | +--- com.android.support:support-annotations:28.0.0
  504. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  505. | | | | | \--- com.android.support:customview:28.0.0 (*)
  506. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  507. | | | | | +--- com.android.support:support-annotations:28.0.0
  508. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  509. | | | | | \--- com.android.support:customview:28.0.0 (*)
  510. | | | | +--- com.android.support:interpolator:28.0.0
  511. | | | | | \--- com.android.support:support-annotations:28.0.0
  512. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  513. | | | | | +--- com.android.support:support-annotations:28.0.0
  514. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  515. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  516. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  517. | | | | | +--- com.android.support:support-annotations:28.0.0
  518. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  519. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  520. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  521. | | | +--- com.android.support:support-annotations:28.0.0
  522. | | | +--- com.android.support:loader:28.0.0 (*)
  523. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  524. | | +--- com.android.support:support-vector-drawable:28.0.0
  525. | | | +--- com.android.support:support-annotations:28.0.0
  526. | | | \--- com.android.support:support-compat:28.0.0 (*)
  527. | | \--- com.android.support:animated-vector-drawable:28.0.0
  528. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  529. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  530. | +--- com.android.support:exifinterface:28.0.0
  531. | | \--- com.android.support:support-annotations:28.0.0
  532. | +--- com.android.support:design:28.0.0
  533. | | +--- com.android.support:support-annotations:28.0.0
  534. | | +--- com.android.support:support-compat:28.0.0 (*)
  535. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  536. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  537. | | +--- com.android.support:support-fragment:28.0.0 (*)
  538. | | +--- com.android.support:transition:28.0.0
  539. | | | +--- com.android.support:support-annotations:28.0.0
  540. | | | \--- com.android.support:support-compat:28.0.0 (*)
  541. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  542. | | +--- com.android.support:cardview-v7:28.0.0
  543. | | | \--- com.android.support:support-annotations:28.0.0
  544. | | \--- com.android.support:recyclerview-v7:28.0.0
  545. | | +--- com.android.support:support-annotations:28.0.0
  546. | | +--- com.android.support:support-compat:28.0.0 (*)
  547. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  548. | \--- com.squareup.okhttp3:okhttp:3.11.0
  549. | \--- com.squareup.okio:okio:1.14.0
  550. +--- project :shared_preferences
  551. +--- project :jpush_flutter
  552. | +--- cn.jiguang.sdk:jpush:3.1.6
  553. | \--- cn.jiguang.sdk:jcore:1.2.5
  554. +--- project :screen
  555. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  556. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  557. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  558. | \--- org.jetbrains:annotations:13.0
  559. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  560. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  561. debugAndroidTestRuntimeOnly - Runtime only dependencies for compilation 'debugAndroidTest' (target (androidJvm)). (n)
  562. No dependencies
  563. debugAndroidTestRuntimeOnlyDependenciesMetadata
  564. No dependencies
  565. debugAnnotationProcessor - Classpath for the annotation processor for 'debug'. (n)
  566. No dependencies
  567. debugAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debug
  568. No dependencies
  569. debugApi - API dependencies for compilation 'debug' (target (androidJvm)). (n)
  570. \--- unspecified (n)
  571. debugApiDependenciesMetadata
  572. No dependencies
  573. debugApiElements - API elements for debug (n)
  574. No dependencies
  575. debugApk - Apk dependencies for 'debug' sources (deprecated: use 'debugRuntimeOnly' instead). (n)
  576. No dependencies
  577. debugBundleElements - Bundle elements for debug (n)
  578. No dependencies
  579. debugCompile - Dependencies for compilation 'debug' (target (androidJvm)) (deprecated, use 'debugImplementation ' instead).
  580. No dependencies
  581. debugCompileClasspath - Compile classpath for compilation 'debug' (target (androidJvm)).
  582. +--- project :file_picker
  583. +--- project :screen_stream_plugin
  584. +--- project :video_player
  585. +--- project :package_info
  586. +--- project :ttdj_plugin
  587. +--- project :flutter_picker
  588. +--- project :url_launcher
  589. +--- project :path_provider
  590. +--- project :image_cropper
  591. +--- project :shared_preferences
  592. +--- project :jpush_flutter
  593. +--- project :screen
  594. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  595. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  596. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  597. | \--- org.jetbrains:annotations:13.0
  598. +--- androidx.lifecycle:lifecycle-common:2.0.0
  599. | \--- androidx.annotation:annotation:1.0.0
  600. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  601. debugCompileOnly - Compile only dependencies for compilation 'debug' (target (androidJvm)).
  602. No dependencies
  603. debugCompileOnlyDependenciesMetadata
  604. No dependencies
  605. debugImplementation - Implementation only dependencies for compilation 'debug' (target (androidJvm)). (n)
  606. No dependencies
  607. debugImplementationDependenciesMetadata
  608. +--- project :file_picker FAILED
  609. +--- project :screen_stream_plugin FAILED
  610. +--- project :video_player FAILED
  611. +--- project :package_info FAILED
  612. +--- project :ttdj_plugin FAILED
  613. +--- project :flutter_picker FAILED
  614. +--- project :url_launcher FAILED
  615. +--- project :path_provider FAILED
  616. +--- project :image_cropper FAILED
  617. +--- project :shared_preferences FAILED
  618. +--- project :jpush_flutter FAILED
  619. +--- project :screen FAILED
  620. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  621. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  622. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  623. | \--- org.jetbrains:annotations:13.0
  624. +--- androidx.lifecycle:lifecycle-common:2.0.0
  625. | \--- androidx.annotation:annotation:1.0.0
  626. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  627. debugMetadataElements (n)
  628. No dependencies
  629. debugMetadataValues - Metadata Values dependencies for the base Split
  630. No dependencies
  631. debugProvided - Provided dependencies for 'debug' sources (deprecated: use 'debugCompileOnly' instead). (n)
  632. No dependencies
  633. debugRuntime - Runtime dependencies for compilation 'debug' (target (androidJvm)) (deprecated, use 'debugRuntimeOnly ' instead).
  634. No dependencies
  635. debugRuntimeClasspath - Runtime classpath of compilation 'debug' (target (androidJvm)).
  636. +--- project :file_picker
  637. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  638. | +--- androidx.annotation:annotation:1.0.0
  639. | +--- androidx.core:core:1.0.1
  640. | | +--- androidx.annotation:annotation:1.0.0
  641. | | +--- androidx.collection:collection:1.0.0
  642. | | | \--- androidx.annotation:annotation:1.0.0
  643. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  644. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  645. | | | | \--- androidx.annotation:annotation:1.0.0
  646. | | | +--- androidx.arch.core:core-common:2.0.0
  647. | | | | \--- androidx.annotation:annotation:1.0.0
  648. | | | \--- androidx.annotation:annotation:1.0.0
  649. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  650. | | +--- androidx.annotation:annotation:1.0.0
  651. | | \--- androidx.collection:collection:1.0.0 (*)
  652. | +--- androidx.collection:collection:1.0.0 (*)
  653. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  654. | | \--- androidx.annotation:annotation:1.0.0
  655. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  656. | | +--- androidx.annotation:annotation:1.0.0
  657. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  658. | | +--- androidx.documentfile:documentfile:1.0.0
  659. | | | \--- androidx.annotation:annotation:1.0.0
  660. | | +--- androidx.loader:loader:1.0.0
  661. | | | +--- androidx.annotation:annotation:1.0.0
  662. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  663. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  664. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  665. | | | | | +--- androidx.annotation:annotation:1.0.0
  666. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  667. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  668. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  669. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  670. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  671. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  672. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  673. | | | \--- androidx.annotation:annotation:1.0.0
  674. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  675. | | | \--- androidx.annotation:annotation:1.0.0
  676. | | \--- androidx.print:print:1.0.0
  677. | | \--- androidx.annotation:annotation:1.0.0
  678. | +--- androidx.fragment:fragment:1.0.0
  679. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  680. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  681. | | | +--- androidx.annotation:annotation:1.0.0
  682. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  683. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  684. | | | +--- androidx.customview:customview:1.0.0
  685. | | | | +--- androidx.annotation:annotation:1.0.0
  686. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  687. | | | +--- androidx.viewpager:viewpager:1.0.0
  688. | | | | +--- androidx.annotation:annotation:1.0.0
  689. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  690. | | | | \--- androidx.customview:customview:1.0.0 (*)
  691. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  692. | | | | +--- androidx.annotation:annotation:1.0.0
  693. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  694. | | | | \--- androidx.customview:customview:1.0.0 (*)
  695. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  696. | | | | +--- androidx.annotation:annotation:1.0.0
  697. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  698. | | | | \--- androidx.customview:customview:1.0.0 (*)
  699. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  700. | | | | +--- androidx.annotation:annotation:1.0.0
  701. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  702. | | | | \--- androidx.customview:customview:1.0.0 (*)
  703. | | | +--- androidx.interpolator:interpolator:1.0.0
  704. | | | | \--- androidx.annotation:annotation:1.0.0
  705. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  706. | | | | +--- androidx.annotation:annotation:1.0.0
  707. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  708. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  709. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  710. | | | | +--- androidx.annotation:annotation:1.0.0
  711. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  712. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  713. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  714. | | +--- androidx.annotation:annotation:1.0.0
  715. | | +--- androidx.loader:loader:1.0.0 (*)
  716. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  717. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  718. | | +--- androidx.annotation:annotation:1.0.0
  719. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  720. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  721. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  722. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  723. +--- project :screen_stream_plugin
  724. | +--- org.bytedeco:javacv:1.4.4
  725. | | +--- org.bytedeco:javacpp:1.4.4
  726. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  727. | | | \--- org.bytedeco:javacpp:1.4.4
  728. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  729. | | | \--- org.bytedeco:javacpp:1.4.4
  730. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  731. | | | \--- org.bytedeco:javacpp:1.4.4
  732. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  733. | | | \--- org.bytedeco:javacpp:1.4.4
  734. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  735. | | | \--- org.bytedeco:javacpp:1.4.4
  736. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  737. | | | \--- org.bytedeco:javacpp:1.4.4
  738. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  739. | | | \--- org.bytedeco:javacpp:1.4.4
  740. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  741. | | | \--- org.bytedeco:javacpp:1.4.4
  742. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  743. | | | \--- org.bytedeco:javacpp:1.4.4
  744. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  745. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  746. | | | \--- org.bytedeco:javacpp:1.4.4
  747. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  748. | | | \--- org.bytedeco:javacpp:1.4.4
  749. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  750. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  751. | | \--- org.bytedeco:javacpp:1.4.4
  752. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  753. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  754. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  755. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  756. | \--- net.gotev:uploadservice:3.5.2
  757. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  758. +--- project :video_player
  759. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  760. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  761. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  762. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  763. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  764. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  765. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  766. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  767. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  768. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  769. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  770. +--- project :package_info
  771. +--- project :ttdj_plugin
  772. +--- project :flutter_picker
  773. +--- project :url_launcher
  774. +--- project :path_provider
  775. +--- project :image_cropper
  776. | \--- com.github.yalantis:ucrop:2.2.3
  777. | +--- com.android.support:appcompat-v7:28.0.0
  778. | | +--- com.android.support:support-annotations:28.0.0
  779. | | +--- com.android.support:support-compat:28.0.0
  780. | | | +--- com.android.support:support-annotations:28.0.0
  781. | | | +--- com.android.support:collections:28.0.0
  782. | | | | \--- com.android.support:support-annotations:28.0.0
  783. | | | +--- android.arch.lifecycle:runtime:1.1.1
  784. | | | | +--- android.arch.lifecycle:common:1.1.1
  785. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  786. | | | | +--- android.arch.core:common:1.1.1
  787. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  788. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  789. | | | \--- com.android.support:versionedparcelable:28.0.0
  790. | | | +--- com.android.support:support-annotations:28.0.0
  791. | | | \--- com.android.support:collections:28.0.0 (*)
  792. | | +--- com.android.support:collections:28.0.0 (*)
  793. | | +--- com.android.support:cursoradapter:28.0.0
  794. | | | \--- com.android.support:support-annotations:28.0.0
  795. | | +--- com.android.support:support-core-utils:28.0.0
  796. | | | +--- com.android.support:support-annotations:28.0.0
  797. | | | +--- com.android.support:support-compat:28.0.0 (*)
  798. | | | +--- com.android.support:documentfile:28.0.0
  799. | | | | \--- com.android.support:support-annotations:28.0.0
  800. | | | +--- com.android.support:loader:28.0.0
  801. | | | | +--- com.android.support:support-annotations:28.0.0
  802. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  803. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  804. | | | | | +--- android.arch.core:runtime:1.1.1
  805. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  806. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  807. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  808. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  809. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  810. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  811. | | | | | \--- android.arch.core:common:1.1.1 (*)
  812. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  813. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  814. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  815. | | | | \--- com.android.support:support-annotations:28.0.0
  816. | | | \--- com.android.support:print:28.0.0
  817. | | | \--- com.android.support:support-annotations:28.0.0
  818. | | +--- com.android.support:support-fragment:28.0.0
  819. | | | +--- com.android.support:support-compat:28.0.0 (*)
  820. | | | +--- com.android.support:support-core-ui:28.0.0
  821. | | | | +--- com.android.support:support-annotations:28.0.0
  822. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  823. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  824. | | | | +--- com.android.support:customview:28.0.0
  825. | | | | | +--- com.android.support:support-annotations:28.0.0
  826. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  827. | | | | +--- com.android.support:viewpager:28.0.0
  828. | | | | | +--- com.android.support:support-annotations:28.0.0
  829. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  830. | | | | | \--- com.android.support:customview:28.0.0 (*)
  831. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  832. | | | | | +--- com.android.support:support-annotations:28.0.0
  833. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  834. | | | | | \--- com.android.support:customview:28.0.0 (*)
  835. | | | | +--- com.android.support:drawerlayout:28.0.0
  836. | | | | | +--- com.android.support:support-annotations:28.0.0
  837. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  838. | | | | | \--- com.android.support:customview:28.0.0 (*)
  839. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  840. | | | | | +--- com.android.support:support-annotations:28.0.0
  841. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  842. | | | | | \--- com.android.support:customview:28.0.0 (*)
  843. | | | | +--- com.android.support:interpolator:28.0.0
  844. | | | | | \--- com.android.support:support-annotations:28.0.0
  845. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  846. | | | | | +--- com.android.support:support-annotations:28.0.0
  847. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  848. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  849. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  850. | | | | | +--- com.android.support:support-annotations:28.0.0
  851. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  852. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  853. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  854. | | | +--- com.android.support:support-annotations:28.0.0
  855. | | | +--- com.android.support:loader:28.0.0 (*)
  856. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  857. | | +--- com.android.support:support-vector-drawable:28.0.0
  858. | | | +--- com.android.support:support-annotations:28.0.0
  859. | | | \--- com.android.support:support-compat:28.0.0 (*)
  860. | | \--- com.android.support:animated-vector-drawable:28.0.0
  861. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  862. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  863. | +--- com.android.support:exifinterface:28.0.0
  864. | | \--- com.android.support:support-annotations:28.0.0
  865. | +--- com.android.support:design:28.0.0
  866. | | +--- com.android.support:support-annotations:28.0.0
  867. | | +--- com.android.support:support-compat:28.0.0 (*)
  868. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  869. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  870. | | +--- com.android.support:support-fragment:28.0.0 (*)
  871. | | +--- com.android.support:transition:28.0.0
  872. | | | +--- com.android.support:support-annotations:28.0.0
  873. | | | \--- com.android.support:support-compat:28.0.0 (*)
  874. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  875. | | +--- com.android.support:cardview-v7:28.0.0
  876. | | | \--- com.android.support:support-annotations:28.0.0
  877. | | \--- com.android.support:recyclerview-v7:28.0.0
  878. | | +--- com.android.support:support-annotations:28.0.0
  879. | | +--- com.android.support:support-compat:28.0.0 (*)
  880. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  881. | \--- com.squareup.okhttp3:okhttp:3.11.0
  882. | \--- com.squareup.okio:okio:1.14.0
  883. +--- project :shared_preferences
  884. +--- project :jpush_flutter
  885. | +--- cn.jiguang.sdk:jpush:3.1.6
  886. | \--- cn.jiguang.sdk:jcore:1.2.5
  887. +--- project :screen
  888. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  889. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  890. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  891. | \--- org.jetbrains:annotations:13.0
  892. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  893. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  894. debugRuntimeElements - Runtime elements for debug (n)
  895. No dependencies
  896. debugRuntimeOnly - Runtime only dependencies for compilation 'debug' (target (androidJvm)). (n)
  897. No dependencies
  898. debugRuntimeOnlyDependenciesMetadata
  899. No dependencies
  900. debugUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: debugUnitTest
  901. No dependencies
  902. debugUnitTestApi - API dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
  903. No dependencies
  904. debugUnitTestApiDependenciesMetadata
  905. No dependencies
  906. debugUnitTestCompile - Dependencies for compilation 'debugUnitTest' (target (androidJvm)) (deprecated, use 'debugUnitTestImplementation ' instead).
  907. No dependencies
  908. debugUnitTestCompileClasspath - Compile classpath for compilation 'debugUnitTest' (target (androidJvm)).
  909. +--- project :file_picker
  910. +--- project :screen_stream_plugin
  911. +--- project :video_player
  912. +--- project :package_info
  913. +--- project :ttdj_plugin
  914. +--- project :flutter_picker
  915. +--- project :url_launcher
  916. +--- project :path_provider
  917. +--- project :image_cropper
  918. +--- project :shared_preferences
  919. +--- project :jpush_flutter
  920. +--- project :screen
  921. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  922. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  923. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  924. | \--- org.jetbrains:annotations:13.0
  925. +--- androidx.lifecycle:lifecycle-common:2.0.0
  926. | \--- androidx.annotation:annotation:1.0.0
  927. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  928. \--- junit:junit:4.12
  929. \--- org.hamcrest:hamcrest-core:1.3
  930. debugUnitTestCompileOnly - Compile only dependencies for compilation 'debugUnitTest' (target (androidJvm)).
  931. No dependencies
  932. debugUnitTestCompileOnlyDependenciesMetadata
  933. No dependencies
  934. debugUnitTestImplementation - Implementation only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
  935. No dependencies
  936. debugUnitTestImplementationDependenciesMetadata
  937. \--- junit:junit:4.12
  938. \--- org.hamcrest:hamcrest-core:1.3
  939. debugUnitTestRuntime - Runtime dependencies for compilation 'debugUnitTest' (target (androidJvm)) (deprecated, use 'debugUnitTestRuntimeOnly ' instead).
  940. No dependencies
  941. debugUnitTestRuntimeClasspath - Runtime classpath of compilation 'debugUnitTest' (target (androidJvm)).
  942. +--- project :file_picker
  943. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  944. | +--- androidx.annotation:annotation:1.0.0
  945. | +--- androidx.core:core:1.0.1
  946. | | +--- androidx.annotation:annotation:1.0.0
  947. | | +--- androidx.collection:collection:1.0.0
  948. | | | \--- androidx.annotation:annotation:1.0.0
  949. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  950. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  951. | | | | \--- androidx.annotation:annotation:1.0.0
  952. | | | +--- androidx.arch.core:core-common:2.0.0
  953. | | | | \--- androidx.annotation:annotation:1.0.0
  954. | | | \--- androidx.annotation:annotation:1.0.0
  955. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  956. | | +--- androidx.annotation:annotation:1.0.0
  957. | | \--- androidx.collection:collection:1.0.0 (*)
  958. | +--- androidx.collection:collection:1.0.0 (*)
  959. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  960. | | \--- androidx.annotation:annotation:1.0.0
  961. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  962. | | +--- androidx.annotation:annotation:1.0.0
  963. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  964. | | +--- androidx.documentfile:documentfile:1.0.0
  965. | | | \--- androidx.annotation:annotation:1.0.0
  966. | | +--- androidx.loader:loader:1.0.0
  967. | | | +--- androidx.annotation:annotation:1.0.0
  968. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  969. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  970. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  971. | | | | | +--- androidx.annotation:annotation:1.0.0
  972. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  973. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  974. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  975. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  976. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  977. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  978. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  979. | | | \--- androidx.annotation:annotation:1.0.0
  980. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  981. | | | \--- androidx.annotation:annotation:1.0.0
  982. | | \--- androidx.print:print:1.0.0
  983. | | \--- androidx.annotation:annotation:1.0.0
  984. | +--- androidx.fragment:fragment:1.0.0
  985. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  986. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  987. | | | +--- androidx.annotation:annotation:1.0.0
  988. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  989. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  990. | | | +--- androidx.customview:customview:1.0.0
  991. | | | | +--- androidx.annotation:annotation:1.0.0
  992. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  993. | | | +--- androidx.viewpager:viewpager:1.0.0
  994. | | | | +--- androidx.annotation:annotation:1.0.0
  995. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  996. | | | | \--- androidx.customview:customview:1.0.0 (*)
  997. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  998. | | | | +--- androidx.annotation:annotation:1.0.0
  999. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1000. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1001. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  1002. | | | | +--- androidx.annotation:annotation:1.0.0
  1003. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1004. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1005. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  1006. | | | | +--- androidx.annotation:annotation:1.0.0
  1007. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1008. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1009. | | | +--- androidx.interpolator:interpolator:1.0.0
  1010. | | | | \--- androidx.annotation:annotation:1.0.0
  1011. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  1012. | | | | +--- androidx.annotation:annotation:1.0.0
  1013. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1014. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  1015. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  1016. | | | | +--- androidx.annotation:annotation:1.0.0
  1017. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1018. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  1019. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  1020. | | +--- androidx.annotation:annotation:1.0.0
  1021. | | +--- androidx.loader:loader:1.0.0 (*)
  1022. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  1023. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  1024. | | +--- androidx.annotation:annotation:1.0.0
  1025. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1026. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  1027. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  1028. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  1029. +--- project :screen_stream_plugin
  1030. | +--- org.bytedeco:javacv:1.4.4
  1031. | | +--- org.bytedeco:javacpp:1.4.4
  1032. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  1033. | | | \--- org.bytedeco:javacpp:1.4.4
  1034. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  1035. | | | \--- org.bytedeco:javacpp:1.4.4
  1036. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  1037. | | | \--- org.bytedeco:javacpp:1.4.4
  1038. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  1039. | | | \--- org.bytedeco:javacpp:1.4.4
  1040. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  1041. | | | \--- org.bytedeco:javacpp:1.4.4
  1042. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  1043. | | | \--- org.bytedeco:javacpp:1.4.4
  1044. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  1045. | | | \--- org.bytedeco:javacpp:1.4.4
  1046. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  1047. | | | \--- org.bytedeco:javacpp:1.4.4
  1048. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  1049. | | | \--- org.bytedeco:javacpp:1.4.4
  1050. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  1051. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  1052. | | | \--- org.bytedeco:javacpp:1.4.4
  1053. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  1054. | | | \--- org.bytedeco:javacpp:1.4.4
  1055. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  1056. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  1057. | | \--- org.bytedeco:javacpp:1.4.4
  1058. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  1059. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  1060. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  1061. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  1062. | \--- net.gotev:uploadservice:3.5.2
  1063. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  1064. +--- project :video_player
  1065. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  1066. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1067. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  1068. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1069. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1070. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  1071. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1072. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1073. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  1074. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1075. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1076. +--- project :package_info
  1077. +--- project :ttdj_plugin
  1078. +--- project :flutter_picker
  1079. +--- project :url_launcher
  1080. +--- project :path_provider
  1081. +--- project :image_cropper
  1082. | \--- com.github.yalantis:ucrop:2.2.3
  1083. | +--- com.android.support:appcompat-v7:28.0.0
  1084. | | +--- com.android.support:support-annotations:28.0.0
  1085. | | +--- com.android.support:support-compat:28.0.0
  1086. | | | +--- com.android.support:support-annotations:28.0.0
  1087. | | | +--- com.android.support:collections:28.0.0
  1088. | | | | \--- com.android.support:support-annotations:28.0.0
  1089. | | | +--- android.arch.lifecycle:runtime:1.1.1
  1090. | | | | +--- android.arch.lifecycle:common:1.1.1
  1091. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1092. | | | | +--- android.arch.core:common:1.1.1
  1093. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1094. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1095. | | | \--- com.android.support:versionedparcelable:28.0.0
  1096. | | | +--- com.android.support:support-annotations:28.0.0
  1097. | | | \--- com.android.support:collections:28.0.0 (*)
  1098. | | +--- com.android.support:collections:28.0.0 (*)
  1099. | | +--- com.android.support:cursoradapter:28.0.0
  1100. | | | \--- com.android.support:support-annotations:28.0.0
  1101. | | +--- com.android.support:support-core-utils:28.0.0
  1102. | | | +--- com.android.support:support-annotations:28.0.0
  1103. | | | +--- com.android.support:support-compat:28.0.0 (*)
  1104. | | | +--- com.android.support:documentfile:28.0.0
  1105. | | | | \--- com.android.support:support-annotations:28.0.0
  1106. | | | +--- com.android.support:loader:28.0.0
  1107. | | | | +--- com.android.support:support-annotations:28.0.0
  1108. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1109. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  1110. | | | | | +--- android.arch.core:runtime:1.1.1
  1111. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1112. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  1113. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  1114. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  1115. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  1116. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  1117. | | | | | \--- android.arch.core:common:1.1.1 (*)
  1118. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  1119. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1120. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  1121. | | | | \--- com.android.support:support-annotations:28.0.0
  1122. | | | \--- com.android.support:print:28.0.0
  1123. | | | \--- com.android.support:support-annotations:28.0.0
  1124. | | +--- com.android.support:support-fragment:28.0.0
  1125. | | | +--- com.android.support:support-compat:28.0.0 (*)
  1126. | | | +--- com.android.support:support-core-ui:28.0.0
  1127. | | | | +--- com.android.support:support-annotations:28.0.0
  1128. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1129. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1130. | | | | +--- com.android.support:customview:28.0.0
  1131. | | | | | +--- com.android.support:support-annotations:28.0.0
  1132. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  1133. | | | | +--- com.android.support:viewpager:28.0.0
  1134. | | | | | +--- com.android.support:support-annotations:28.0.0
  1135. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1136. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1137. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  1138. | | | | | +--- com.android.support:support-annotations:28.0.0
  1139. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1140. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1141. | | | | +--- com.android.support:drawerlayout:28.0.0
  1142. | | | | | +--- com.android.support:support-annotations:28.0.0
  1143. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1144. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1145. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  1146. | | | | | +--- com.android.support:support-annotations:28.0.0
  1147. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1148. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1149. | | | | +--- com.android.support:interpolator:28.0.0
  1150. | | | | | \--- com.android.support:support-annotations:28.0.0
  1151. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  1152. | | | | | +--- com.android.support:support-annotations:28.0.0
  1153. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1154. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  1155. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  1156. | | | | | +--- com.android.support:support-annotations:28.0.0
  1157. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  1158. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  1159. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1160. | | | +--- com.android.support:support-annotations:28.0.0
  1161. | | | +--- com.android.support:loader:28.0.0 (*)
  1162. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  1163. | | +--- com.android.support:support-vector-drawable:28.0.0
  1164. | | | +--- com.android.support:support-annotations:28.0.0
  1165. | | | \--- com.android.support:support-compat:28.0.0 (*)
  1166. | | \--- com.android.support:animated-vector-drawable:28.0.0
  1167. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  1168. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  1169. | +--- com.android.support:exifinterface:28.0.0
  1170. | | \--- com.android.support:support-annotations:28.0.0
  1171. | +--- com.android.support:design:28.0.0
  1172. | | +--- com.android.support:support-annotations:28.0.0
  1173. | | +--- com.android.support:support-compat:28.0.0 (*)
  1174. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  1175. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1176. | | +--- com.android.support:support-fragment:28.0.0 (*)
  1177. | | +--- com.android.support:transition:28.0.0
  1178. | | | +--- com.android.support:support-annotations:28.0.0
  1179. | | | \--- com.android.support:support-compat:28.0.0 (*)
  1180. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  1181. | | +--- com.android.support:cardview-v7:28.0.0
  1182. | | | \--- com.android.support:support-annotations:28.0.0
  1183. | | \--- com.android.support:recyclerview-v7:28.0.0
  1184. | | +--- com.android.support:support-annotations:28.0.0
  1185. | | +--- com.android.support:support-compat:28.0.0 (*)
  1186. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  1187. | \--- com.squareup.okhttp3:okhttp:3.11.0
  1188. | \--- com.squareup.okio:okio:1.14.0
  1189. +--- project :shared_preferences
  1190. +--- project :jpush_flutter
  1191. | +--- cn.jiguang.sdk:jpush:3.1.6
  1192. | \--- cn.jiguang.sdk:jcore:1.2.5
  1193. +--- project :screen
  1194. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1195. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1196. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1197. | \--- org.jetbrains:annotations:13.0
  1198. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  1199. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1200. \--- junit:junit:4.12
  1201. \--- org.hamcrest:hamcrest-core:1.3
  1202. debugUnitTestRuntimeOnly - Runtime only dependencies for compilation 'debugUnitTest' (target (androidJvm)). (n)
  1203. No dependencies
  1204. debugUnitTestRuntimeOnlyDependenciesMetadata
  1205. No dependencies
  1206. debugWearApp - Link to a wear app to embed for object 'debug'. (n)
  1207. No dependencies
  1208. debugWearBundling - Resolved Configuration for wear app bundling for variant: debug
  1209. No dependencies
  1210. default - Configuration for default artifacts.
  1211. No dependencies
  1212. dynamicProfileAnnotationProcessor - Classpath for the annotation processor for 'dynamicProfile'. (n)
  1213. No dependencies
  1214. dynamicProfileAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: dynamicProfile
  1215. No dependencies
  1216. dynamicProfileApi - API dependencies for compilation 'dynamicProfile' (target (androidJvm)). (n)
  1217. \--- unspecified (n)
  1218. dynamicProfileApiDependenciesMetadata
  1219. No dependencies
  1220. dynamicProfileApiElements - API elements for dynamicProfile (n)
  1221. No dependencies
  1222. dynamicProfileApk - Apk dependencies for 'dynamicProfile' sources (deprecated: use 'dynamicProfileRuntimeOnly' instead). (n)
  1223. No dependencies
  1224. dynamicProfileBundleElements - Bundle elements for dynamicProfile (n)
  1225. No dependencies
  1226. dynamicProfileCompile - Dependencies for compilation 'dynamicProfile' (target (androidJvm)) (deprecated, use 'dynamicProfileImplementation ' instead).
  1227. No dependencies
  1228. dynamicProfileCompileClasspath - Compile classpath for compilation 'dynamicProfile' (target (androidJvm)).
  1229. +--- project :file_picker
  1230. +--- project :screen_stream_plugin
  1231. +--- project :video_player
  1232. +--- project :package_info
  1233. +--- project :ttdj_plugin
  1234. +--- project :flutter_picker
  1235. +--- project :url_launcher
  1236. +--- project :path_provider
  1237. +--- project :image_cropper
  1238. +--- project :shared_preferences
  1239. +--- project :jpush_flutter
  1240. +--- project :screen
  1241. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1242. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1243. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1244. | \--- org.jetbrains:annotations:13.0
  1245. +--- androidx.lifecycle:lifecycle-common:2.0.0
  1246. | \--- androidx.annotation:annotation:1.0.0
  1247. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1248. dynamicProfileCompileOnly - Compile only dependencies for compilation 'dynamicProfile' (target (androidJvm)).
  1249. No dependencies
  1250. dynamicProfileCompileOnlyDependenciesMetadata
  1251. No dependencies
  1252. dynamicProfileImplementation - Implementation only dependencies for compilation 'dynamicProfile' (target (androidJvm)). (n)
  1253. No dependencies
  1254. dynamicProfileImplementationDependenciesMetadata
  1255. +--- project :file_picker FAILED
  1256. +--- project :screen_stream_plugin FAILED
  1257. +--- project :video_player FAILED
  1258. +--- project :package_info FAILED
  1259. +--- project :ttdj_plugin FAILED
  1260. +--- project :flutter_picker FAILED
  1261. +--- project :url_launcher FAILED
  1262. +--- project :path_provider FAILED
  1263. +--- project :image_cropper FAILED
  1264. +--- project :shared_preferences FAILED
  1265. +--- project :jpush_flutter FAILED
  1266. +--- project :screen FAILED
  1267. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1268. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1269. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1270. | \--- org.jetbrains:annotations:13.0
  1271. +--- androidx.lifecycle:lifecycle-common:2.0.0
  1272. | \--- androidx.annotation:annotation:1.0.0
  1273. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1274. dynamicProfileMetadataElements (n)
  1275. No dependencies
  1276. dynamicProfileMetadataValues - Metadata Values dependencies for the base Split
  1277. No dependencies
  1278. dynamicProfileProvided - Provided dependencies for 'dynamicProfile' sources (deprecated: use 'dynamicProfileCompileOnly' instead). (n)
  1279. No dependencies
  1280. dynamicProfileRuntime - Runtime dependencies for compilation 'dynamicProfile' (target (androidJvm)) (deprecated, use 'dynamicProfileRuntimeOnly ' instead).
  1281. No dependencies
  1282. dynamicProfileRuntimeClasspath - Runtime classpath of compilation 'dynamicProfile' (target (androidJvm)).
  1283. +--- project :file_picker
  1284. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  1285. | +--- androidx.annotation:annotation:1.0.0
  1286. | +--- androidx.core:core:1.0.1
  1287. | | +--- androidx.annotation:annotation:1.0.0
  1288. | | +--- androidx.collection:collection:1.0.0
  1289. | | | \--- androidx.annotation:annotation:1.0.0
  1290. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  1291. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  1292. | | | | \--- androidx.annotation:annotation:1.0.0
  1293. | | | +--- androidx.arch.core:core-common:2.0.0
  1294. | | | | \--- androidx.annotation:annotation:1.0.0
  1295. | | | \--- androidx.annotation:annotation:1.0.0
  1296. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  1297. | | +--- androidx.annotation:annotation:1.0.0
  1298. | | \--- androidx.collection:collection:1.0.0 (*)
  1299. | +--- androidx.collection:collection:1.0.0 (*)
  1300. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  1301. | | \--- androidx.annotation:annotation:1.0.0
  1302. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  1303. | | +--- androidx.annotation:annotation:1.0.0
  1304. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1305. | | +--- androidx.documentfile:documentfile:1.0.0
  1306. | | | \--- androidx.annotation:annotation:1.0.0
  1307. | | +--- androidx.loader:loader:1.0.0
  1308. | | | +--- androidx.annotation:annotation:1.0.0
  1309. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1310. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  1311. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  1312. | | | | | +--- androidx.annotation:annotation:1.0.0
  1313. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  1314. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  1315. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  1316. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  1317. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  1318. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  1319. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  1320. | | | \--- androidx.annotation:annotation:1.0.0
  1321. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  1322. | | | \--- androidx.annotation:annotation:1.0.0
  1323. | | \--- androidx.print:print:1.0.0
  1324. | | \--- androidx.annotation:annotation:1.0.0
  1325. | +--- androidx.fragment:fragment:1.0.0
  1326. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1327. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  1328. | | | +--- androidx.annotation:annotation:1.0.0
  1329. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1330. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  1331. | | | +--- androidx.customview:customview:1.0.0
  1332. | | | | +--- androidx.annotation:annotation:1.0.0
  1333. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1334. | | | +--- androidx.viewpager:viewpager:1.0.0
  1335. | | | | +--- androidx.annotation:annotation:1.0.0
  1336. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1337. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1338. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  1339. | | | | +--- androidx.annotation:annotation:1.0.0
  1340. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1341. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1342. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  1343. | | | | +--- androidx.annotation:annotation:1.0.0
  1344. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1345. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1346. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  1347. | | | | +--- androidx.annotation:annotation:1.0.0
  1348. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1349. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1350. | | | +--- androidx.interpolator:interpolator:1.0.0
  1351. | | | | \--- androidx.annotation:annotation:1.0.0
  1352. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  1353. | | | | +--- androidx.annotation:annotation:1.0.0
  1354. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1355. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  1356. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  1357. | | | | +--- androidx.annotation:annotation:1.0.0
  1358. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1359. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  1360. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  1361. | | +--- androidx.annotation:annotation:1.0.0
  1362. | | +--- androidx.loader:loader:1.0.0 (*)
  1363. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  1364. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  1365. | | +--- androidx.annotation:annotation:1.0.0
  1366. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1367. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  1368. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  1369. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  1370. +--- project :screen_stream_plugin
  1371. | +--- org.bytedeco:javacv:1.4.4
  1372. | | +--- org.bytedeco:javacpp:1.4.4
  1373. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  1374. | | | \--- org.bytedeco:javacpp:1.4.4
  1375. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  1376. | | | \--- org.bytedeco:javacpp:1.4.4
  1377. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  1378. | | | \--- org.bytedeco:javacpp:1.4.4
  1379. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  1380. | | | \--- org.bytedeco:javacpp:1.4.4
  1381. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  1382. | | | \--- org.bytedeco:javacpp:1.4.4
  1383. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  1384. | | | \--- org.bytedeco:javacpp:1.4.4
  1385. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  1386. | | | \--- org.bytedeco:javacpp:1.4.4
  1387. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  1388. | | | \--- org.bytedeco:javacpp:1.4.4
  1389. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  1390. | | | \--- org.bytedeco:javacpp:1.4.4
  1391. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  1392. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  1393. | | | \--- org.bytedeco:javacpp:1.4.4
  1394. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  1395. | | | \--- org.bytedeco:javacpp:1.4.4
  1396. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  1397. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  1398. | | \--- org.bytedeco:javacpp:1.4.4
  1399. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  1400. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  1401. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  1402. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  1403. | \--- net.gotev:uploadservice:3.5.2
  1404. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  1405. +--- project :video_player
  1406. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  1407. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1408. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  1409. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1410. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1411. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  1412. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1413. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1414. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  1415. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1416. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1417. +--- project :package_info
  1418. +--- project :ttdj_plugin
  1419. +--- project :flutter_picker
  1420. +--- project :url_launcher
  1421. +--- project :path_provider
  1422. +--- project :image_cropper
  1423. | \--- com.github.yalantis:ucrop:2.2.3
  1424. | +--- com.android.support:appcompat-v7:28.0.0
  1425. | | +--- com.android.support:support-annotations:28.0.0
  1426. | | +--- com.android.support:support-compat:28.0.0
  1427. | | | +--- com.android.support:support-annotations:28.0.0
  1428. | | | +--- com.android.support:collections:28.0.0
  1429. | | | | \--- com.android.support:support-annotations:28.0.0
  1430. | | | +--- android.arch.lifecycle:runtime:1.1.1
  1431. | | | | +--- android.arch.lifecycle:common:1.1.1
  1432. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1433. | | | | +--- android.arch.core:common:1.1.1
  1434. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1435. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1436. | | | \--- com.android.support:versionedparcelable:28.0.0
  1437. | | | +--- com.android.support:support-annotations:28.0.0
  1438. | | | \--- com.android.support:collections:28.0.0 (*)
  1439. | | +--- com.android.support:collections:28.0.0 (*)
  1440. | | +--- com.android.support:cursoradapter:28.0.0
  1441. | | | \--- com.android.support:support-annotations:28.0.0
  1442. | | +--- com.android.support:support-core-utils:28.0.0
  1443. | | | +--- com.android.support:support-annotations:28.0.0
  1444. | | | +--- com.android.support:support-compat:28.0.0 (*)
  1445. | | | +--- com.android.support:documentfile:28.0.0
  1446. | | | | \--- com.android.support:support-annotations:28.0.0
  1447. | | | +--- com.android.support:loader:28.0.0
  1448. | | | | +--- com.android.support:support-annotations:28.0.0
  1449. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1450. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  1451. | | | | | +--- android.arch.core:runtime:1.1.1
  1452. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1453. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  1454. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  1455. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  1456. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  1457. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  1458. | | | | | \--- android.arch.core:common:1.1.1 (*)
  1459. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  1460. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1461. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  1462. | | | | \--- com.android.support:support-annotations:28.0.0
  1463. | | | \--- com.android.support:print:28.0.0
  1464. | | | \--- com.android.support:support-annotations:28.0.0
  1465. | | +--- com.android.support:support-fragment:28.0.0
  1466. | | | +--- com.android.support:support-compat:28.0.0 (*)
  1467. | | | +--- com.android.support:support-core-ui:28.0.0
  1468. | | | | +--- com.android.support:support-annotations:28.0.0
  1469. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1470. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1471. | | | | +--- com.android.support:customview:28.0.0
  1472. | | | | | +--- com.android.support:support-annotations:28.0.0
  1473. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  1474. | | | | +--- com.android.support:viewpager:28.0.0
  1475. | | | | | +--- com.android.support:support-annotations:28.0.0
  1476. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1477. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1478. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  1479. | | | | | +--- com.android.support:support-annotations:28.0.0
  1480. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1481. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1482. | | | | +--- com.android.support:drawerlayout:28.0.0
  1483. | | | | | +--- com.android.support:support-annotations:28.0.0
  1484. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1485. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1486. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  1487. | | | | | +--- com.android.support:support-annotations:28.0.0
  1488. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1489. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1490. | | | | +--- com.android.support:interpolator:28.0.0
  1491. | | | | | \--- com.android.support:support-annotations:28.0.0
  1492. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  1493. | | | | | +--- com.android.support:support-annotations:28.0.0
  1494. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1495. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  1496. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  1497. | | | | | +--- com.android.support:support-annotations:28.0.0
  1498. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  1499. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  1500. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1501. | | | +--- com.android.support:support-annotations:28.0.0
  1502. | | | +--- com.android.support:loader:28.0.0 (*)
  1503. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  1504. | | +--- com.android.support:support-vector-drawable:28.0.0
  1505. | | | +--- com.android.support:support-annotations:28.0.0
  1506. | | | \--- com.android.support:support-compat:28.0.0 (*)
  1507. | | \--- com.android.support:animated-vector-drawable:28.0.0
  1508. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  1509. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  1510. | +--- com.android.support:exifinterface:28.0.0
  1511. | | \--- com.android.support:support-annotations:28.0.0
  1512. | +--- com.android.support:design:28.0.0
  1513. | | +--- com.android.support:support-annotations:28.0.0
  1514. | | +--- com.android.support:support-compat:28.0.0 (*)
  1515. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  1516. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1517. | | +--- com.android.support:support-fragment:28.0.0 (*)
  1518. | | +--- com.android.support:transition:28.0.0
  1519. | | | +--- com.android.support:support-annotations:28.0.0
  1520. | | | \--- com.android.support:support-compat:28.0.0 (*)
  1521. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  1522. | | +--- com.android.support:cardview-v7:28.0.0
  1523. | | | \--- com.android.support:support-annotations:28.0.0
  1524. | | \--- com.android.support:recyclerview-v7:28.0.0
  1525. | | +--- com.android.support:support-annotations:28.0.0
  1526. | | +--- com.android.support:support-compat:28.0.0 (*)
  1527. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  1528. | \--- com.squareup.okhttp3:okhttp:3.11.0
  1529. | \--- com.squareup.okio:okio:1.14.0
  1530. +--- project :shared_preferences
  1531. +--- project :jpush_flutter
  1532. | +--- cn.jiguang.sdk:jpush:3.1.6
  1533. | \--- cn.jiguang.sdk:jcore:1.2.5
  1534. +--- project :screen
  1535. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1536. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1537. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1538. | \--- org.jetbrains:annotations:13.0
  1539. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  1540. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1541. dynamicProfileRuntimeElements - Runtime elements for dynamicProfile (n)
  1542. No dependencies
  1543. dynamicProfileRuntimeOnly - Runtime only dependencies for compilation 'dynamicProfile' (target (androidJvm)). (n)
  1544. No dependencies
  1545. dynamicProfileRuntimeOnlyDependenciesMetadata
  1546. No dependencies
  1547. dynamicProfileUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: dynamicProfileUnitTest
  1548. No dependencies
  1549. dynamicProfileUnitTestApi - API dependencies for compilation 'dynamicProfileUnitTest' (target (androidJvm)). (n)
  1550. No dependencies
  1551. dynamicProfileUnitTestApiDependenciesMetadata
  1552. No dependencies
  1553. dynamicProfileUnitTestCompile - Dependencies for compilation 'dynamicProfileUnitTest' (target (androidJvm)) (deprecated, use 'dynamicProfileUnitTestImplementation ' instead).
  1554. No dependencies
  1555. dynamicProfileUnitTestCompileClasspath - Compile classpath for compilation 'dynamicProfileUnitTest' (target (androidJvm)).
  1556. +--- project :file_picker
  1557. +--- project :screen_stream_plugin
  1558. +--- project :video_player
  1559. +--- project :package_info
  1560. +--- project :ttdj_plugin
  1561. +--- project :flutter_picker
  1562. +--- project :url_launcher
  1563. +--- project :path_provider
  1564. +--- project :image_cropper
  1565. +--- project :shared_preferences
  1566. +--- project :jpush_flutter
  1567. +--- project :screen
  1568. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1569. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1570. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1571. | \--- org.jetbrains:annotations:13.0
  1572. +--- androidx.lifecycle:lifecycle-common:2.0.0
  1573. | \--- androidx.annotation:annotation:1.0.0
  1574. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1575. \--- junit:junit:4.12
  1576. \--- org.hamcrest:hamcrest-core:1.3
  1577. dynamicProfileUnitTestCompileOnly - Compile only dependencies for compilation 'dynamicProfileUnitTest' (target (androidJvm)).
  1578. No dependencies
  1579. dynamicProfileUnitTestCompileOnlyDependenciesMetadata
  1580. No dependencies
  1581. dynamicProfileUnitTestImplementation - Implementation only dependencies for compilation 'dynamicProfileUnitTest' (target (androidJvm)). (n)
  1582. No dependencies
  1583. dynamicProfileUnitTestImplementationDependenciesMetadata
  1584. \--- junit:junit:4.12
  1585. \--- org.hamcrest:hamcrest-core:1.3
  1586. dynamicProfileUnitTestRuntime - Runtime dependencies for compilation 'dynamicProfileUnitTest' (target (androidJvm)) (deprecated, use 'dynamicProfileUnitTestRuntimeOnly ' instead).
  1587. No dependencies
  1588. dynamicProfileUnitTestRuntimeClasspath - Runtime classpath of compilation 'dynamicProfileUnitTest' (target (androidJvm)).
  1589. +--- project :file_picker
  1590. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  1591. | +--- androidx.annotation:annotation:1.0.0
  1592. | +--- androidx.core:core:1.0.1
  1593. | | +--- androidx.annotation:annotation:1.0.0
  1594. | | +--- androidx.collection:collection:1.0.0
  1595. | | | \--- androidx.annotation:annotation:1.0.0
  1596. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  1597. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  1598. | | | | \--- androidx.annotation:annotation:1.0.0
  1599. | | | +--- androidx.arch.core:core-common:2.0.0
  1600. | | | | \--- androidx.annotation:annotation:1.0.0
  1601. | | | \--- androidx.annotation:annotation:1.0.0
  1602. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  1603. | | +--- androidx.annotation:annotation:1.0.0
  1604. | | \--- androidx.collection:collection:1.0.0 (*)
  1605. | +--- androidx.collection:collection:1.0.0 (*)
  1606. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  1607. | | \--- androidx.annotation:annotation:1.0.0
  1608. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  1609. | | +--- androidx.annotation:annotation:1.0.0
  1610. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1611. | | +--- androidx.documentfile:documentfile:1.0.0
  1612. | | | \--- androidx.annotation:annotation:1.0.0
  1613. | | +--- androidx.loader:loader:1.0.0
  1614. | | | +--- androidx.annotation:annotation:1.0.0
  1615. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1616. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  1617. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  1618. | | | | | +--- androidx.annotation:annotation:1.0.0
  1619. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  1620. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  1621. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  1622. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  1623. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  1624. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  1625. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  1626. | | | \--- androidx.annotation:annotation:1.0.0
  1627. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  1628. | | | \--- androidx.annotation:annotation:1.0.0
  1629. | | \--- androidx.print:print:1.0.0
  1630. | | \--- androidx.annotation:annotation:1.0.0
  1631. | +--- androidx.fragment:fragment:1.0.0
  1632. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1633. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  1634. | | | +--- androidx.annotation:annotation:1.0.0
  1635. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1636. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  1637. | | | +--- androidx.customview:customview:1.0.0
  1638. | | | | +--- androidx.annotation:annotation:1.0.0
  1639. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1640. | | | +--- androidx.viewpager:viewpager:1.0.0
  1641. | | | | +--- androidx.annotation:annotation:1.0.0
  1642. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1643. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1644. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  1645. | | | | +--- androidx.annotation:annotation:1.0.0
  1646. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1647. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1648. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  1649. | | | | +--- androidx.annotation:annotation:1.0.0
  1650. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1651. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1652. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  1653. | | | | +--- androidx.annotation:annotation:1.0.0
  1654. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1655. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1656. | | | +--- androidx.interpolator:interpolator:1.0.0
  1657. | | | | \--- androidx.annotation:annotation:1.0.0
  1658. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  1659. | | | | +--- androidx.annotation:annotation:1.0.0
  1660. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1661. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  1662. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  1663. | | | | +--- androidx.annotation:annotation:1.0.0
  1664. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1665. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  1666. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  1667. | | +--- androidx.annotation:annotation:1.0.0
  1668. | | +--- androidx.loader:loader:1.0.0 (*)
  1669. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  1670. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  1671. | | +--- androidx.annotation:annotation:1.0.0
  1672. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1673. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  1674. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  1675. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  1676. +--- project :screen_stream_plugin
  1677. | +--- org.bytedeco:javacv:1.4.4
  1678. | | +--- org.bytedeco:javacpp:1.4.4
  1679. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  1680. | | | \--- org.bytedeco:javacpp:1.4.4
  1681. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  1682. | | | \--- org.bytedeco:javacpp:1.4.4
  1683. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  1684. | | | \--- org.bytedeco:javacpp:1.4.4
  1685. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  1686. | | | \--- org.bytedeco:javacpp:1.4.4
  1687. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  1688. | | | \--- org.bytedeco:javacpp:1.4.4
  1689. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  1690. | | | \--- org.bytedeco:javacpp:1.4.4
  1691. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  1692. | | | \--- org.bytedeco:javacpp:1.4.4
  1693. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  1694. | | | \--- org.bytedeco:javacpp:1.4.4
  1695. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  1696. | | | \--- org.bytedeco:javacpp:1.4.4
  1697. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  1698. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  1699. | | | \--- org.bytedeco:javacpp:1.4.4
  1700. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  1701. | | | \--- org.bytedeco:javacpp:1.4.4
  1702. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  1703. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  1704. | | \--- org.bytedeco:javacpp:1.4.4
  1705. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  1706. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  1707. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  1708. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  1709. | \--- net.gotev:uploadservice:3.5.2
  1710. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  1711. +--- project :video_player
  1712. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  1713. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1714. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  1715. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1716. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1717. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  1718. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1719. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1720. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  1721. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  1722. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  1723. +--- project :package_info
  1724. +--- project :ttdj_plugin
  1725. +--- project :flutter_picker
  1726. +--- project :url_launcher
  1727. +--- project :path_provider
  1728. +--- project :image_cropper
  1729. | \--- com.github.yalantis:ucrop:2.2.3
  1730. | +--- com.android.support:appcompat-v7:28.0.0
  1731. | | +--- com.android.support:support-annotations:28.0.0
  1732. | | +--- com.android.support:support-compat:28.0.0
  1733. | | | +--- com.android.support:support-annotations:28.0.0
  1734. | | | +--- com.android.support:collections:28.0.0
  1735. | | | | \--- com.android.support:support-annotations:28.0.0
  1736. | | | +--- android.arch.lifecycle:runtime:1.1.1
  1737. | | | | +--- android.arch.lifecycle:common:1.1.1
  1738. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1739. | | | | +--- android.arch.core:common:1.1.1
  1740. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1741. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1742. | | | \--- com.android.support:versionedparcelable:28.0.0
  1743. | | | +--- com.android.support:support-annotations:28.0.0
  1744. | | | \--- com.android.support:collections:28.0.0 (*)
  1745. | | +--- com.android.support:collections:28.0.0 (*)
  1746. | | +--- com.android.support:cursoradapter:28.0.0
  1747. | | | \--- com.android.support:support-annotations:28.0.0
  1748. | | +--- com.android.support:support-core-utils:28.0.0
  1749. | | | +--- com.android.support:support-annotations:28.0.0
  1750. | | | +--- com.android.support:support-compat:28.0.0 (*)
  1751. | | | +--- com.android.support:documentfile:28.0.0
  1752. | | | | \--- com.android.support:support-annotations:28.0.0
  1753. | | | +--- com.android.support:loader:28.0.0
  1754. | | | | +--- com.android.support:support-annotations:28.0.0
  1755. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1756. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  1757. | | | | | +--- android.arch.core:runtime:1.1.1
  1758. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1759. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  1760. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  1761. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  1762. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  1763. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  1764. | | | | | \--- android.arch.core:common:1.1.1 (*)
  1765. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  1766. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  1767. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  1768. | | | | \--- com.android.support:support-annotations:28.0.0
  1769. | | | \--- com.android.support:print:28.0.0
  1770. | | | \--- com.android.support:support-annotations:28.0.0
  1771. | | +--- com.android.support:support-fragment:28.0.0
  1772. | | | +--- com.android.support:support-compat:28.0.0 (*)
  1773. | | | +--- com.android.support:support-core-ui:28.0.0
  1774. | | | | +--- com.android.support:support-annotations:28.0.0
  1775. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1776. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1777. | | | | +--- com.android.support:customview:28.0.0
  1778. | | | | | +--- com.android.support:support-annotations:28.0.0
  1779. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  1780. | | | | +--- com.android.support:viewpager:28.0.0
  1781. | | | | | +--- com.android.support:support-annotations:28.0.0
  1782. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1783. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1784. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  1785. | | | | | +--- com.android.support:support-annotations:28.0.0
  1786. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1787. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1788. | | | | +--- com.android.support:drawerlayout:28.0.0
  1789. | | | | | +--- com.android.support:support-annotations:28.0.0
  1790. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1791. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1792. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  1793. | | | | | +--- com.android.support:support-annotations:28.0.0
  1794. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1795. | | | | | \--- com.android.support:customview:28.0.0 (*)
  1796. | | | | +--- com.android.support:interpolator:28.0.0
  1797. | | | | | \--- com.android.support:support-annotations:28.0.0
  1798. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  1799. | | | | | +--- com.android.support:support-annotations:28.0.0
  1800. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  1801. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  1802. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  1803. | | | | | +--- com.android.support:support-annotations:28.0.0
  1804. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  1805. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  1806. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1807. | | | +--- com.android.support:support-annotations:28.0.0
  1808. | | | +--- com.android.support:loader:28.0.0 (*)
  1809. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  1810. | | +--- com.android.support:support-vector-drawable:28.0.0
  1811. | | | +--- com.android.support:support-annotations:28.0.0
  1812. | | | \--- com.android.support:support-compat:28.0.0 (*)
  1813. | | \--- com.android.support:animated-vector-drawable:28.0.0
  1814. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  1815. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  1816. | +--- com.android.support:exifinterface:28.0.0
  1817. | | \--- com.android.support:support-annotations:28.0.0
  1818. | +--- com.android.support:design:28.0.0
  1819. | | +--- com.android.support:support-annotations:28.0.0
  1820. | | +--- com.android.support:support-compat:28.0.0 (*)
  1821. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  1822. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  1823. | | +--- com.android.support:support-fragment:28.0.0 (*)
  1824. | | +--- com.android.support:transition:28.0.0
  1825. | | | +--- com.android.support:support-annotations:28.0.0
  1826. | | | \--- com.android.support:support-compat:28.0.0 (*)
  1827. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  1828. | | +--- com.android.support:cardview-v7:28.0.0
  1829. | | | \--- com.android.support:support-annotations:28.0.0
  1830. | | \--- com.android.support:recyclerview-v7:28.0.0
  1831. | | +--- com.android.support:support-annotations:28.0.0
  1832. | | +--- com.android.support:support-compat:28.0.0 (*)
  1833. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  1834. | \--- com.squareup.okhttp3:okhttp:3.11.0
  1835. | \--- com.squareup.okio:okio:1.14.0
  1836. +--- project :shared_preferences
  1837. +--- project :jpush_flutter
  1838. | +--- cn.jiguang.sdk:jpush:3.1.6
  1839. | \--- cn.jiguang.sdk:jcore:1.2.5
  1840. +--- project :screen
  1841. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1842. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1843. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1844. | \--- org.jetbrains:annotations:13.0
  1845. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  1846. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1847. \--- junit:junit:4.12
  1848. \--- org.hamcrest:hamcrest-core:1.3
  1849. dynamicProfileUnitTestRuntimeOnly - Runtime only dependencies for compilation 'dynamicProfileUnitTest' (target (androidJvm)). (n)
  1850. No dependencies
  1851. dynamicProfileUnitTestRuntimeOnlyDependenciesMetadata
  1852. No dependencies
  1853. dynamicProfileWearApp - Link to a wear app to embed for object 'dynamicProfile'. (n)
  1854. No dependencies
  1855. dynamicProfileWearBundling - Resolved Configuration for wear app bundling for variant: dynamicProfile
  1856. No dependencies
  1857. dynamicReleaseAnnotationProcessor - Classpath for the annotation processor for 'dynamicRelease'. (n)
  1858. No dependencies
  1859. dynamicReleaseAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: dynamicRelease
  1860. No dependencies
  1861. dynamicReleaseApi - API dependencies for compilation 'dynamicRelease' (target (androidJvm)). (n)
  1862. \--- unspecified (n)
  1863. dynamicReleaseApiDependenciesMetadata
  1864. No dependencies
  1865. dynamicReleaseApiElements - API elements for dynamicRelease (n)
  1866. No dependencies
  1867. dynamicReleaseApk - Apk dependencies for 'dynamicRelease' sources (deprecated: use 'dynamicReleaseRuntimeOnly' instead). (n)
  1868. No dependencies
  1869. dynamicReleaseBundleElements - Bundle elements for dynamicRelease (n)
  1870. No dependencies
  1871. dynamicReleaseCompile - Dependencies for compilation 'dynamicRelease' (target (androidJvm)) (deprecated, use 'dynamicReleaseImplementation ' instead).
  1872. No dependencies
  1873. dynamicReleaseCompileClasspath - Compile classpath for compilation 'dynamicRelease' (target (androidJvm)).
  1874. +--- project :file_picker
  1875. +--- project :screen_stream_plugin
  1876. +--- project :video_player
  1877. +--- project :package_info
  1878. +--- project :ttdj_plugin
  1879. +--- project :flutter_picker
  1880. +--- project :url_launcher
  1881. +--- project :path_provider
  1882. +--- project :image_cropper
  1883. +--- project :shared_preferences
  1884. +--- project :jpush_flutter
  1885. +--- project :screen
  1886. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1887. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1888. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1889. | \--- org.jetbrains:annotations:13.0
  1890. +--- androidx.lifecycle:lifecycle-common:2.0.0
  1891. | \--- androidx.annotation:annotation:1.0.0
  1892. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1893. dynamicReleaseCompileOnly - Compile only dependencies for compilation 'dynamicRelease' (target (androidJvm)).
  1894. No dependencies
  1895. dynamicReleaseCompileOnlyDependenciesMetadata
  1896. No dependencies
  1897. dynamicReleaseImplementation - Implementation only dependencies for compilation 'dynamicRelease' (target (androidJvm)). (n)
  1898. No dependencies
  1899. dynamicReleaseImplementationDependenciesMetadata
  1900. +--- project :file_picker FAILED
  1901. +--- project :screen_stream_plugin FAILED
  1902. +--- project :video_player FAILED
  1903. +--- project :package_info FAILED
  1904. +--- project :ttdj_plugin FAILED
  1905. +--- project :flutter_picker FAILED
  1906. +--- project :url_launcher FAILED
  1907. +--- project :path_provider FAILED
  1908. +--- project :image_cropper FAILED
  1909. +--- project :shared_preferences FAILED
  1910. +--- project :jpush_flutter FAILED
  1911. +--- project :screen FAILED
  1912. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  1913. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  1914. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  1915. | \--- org.jetbrains:annotations:13.0
  1916. +--- androidx.lifecycle:lifecycle-common:2.0.0
  1917. | \--- androidx.annotation:annotation:1.0.0
  1918. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  1919. dynamicReleaseMetadataElements (n)
  1920. No dependencies
  1921. dynamicReleaseMetadataValues - Metadata Values dependencies for the base Split
  1922. No dependencies
  1923. dynamicReleaseProvided - Provided dependencies for 'dynamicRelease' sources (deprecated: use 'dynamicReleaseCompileOnly' instead). (n)
  1924. No dependencies
  1925. dynamicReleaseRuntime - Runtime dependencies for compilation 'dynamicRelease' (target (androidJvm)) (deprecated, use 'dynamicReleaseRuntimeOnly ' instead).
  1926. No dependencies
  1927. dynamicReleaseRuntimeClasspath - Runtime classpath of compilation 'dynamicRelease' (target (androidJvm)).
  1928. +--- project :file_picker
  1929. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  1930. | +--- androidx.annotation:annotation:1.0.0
  1931. | +--- androidx.core:core:1.0.1
  1932. | | +--- androidx.annotation:annotation:1.0.0
  1933. | | +--- androidx.collection:collection:1.0.0
  1934. | | | \--- androidx.annotation:annotation:1.0.0
  1935. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  1936. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  1937. | | | | \--- androidx.annotation:annotation:1.0.0
  1938. | | | +--- androidx.arch.core:core-common:2.0.0
  1939. | | | | \--- androidx.annotation:annotation:1.0.0
  1940. | | | \--- androidx.annotation:annotation:1.0.0
  1941. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  1942. | | +--- androidx.annotation:annotation:1.0.0
  1943. | | \--- androidx.collection:collection:1.0.0 (*)
  1944. | +--- androidx.collection:collection:1.0.0 (*)
  1945. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  1946. | | \--- androidx.annotation:annotation:1.0.0
  1947. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  1948. | | +--- androidx.annotation:annotation:1.0.0
  1949. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1950. | | +--- androidx.documentfile:documentfile:1.0.0
  1951. | | | \--- androidx.annotation:annotation:1.0.0
  1952. | | +--- androidx.loader:loader:1.0.0
  1953. | | | +--- androidx.annotation:annotation:1.0.0
  1954. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1955. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  1956. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  1957. | | | | | +--- androidx.annotation:annotation:1.0.0
  1958. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  1959. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  1960. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  1961. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  1962. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  1963. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  1964. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  1965. | | | \--- androidx.annotation:annotation:1.0.0
  1966. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  1967. | | | \--- androidx.annotation:annotation:1.0.0
  1968. | | \--- androidx.print:print:1.0.0
  1969. | | \--- androidx.annotation:annotation:1.0.0
  1970. | +--- androidx.fragment:fragment:1.0.0
  1971. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1972. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  1973. | | | +--- androidx.annotation:annotation:1.0.0
  1974. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1975. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  1976. | | | +--- androidx.customview:customview:1.0.0
  1977. | | | | +--- androidx.annotation:annotation:1.0.0
  1978. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1979. | | | +--- androidx.viewpager:viewpager:1.0.0
  1980. | | | | +--- androidx.annotation:annotation:1.0.0
  1981. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1982. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1983. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  1984. | | | | +--- androidx.annotation:annotation:1.0.0
  1985. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1986. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1987. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  1988. | | | | +--- androidx.annotation:annotation:1.0.0
  1989. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1990. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1991. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  1992. | | | | +--- androidx.annotation:annotation:1.0.0
  1993. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  1994. | | | | \--- androidx.customview:customview:1.0.0 (*)
  1995. | | | +--- androidx.interpolator:interpolator:1.0.0
  1996. | | | | \--- androidx.annotation:annotation:1.0.0
  1997. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  1998. | | | | +--- androidx.annotation:annotation:1.0.0
  1999. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2000. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  2001. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  2002. | | | | +--- androidx.annotation:annotation:1.0.0
  2003. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2004. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  2005. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  2006. | | +--- androidx.annotation:annotation:1.0.0
  2007. | | +--- androidx.loader:loader:1.0.0 (*)
  2008. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  2009. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  2010. | | +--- androidx.annotation:annotation:1.0.0
  2011. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2012. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  2013. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  2014. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  2015. +--- project :screen_stream_plugin
  2016. | +--- org.bytedeco:javacv:1.4.4
  2017. | | +--- org.bytedeco:javacpp:1.4.4
  2018. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  2019. | | | \--- org.bytedeco:javacpp:1.4.4
  2020. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  2021. | | | \--- org.bytedeco:javacpp:1.4.4
  2022. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  2023. | | | \--- org.bytedeco:javacpp:1.4.4
  2024. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  2025. | | | \--- org.bytedeco:javacpp:1.4.4
  2026. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  2027. | | | \--- org.bytedeco:javacpp:1.4.4
  2028. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  2029. | | | \--- org.bytedeco:javacpp:1.4.4
  2030. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  2031. | | | \--- org.bytedeco:javacpp:1.4.4
  2032. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  2033. | | | \--- org.bytedeco:javacpp:1.4.4
  2034. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  2035. | | | \--- org.bytedeco:javacpp:1.4.4
  2036. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  2037. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  2038. | | | \--- org.bytedeco:javacpp:1.4.4
  2039. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  2040. | | | \--- org.bytedeco:javacpp:1.4.4
  2041. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  2042. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  2043. | | \--- org.bytedeco:javacpp:1.4.4
  2044. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  2045. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  2046. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  2047. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  2048. | \--- net.gotev:uploadservice:3.5.2
  2049. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  2050. +--- project :video_player
  2051. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  2052. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2053. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  2054. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2055. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2056. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  2057. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2058. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2059. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  2060. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2061. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2062. +--- project :package_info
  2063. +--- project :ttdj_plugin
  2064. +--- project :flutter_picker
  2065. +--- project :url_launcher
  2066. +--- project :path_provider
  2067. +--- project :image_cropper
  2068. | \--- com.github.yalantis:ucrop:2.2.3
  2069. | +--- com.android.support:appcompat-v7:28.0.0
  2070. | | +--- com.android.support:support-annotations:28.0.0
  2071. | | +--- com.android.support:support-compat:28.0.0
  2072. | | | +--- com.android.support:support-annotations:28.0.0
  2073. | | | +--- com.android.support:collections:28.0.0
  2074. | | | | \--- com.android.support:support-annotations:28.0.0
  2075. | | | +--- android.arch.lifecycle:runtime:1.1.1
  2076. | | | | +--- android.arch.lifecycle:common:1.1.1
  2077. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2078. | | | | +--- android.arch.core:common:1.1.1
  2079. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2080. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2081. | | | \--- com.android.support:versionedparcelable:28.0.0
  2082. | | | +--- com.android.support:support-annotations:28.0.0
  2083. | | | \--- com.android.support:collections:28.0.0 (*)
  2084. | | +--- com.android.support:collections:28.0.0 (*)
  2085. | | +--- com.android.support:cursoradapter:28.0.0
  2086. | | | \--- com.android.support:support-annotations:28.0.0
  2087. | | +--- com.android.support:support-core-utils:28.0.0
  2088. | | | +--- com.android.support:support-annotations:28.0.0
  2089. | | | +--- com.android.support:support-compat:28.0.0 (*)
  2090. | | | +--- com.android.support:documentfile:28.0.0
  2091. | | | | \--- com.android.support:support-annotations:28.0.0
  2092. | | | +--- com.android.support:loader:28.0.0
  2093. | | | | +--- com.android.support:support-annotations:28.0.0
  2094. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2095. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  2096. | | | | | +--- android.arch.core:runtime:1.1.1
  2097. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2098. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  2099. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  2100. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  2101. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  2102. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  2103. | | | | | \--- android.arch.core:common:1.1.1 (*)
  2104. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  2105. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2106. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  2107. | | | | \--- com.android.support:support-annotations:28.0.0
  2108. | | | \--- com.android.support:print:28.0.0
  2109. | | | \--- com.android.support:support-annotations:28.0.0
  2110. | | +--- com.android.support:support-fragment:28.0.0
  2111. | | | +--- com.android.support:support-compat:28.0.0 (*)
  2112. | | | +--- com.android.support:support-core-ui:28.0.0
  2113. | | | | +--- com.android.support:support-annotations:28.0.0
  2114. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2115. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  2116. | | | | +--- com.android.support:customview:28.0.0
  2117. | | | | | +--- com.android.support:support-annotations:28.0.0
  2118. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  2119. | | | | +--- com.android.support:viewpager:28.0.0
  2120. | | | | | +--- com.android.support:support-annotations:28.0.0
  2121. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2122. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2123. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  2124. | | | | | +--- com.android.support:support-annotations:28.0.0
  2125. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2126. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2127. | | | | +--- com.android.support:drawerlayout:28.0.0
  2128. | | | | | +--- com.android.support:support-annotations:28.0.0
  2129. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2130. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2131. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  2132. | | | | | +--- com.android.support:support-annotations:28.0.0
  2133. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2134. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2135. | | | | +--- com.android.support:interpolator:28.0.0
  2136. | | | | | \--- com.android.support:support-annotations:28.0.0
  2137. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  2138. | | | | | +--- com.android.support:support-annotations:28.0.0
  2139. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2140. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  2141. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  2142. | | | | | +--- com.android.support:support-annotations:28.0.0
  2143. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  2144. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  2145. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  2146. | | | +--- com.android.support:support-annotations:28.0.0
  2147. | | | +--- com.android.support:loader:28.0.0 (*)
  2148. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  2149. | | +--- com.android.support:support-vector-drawable:28.0.0
  2150. | | | +--- com.android.support:support-annotations:28.0.0
  2151. | | | \--- com.android.support:support-compat:28.0.0 (*)
  2152. | | \--- com.android.support:animated-vector-drawable:28.0.0
  2153. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  2154. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  2155. | +--- com.android.support:exifinterface:28.0.0
  2156. | | \--- com.android.support:support-annotations:28.0.0
  2157. | +--- com.android.support:design:28.0.0
  2158. | | +--- com.android.support:support-annotations:28.0.0
  2159. | | +--- com.android.support:support-compat:28.0.0 (*)
  2160. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  2161. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  2162. | | +--- com.android.support:support-fragment:28.0.0 (*)
  2163. | | +--- com.android.support:transition:28.0.0
  2164. | | | +--- com.android.support:support-annotations:28.0.0
  2165. | | | \--- com.android.support:support-compat:28.0.0 (*)
  2166. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  2167. | | +--- com.android.support:cardview-v7:28.0.0
  2168. | | | \--- com.android.support:support-annotations:28.0.0
  2169. | | \--- com.android.support:recyclerview-v7:28.0.0
  2170. | | +--- com.android.support:support-annotations:28.0.0
  2171. | | +--- com.android.support:support-compat:28.0.0 (*)
  2172. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  2173. | \--- com.squareup.okhttp3:okhttp:3.11.0
  2174. | \--- com.squareup.okio:okio:1.14.0
  2175. +--- project :shared_preferences
  2176. +--- project :jpush_flutter
  2177. | +--- cn.jiguang.sdk:jpush:3.1.6
  2178. | \--- cn.jiguang.sdk:jcore:1.2.5
  2179. +--- project :screen
  2180. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2181. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2182. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2183. | \--- org.jetbrains:annotations:13.0
  2184. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  2185. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  2186. dynamicReleaseRuntimeElements - Runtime elements for dynamicRelease (n)
  2187. No dependencies
  2188. dynamicReleaseRuntimeOnly - Runtime only dependencies for compilation 'dynamicRelease' (target (androidJvm)). (n)
  2189. No dependencies
  2190. dynamicReleaseRuntimeOnlyDependenciesMetadata
  2191. No dependencies
  2192. dynamicReleaseUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: dynamicReleaseUnitTest
  2193. No dependencies
  2194. dynamicReleaseUnitTestApi - API dependencies for compilation 'dynamicReleaseUnitTest' (target (androidJvm)). (n)
  2195. No dependencies
  2196. dynamicReleaseUnitTestApiDependenciesMetadata
  2197. No dependencies
  2198. dynamicReleaseUnitTestCompile - Dependencies for compilation 'dynamicReleaseUnitTest' (target (androidJvm)) (deprecated, use 'dynamicReleaseUnitTestImplementation ' instead).
  2199. No dependencies
  2200. dynamicReleaseUnitTestCompileClasspath - Compile classpath for compilation 'dynamicReleaseUnitTest' (target (androidJvm)).
  2201. +--- project :file_picker
  2202. +--- project :screen_stream_plugin
  2203. +--- project :video_player
  2204. +--- project :package_info
  2205. +--- project :ttdj_plugin
  2206. +--- project :flutter_picker
  2207. +--- project :url_launcher
  2208. +--- project :path_provider
  2209. +--- project :image_cropper
  2210. +--- project :shared_preferences
  2211. +--- project :jpush_flutter
  2212. +--- project :screen
  2213. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2214. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2215. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2216. | \--- org.jetbrains:annotations:13.0
  2217. +--- androidx.lifecycle:lifecycle-common:2.0.0
  2218. | \--- androidx.annotation:annotation:1.0.0
  2219. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  2220. \--- junit:junit:4.12
  2221. \--- org.hamcrest:hamcrest-core:1.3
  2222. dynamicReleaseUnitTestCompileOnly - Compile only dependencies for compilation 'dynamicReleaseUnitTest' (target (androidJvm)).
  2223. No dependencies
  2224. dynamicReleaseUnitTestCompileOnlyDependenciesMetadata
  2225. No dependencies
  2226. dynamicReleaseUnitTestImplementation - Implementation only dependencies for compilation 'dynamicReleaseUnitTest' (target (androidJvm)). (n)
  2227. No dependencies
  2228. dynamicReleaseUnitTestImplementationDependenciesMetadata
  2229. \--- junit:junit:4.12
  2230. \--- org.hamcrest:hamcrest-core:1.3
  2231. dynamicReleaseUnitTestRuntime - Runtime dependencies for compilation 'dynamicReleaseUnitTest' (target (androidJvm)) (deprecated, use 'dynamicReleaseUnitTestRuntimeOnly ' instead).
  2232. No dependencies
  2233. dynamicReleaseUnitTestRuntimeClasspath - Runtime classpath of compilation 'dynamicReleaseUnitTest' (target (androidJvm)).
  2234. +--- project :file_picker
  2235. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  2236. | +--- androidx.annotation:annotation:1.0.0
  2237. | +--- androidx.core:core:1.0.1
  2238. | | +--- androidx.annotation:annotation:1.0.0
  2239. | | +--- androidx.collection:collection:1.0.0
  2240. | | | \--- androidx.annotation:annotation:1.0.0
  2241. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  2242. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  2243. | | | | \--- androidx.annotation:annotation:1.0.0
  2244. | | | +--- androidx.arch.core:core-common:2.0.0
  2245. | | | | \--- androidx.annotation:annotation:1.0.0
  2246. | | | \--- androidx.annotation:annotation:1.0.0
  2247. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  2248. | | +--- androidx.annotation:annotation:1.0.0
  2249. | | \--- androidx.collection:collection:1.0.0 (*)
  2250. | +--- androidx.collection:collection:1.0.0 (*)
  2251. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  2252. | | \--- androidx.annotation:annotation:1.0.0
  2253. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  2254. | | +--- androidx.annotation:annotation:1.0.0
  2255. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2256. | | +--- androidx.documentfile:documentfile:1.0.0
  2257. | | | \--- androidx.annotation:annotation:1.0.0
  2258. | | +--- androidx.loader:loader:1.0.0
  2259. | | | +--- androidx.annotation:annotation:1.0.0
  2260. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2261. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  2262. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  2263. | | | | | +--- androidx.annotation:annotation:1.0.0
  2264. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  2265. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  2266. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  2267. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  2268. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  2269. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  2270. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  2271. | | | \--- androidx.annotation:annotation:1.0.0
  2272. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  2273. | | | \--- androidx.annotation:annotation:1.0.0
  2274. | | \--- androidx.print:print:1.0.0
  2275. | | \--- androidx.annotation:annotation:1.0.0
  2276. | +--- androidx.fragment:fragment:1.0.0
  2277. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2278. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  2279. | | | +--- androidx.annotation:annotation:1.0.0
  2280. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2281. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  2282. | | | +--- androidx.customview:customview:1.0.0
  2283. | | | | +--- androidx.annotation:annotation:1.0.0
  2284. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2285. | | | +--- androidx.viewpager:viewpager:1.0.0
  2286. | | | | +--- androidx.annotation:annotation:1.0.0
  2287. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2288. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2289. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  2290. | | | | +--- androidx.annotation:annotation:1.0.0
  2291. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2292. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2293. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  2294. | | | | +--- androidx.annotation:annotation:1.0.0
  2295. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2296. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2297. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  2298. | | | | +--- androidx.annotation:annotation:1.0.0
  2299. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2300. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2301. | | | +--- androidx.interpolator:interpolator:1.0.0
  2302. | | | | \--- androidx.annotation:annotation:1.0.0
  2303. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  2304. | | | | +--- androidx.annotation:annotation:1.0.0
  2305. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2306. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  2307. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  2308. | | | | +--- androidx.annotation:annotation:1.0.0
  2309. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2310. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  2311. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  2312. | | +--- androidx.annotation:annotation:1.0.0
  2313. | | +--- androidx.loader:loader:1.0.0 (*)
  2314. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  2315. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  2316. | | +--- androidx.annotation:annotation:1.0.0
  2317. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2318. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  2319. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  2320. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  2321. +--- project :screen_stream_plugin
  2322. | +--- org.bytedeco:javacv:1.4.4
  2323. | | +--- org.bytedeco:javacpp:1.4.4
  2324. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  2325. | | | \--- org.bytedeco:javacpp:1.4.4
  2326. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  2327. | | | \--- org.bytedeco:javacpp:1.4.4
  2328. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  2329. | | | \--- org.bytedeco:javacpp:1.4.4
  2330. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  2331. | | | \--- org.bytedeco:javacpp:1.4.4
  2332. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  2333. | | | \--- org.bytedeco:javacpp:1.4.4
  2334. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  2335. | | | \--- org.bytedeco:javacpp:1.4.4
  2336. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  2337. | | | \--- org.bytedeco:javacpp:1.4.4
  2338. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  2339. | | | \--- org.bytedeco:javacpp:1.4.4
  2340. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  2341. | | | \--- org.bytedeco:javacpp:1.4.4
  2342. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  2343. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  2344. | | | \--- org.bytedeco:javacpp:1.4.4
  2345. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  2346. | | | \--- org.bytedeco:javacpp:1.4.4
  2347. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  2348. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  2349. | | \--- org.bytedeco:javacpp:1.4.4
  2350. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  2351. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  2352. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  2353. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  2354. | \--- net.gotev:uploadservice:3.5.2
  2355. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  2356. +--- project :video_player
  2357. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  2358. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2359. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  2360. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2361. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2362. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  2363. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2364. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2365. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  2366. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2367. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2368. +--- project :package_info
  2369. +--- project :ttdj_plugin
  2370. +--- project :flutter_picker
  2371. +--- project :url_launcher
  2372. +--- project :path_provider
  2373. +--- project :image_cropper
  2374. | \--- com.github.yalantis:ucrop:2.2.3
  2375. | +--- com.android.support:appcompat-v7:28.0.0
  2376. | | +--- com.android.support:support-annotations:28.0.0
  2377. | | +--- com.android.support:support-compat:28.0.0
  2378. | | | +--- com.android.support:support-annotations:28.0.0
  2379. | | | +--- com.android.support:collections:28.0.0
  2380. | | | | \--- com.android.support:support-annotations:28.0.0
  2381. | | | +--- android.arch.lifecycle:runtime:1.1.1
  2382. | | | | +--- android.arch.lifecycle:common:1.1.1
  2383. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2384. | | | | +--- android.arch.core:common:1.1.1
  2385. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2386. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2387. | | | \--- com.android.support:versionedparcelable:28.0.0
  2388. | | | +--- com.android.support:support-annotations:28.0.0
  2389. | | | \--- com.android.support:collections:28.0.0 (*)
  2390. | | +--- com.android.support:collections:28.0.0 (*)
  2391. | | +--- com.android.support:cursoradapter:28.0.0
  2392. | | | \--- com.android.support:support-annotations:28.0.0
  2393. | | +--- com.android.support:support-core-utils:28.0.0
  2394. | | | +--- com.android.support:support-annotations:28.0.0
  2395. | | | +--- com.android.support:support-compat:28.0.0 (*)
  2396. | | | +--- com.android.support:documentfile:28.0.0
  2397. | | | | \--- com.android.support:support-annotations:28.0.0
  2398. | | | +--- com.android.support:loader:28.0.0
  2399. | | | | +--- com.android.support:support-annotations:28.0.0
  2400. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2401. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  2402. | | | | | +--- android.arch.core:runtime:1.1.1
  2403. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2404. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  2405. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  2406. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  2407. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  2408. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  2409. | | | | | \--- android.arch.core:common:1.1.1 (*)
  2410. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  2411. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2412. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  2413. | | | | \--- com.android.support:support-annotations:28.0.0
  2414. | | | \--- com.android.support:print:28.0.0
  2415. | | | \--- com.android.support:support-annotations:28.0.0
  2416. | | +--- com.android.support:support-fragment:28.0.0
  2417. | | | +--- com.android.support:support-compat:28.0.0 (*)
  2418. | | | +--- com.android.support:support-core-ui:28.0.0
  2419. | | | | +--- com.android.support:support-annotations:28.0.0
  2420. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2421. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  2422. | | | | +--- com.android.support:customview:28.0.0
  2423. | | | | | +--- com.android.support:support-annotations:28.0.0
  2424. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  2425. | | | | +--- com.android.support:viewpager:28.0.0
  2426. | | | | | +--- com.android.support:support-annotations:28.0.0
  2427. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2428. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2429. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  2430. | | | | | +--- com.android.support:support-annotations:28.0.0
  2431. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2432. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2433. | | | | +--- com.android.support:drawerlayout:28.0.0
  2434. | | | | | +--- com.android.support:support-annotations:28.0.0
  2435. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2436. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2437. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  2438. | | | | | +--- com.android.support:support-annotations:28.0.0
  2439. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2440. | | | | | \--- com.android.support:customview:28.0.0 (*)
  2441. | | | | +--- com.android.support:interpolator:28.0.0
  2442. | | | | | \--- com.android.support:support-annotations:28.0.0
  2443. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  2444. | | | | | +--- com.android.support:support-annotations:28.0.0
  2445. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2446. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  2447. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  2448. | | | | | +--- com.android.support:support-annotations:28.0.0
  2449. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  2450. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  2451. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  2452. | | | +--- com.android.support:support-annotations:28.0.0
  2453. | | | +--- com.android.support:loader:28.0.0 (*)
  2454. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  2455. | | +--- com.android.support:support-vector-drawable:28.0.0
  2456. | | | +--- com.android.support:support-annotations:28.0.0
  2457. | | | \--- com.android.support:support-compat:28.0.0 (*)
  2458. | | \--- com.android.support:animated-vector-drawable:28.0.0
  2459. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  2460. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  2461. | +--- com.android.support:exifinterface:28.0.0
  2462. | | \--- com.android.support:support-annotations:28.0.0
  2463. | +--- com.android.support:design:28.0.0
  2464. | | +--- com.android.support:support-annotations:28.0.0
  2465. | | +--- com.android.support:support-compat:28.0.0 (*)
  2466. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  2467. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  2468. | | +--- com.android.support:support-fragment:28.0.0 (*)
  2469. | | +--- com.android.support:transition:28.0.0
  2470. | | | +--- com.android.support:support-annotations:28.0.0
  2471. | | | \--- com.android.support:support-compat:28.0.0 (*)
  2472. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  2473. | | +--- com.android.support:cardview-v7:28.0.0
  2474. | | | \--- com.android.support:support-annotations:28.0.0
  2475. | | \--- com.android.support:recyclerview-v7:28.0.0
  2476. | | +--- com.android.support:support-annotations:28.0.0
  2477. | | +--- com.android.support:support-compat:28.0.0 (*)
  2478. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  2479. | \--- com.squareup.okhttp3:okhttp:3.11.0
  2480. | \--- com.squareup.okio:okio:1.14.0
  2481. +--- project :shared_preferences
  2482. +--- project :jpush_flutter
  2483. | +--- cn.jiguang.sdk:jpush:3.1.6
  2484. | \--- cn.jiguang.sdk:jcore:1.2.5
  2485. +--- project :screen
  2486. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2487. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2488. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2489. | \--- org.jetbrains:annotations:13.0
  2490. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  2491. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  2492. \--- junit:junit:4.12
  2493. \--- org.hamcrest:hamcrest-core:1.3
  2494. dynamicReleaseUnitTestRuntimeOnly - Runtime only dependencies for compilation 'dynamicReleaseUnitTest' (target (androidJvm)). (n)
  2495. No dependencies
  2496. dynamicReleaseUnitTestRuntimeOnlyDependenciesMetadata
  2497. No dependencies
  2498. dynamicReleaseWearApp - Link to a wear app to embed for object 'dynamicRelease'. (n)
  2499. No dependencies
  2500. dynamicReleaseWearBundling - Resolved Configuration for wear app bundling for variant: dynamicRelease
  2501. No dependencies
  2502. implementation - Implementation only dependencies for 'main' sources. (n)
  2503. +--- project file_picker (n)
  2504. +--- project screen_stream_plugin (n)
  2505. +--- project video_player (n)
  2506. +--- project package_info (n)
  2507. +--- project ttdj_plugin (n)
  2508. +--- project flutter_picker (n)
  2509. +--- project url_launcher (n)
  2510. +--- project path_provider (n)
  2511. +--- project image_cropper (n)
  2512. +--- project shared_preferences (n)
  2513. +--- project jpush_flutter (n)
  2514. +--- project screen (n)
  2515. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71 (n)
  2516. +--- unspecified (n)
  2517. +--- unspecified (n)
  2518. +--- androidx.lifecycle:lifecycle-common:2.0.0 (n)
  2519. \--- androidx.annotation:annotation:1.0.2 (n)
  2520. implementationDependenciesMetadata
  2521. +--- project :file_picker FAILED
  2522. +--- project :screen_stream_plugin FAILED
  2523. +--- project :video_player FAILED
  2524. +--- project :package_info FAILED
  2525. +--- project :ttdj_plugin FAILED
  2526. +--- project :flutter_picker FAILED
  2527. +--- project :url_launcher FAILED
  2528. +--- project :path_provider FAILED
  2529. +--- project :image_cropper FAILED
  2530. +--- project :shared_preferences FAILED
  2531. +--- project :jpush_flutter FAILED
  2532. +--- project :screen FAILED
  2533. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2534. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2535. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2536. | \--- org.jetbrains:annotations:13.0
  2537. +--- androidx.lifecycle:lifecycle-common:2.0.0
  2538. | \--- androidx.annotation:annotation:1.0.0
  2539. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  2540. kapt
  2541. No dependencies
  2542. kaptAndroidTest
  2543. No dependencies
  2544. kaptAndroidTestDebug
  2545. No dependencies
  2546. kaptDebug
  2547. No dependencies
  2548. kaptDynamicProfile
  2549. No dependencies
  2550. kaptDynamicRelease
  2551. No dependencies
  2552. kaptProfile
  2553. No dependencies
  2554. kaptRelease
  2555. No dependencies
  2556. kaptTest
  2557. No dependencies
  2558. kaptTestDebug
  2559. No dependencies
  2560. kaptTestDynamicProfile
  2561. No dependencies
  2562. kaptTestDynamicRelease
  2563. No dependencies
  2564. kaptTestProfile
  2565. No dependencies
  2566. kaptTestRelease
  2567. No dependencies
  2568. kotlinCompilerClasspath
  2569. \--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.2.71
  2570. +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2571. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2572. | \--- org.jetbrains:annotations:13.0
  2573. +--- org.jetbrains.kotlin:kotlin-script-runtime:1.2.71
  2574. \--- org.jetbrains.kotlin:kotlin-reflect:1.2.71
  2575. \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71 (*)
  2576. kotlinCompilerPluginClasspath
  2577. No dependencies
  2578. lintChecks - Configuration to apply external lint check jar
  2579. No dependencies
  2580. lintClassPath - The lint embedded classpath
  2581. \--- com.android.tools.lint:lint-gradle:26.2.1
  2582. +--- com.android.tools:sdk-common:26.2.1
  2583. | +--- com.android.tools:sdklib:26.2.1
  2584. | | +--- com.android.tools.layoutlib:layoutlib-api:26.2.1
  2585. | | | +--- com.android.tools:common:26.2.1
  2586. | | | | +--- com.android.tools:annotations:26.2.1
  2587. | | | | +--- com.google.guava:guava:23.0
  2588. | | | | | +--- com.google.code.findbugs:jsr305:1.3.9
  2589. | | | | | +--- com.google.errorprone:error_prone_annotations:2.0.18
  2590. | | | | | +--- com.google.j2objc:j2objc-annotations:1.1
  2591. | | | | | \--- org.codehaus.mojo:animal-sniffer-annotations:1.14
  2592. | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71
  2593. | | | | +--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2594. | | | | | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2595. | | | | | \--- org.jetbrains:annotations:13.0
  2596. | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2597. | | | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71 (*)
  2598. | | | +--- net.sf.kxml:kxml2:2.3.0
  2599. | | | +--- com.android.tools:annotations:26.2.1
  2600. | | | \--- org.jetbrains:annotations:13.0
  2601. | | +--- com.android.tools:dvlib:26.2.1
  2602. | | | \--- com.android.tools:common:26.2.1 (*)
  2603. | | +--- com.android.tools:repository:26.2.1
  2604. | | | +--- com.android.tools:common:26.2.1 (*)
  2605. | | | +--- com.sun.activation:javax.activation:1.2.0
  2606. | | | +--- org.apache.commons:commons-compress:1.12
  2607. | | | +--- org.glassfish.jaxb:jaxb-runtime:2.2.11
  2608. | | | | +--- org.glassfish.jaxb:jaxb-core:2.2.11
  2609. | | | | | +--- javax.xml.bind:jaxb-api:2.2.12-b140109.1041
  2610. | | | | | +--- org.glassfish.jaxb:txw2:2.2.11
  2611. | | | | | \--- com.sun.istack:istack-commons-runtime:2.21
  2612. | | | | +--- org.jvnet.staxex:stax-ex:1.7.7
  2613. | | | | \--- com.sun.xml.fastinfoset:FastInfoset:1.2.13
  2614. | | | +--- com.google.jimfs:jimfs:1.1
  2615. | | | | \--- com.google.guava:guava:18.0 -> 23.0 (*)
  2616. | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2617. | | +--- com.google.code.gson:gson:2.8.0
  2618. | | +--- org.apache.commons:commons-compress:1.12
  2619. | | +--- org.apache.httpcomponents:httpmime:4.5.2
  2620. | | | \--- org.apache.httpcomponents:httpclient:4.5.2
  2621. | | | +--- org.apache.httpcomponents:httpcore:4.4.4 -> 4.4.5
  2622. | | | +--- commons-logging:commons-logging:1.2
  2623. | | | \--- commons-codec:commons-codec:1.9
  2624. | | \--- org.apache.httpcomponents:httpcore:4.4.5
  2625. | +--- com.android.tools.build:builder-test-api:3.2.1
  2626. | | \--- com.android.tools.ddms:ddmlib:26.2.1
  2627. | | +--- com.android.tools:common:26.2.1 (*)
  2628. | | \--- net.sf.kxml:kxml2:2.3.0
  2629. | +--- com.android.tools.build:builder-model:3.2.1
  2630. | | \--- com.android.tools:annotations:26.2.1
  2631. | +--- com.android.tools.ddms:ddmlib:26.2.1 (*)
  2632. | +--- org.bouncycastle:bcpkix-jdk15on:1.56
  2633. | | \--- org.bouncycastle:bcprov-jdk15on:1.56
  2634. | +--- org.bouncycastle:bcprov-jdk15on:1.56
  2635. | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2636. | +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0
  2637. | | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.0 -> 1.2.71 (*)
  2638. | +--- com.google.protobuf:protobuf-java:3.4.0
  2639. | \--- javax.inject:javax.inject:1
  2640. +--- com.android.tools.build:builder:3.2.1
  2641. | +--- com.android.tools.build:builder-model:3.2.1 (*)
  2642. | +--- com.android.tools.build:builder-test-api:3.2.1 (*)
  2643. | +--- com.android.tools:sdklib:26.2.1 (*)
  2644. | +--- com.android.tools:sdk-common:26.2.1 (*)
  2645. | +--- com.android.tools:common:26.2.1 (*)
  2646. | +--- com.android.tools.build:manifest-merger:26.2.1
  2647. | | +--- com.android.tools:common:26.2.1 (*)
  2648. | | +--- com.android.tools:sdklib:26.2.1 (*)
  2649. | | +--- com.android.tools:sdk-common:26.2.1 (*)
  2650. | | +--- com.google.code.gson:gson:2.8.0
  2651. | | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2652. | | \--- net.sf.kxml:kxml2:2.3.0
  2653. | +--- com.android.tools.ddms:ddmlib:26.2.1 (*)
  2654. | +--- com.android.tools.analytics-library:protos:26.2.1
  2655. | | \--- com.google.protobuf:protobuf-java:3.4.0
  2656. | +--- com.android.tools.analytics-library:shared:26.2.1
  2657. | | +--- com.android.tools.analytics-library:protos:26.2.1 (*)
  2658. | | +--- com.android.tools:annotations:26.2.1
  2659. | | +--- com.android.tools:common:26.2.1 (*)
  2660. | | +--- com.google.guava:guava:23.0 (*)
  2661. | | \--- com.google.code.gson:gson:2.8.0
  2662. | +--- com.android.tools.analytics-library:tracker:26.2.1
  2663. | | +--- com.android.tools:annotations:26.2.1
  2664. | | +--- com.android.tools:common:26.2.1 (*)
  2665. | | +--- com.android.tools.analytics-library:protos:26.2.1 (*)
  2666. | | +--- com.android.tools.analytics-library:shared:26.2.1 (*)
  2667. | | +--- com.google.protobuf:protobuf-java:3.4.0
  2668. | | \--- com.google.guava:guava:23.0 (*)
  2669. | +--- com.android.tools.build:apksig:3.2.1
  2670. | +--- com.android.tools.build:apkzlib:3.2.1
  2671. | | +--- com.google.code.findbugs:jsr305:1.3.9
  2672. | | +--- com.google.guava:guava:23.0 (*)
  2673. | | +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
  2674. | | +--- org.bouncycastle:bcprov-jdk15on:1.56
  2675. | | \--- com.android.tools.build:apksig:3.2.1
  2676. | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2677. | +--- com.squareup:javawriter:2.5.0
  2678. | +--- org.bouncycastle:bcpkix-jdk15on:1.56 (*)
  2679. | +--- org.bouncycastle:bcprov-jdk15on:1.56
  2680. | +--- org.ow2.asm:asm:6.0
  2681. | +--- org.ow2.asm:asm-tree:6.0
  2682. | | \--- org.ow2.asm:asm:6.0
  2683. | +--- org.ow2.asm:asm-commons:6.0
  2684. | | \--- org.ow2.asm:asm-tree:6.0 (*)
  2685. | +--- org.ow2.asm:asm-util:6.0
  2686. | | \--- org.ow2.asm:asm-tree:6.0 (*)
  2687. | +--- it.unimi.dsi:fastutil:7.2.0
  2688. | +--- net.sf.jopt-simple:jopt-simple:4.9
  2689. | \--- com.googlecode.json-simple:json-simple:1.1
  2690. +--- com.android.tools.build:builder-model:3.2.1 (*)
  2691. +--- com.android.tools.external.com-intellij:intellij-core:26.2.1
  2692. | \--- org.jetbrains.trove4j:trove4j:20160824
  2693. +--- com.android.tools.external.org-jetbrains:uast:26.2.1
  2694. +--- com.android.tools.build:manifest-merger:26.2.1 (*)
  2695. +--- com.android.tools.lint:lint:26.2.1
  2696. | +--- com.android.tools.lint:lint-checks:26.2.1
  2697. | | +--- com.android.tools.lint:lint-api:26.2.1
  2698. | | | +--- com.android.tools:sdk-common:26.2.1 (*)
  2699. | | | +--- com.android.tools.build:builder-model:3.2.1 (*)
  2700. | | | +--- com.google.guava:guava:23.0 (*)
  2701. | | | +--- com.android.tools.lint:lint-kotlin:26.2.1
  2702. | | | | +--- com.android.tools.external.com-intellij:intellij-core:26.2.1 (*)
  2703. | | | | +--- com.android.tools.external.com-intellij:kotlin-compiler:26.2.1
  2704. | | | | +--- com.android.tools.external.org-jetbrains:uast:26.2.1
  2705. | | | | +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0 (*)
  2706. | | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2707. | | | +--- com.android.tools.external.com-intellij:intellij-core:26.2.1 (*)
  2708. | | | +--- com.android.tools.external.org-jetbrains:uast:26.2.1
  2709. | | | +--- com.android.tools.build:manifest-merger:26.2.1 (*)
  2710. | | | +--- org.ow2.asm:asm:6.0
  2711. | | | +--- org.ow2.asm:asm-tree:6.0 (*)
  2712. | | | +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0 (*)
  2713. | | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2714. | | +--- com.google.guava:guava:23.0 (*)
  2715. | | +--- com.android.tools.external.com-intellij:intellij-core:26.2.1 (*)
  2716. | | +--- com.android.tools.external.org-jetbrains:uast:26.2.1
  2717. | | \--- org.ow2.asm:asm-analysis:6.0
  2718. | | \--- org.ow2.asm:asm-tree:6.0 (*)
  2719. | +--- com.android.tools.lint:lint-kotlin:26.2.1 (*)
  2720. | +--- com.google.guava:guava:23.0 (*)
  2721. | +--- com.android.tools.external.org-jetbrains:uast:26.2.1
  2722. | +--- com.android.tools.external.com-intellij:kotlin-compiler:26.2.1
  2723. | +--- com.android.tools.build:manifest-merger:26.2.1 (*)
  2724. | +--- com.android.tools.analytics-library:shared:26.2.1 (*)
  2725. | +--- com.android.tools.analytics-library:protos:26.2.1 (*)
  2726. | +--- com.android.tools.analytics-library:tracker:26.2.1 (*)
  2727. | +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0 (*)
  2728. | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2729. +--- com.android.tools.lint:lint-gradle-api:26.2.1
  2730. | +--- com.android.tools:sdklib:26.2.1 (*)
  2731. | +--- com.android.tools.build:builder-model:3.2.1 (*)
  2732. | +--- com.android.tools.build:gradle-api:3.2.1
  2733. | | +--- com.android.tools.build:builder-model:3.2.1 (*)
  2734. | | +--- com.android.tools.build:builder-test-api:3.2.1 (*)
  2735. | | +--- com.google.guava:guava:23.0 (*)
  2736. | | \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2737. | +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0 (*)
  2738. | +--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2739. | \--- com.google.guava:guava:23.0 (*)
  2740. +--- org.codehaus.groovy:groovy-all:2.4.12
  2741. +--- org.jetbrains.kotlin:kotlin-reflect:1.2.0 (*)
  2742. \--- org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71 (*)
  2743. profileAnnotationProcessor - Classpath for the annotation processor for 'profile'. (n)
  2744. No dependencies
  2745. profileAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: profile
  2746. No dependencies
  2747. profileApi - API dependencies for compilation 'profile' (target (androidJvm)). (n)
  2748. \--- unspecified (n)
  2749. profileApiDependenciesMetadata
  2750. No dependencies
  2751. profileApiElements - API elements for profile (n)
  2752. No dependencies
  2753. profileApk - Apk dependencies for 'profile' sources (deprecated: use 'profileRuntimeOnly' instead). (n)
  2754. No dependencies
  2755. profileBundleElements - Bundle elements for profile (n)
  2756. No dependencies
  2757. profileCompile - Dependencies for compilation 'profile' (target (androidJvm)) (deprecated, use 'profileImplementation ' instead).
  2758. No dependencies
  2759. profileCompileClasspath - Compile classpath for compilation 'profile' (target (androidJvm)).
  2760. +--- project :file_picker
  2761. +--- project :screen_stream_plugin
  2762. +--- project :video_player
  2763. +--- project :package_info
  2764. +--- project :ttdj_plugin
  2765. +--- project :flutter_picker
  2766. +--- project :url_launcher
  2767. +--- project :path_provider
  2768. +--- project :image_cropper
  2769. +--- project :shared_preferences
  2770. +--- project :jpush_flutter
  2771. +--- project :screen
  2772. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2773. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2774. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2775. | \--- org.jetbrains:annotations:13.0
  2776. +--- androidx.lifecycle:lifecycle-common:2.0.0
  2777. | \--- androidx.annotation:annotation:1.0.0
  2778. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  2779. profileCompileOnly - Compile only dependencies for compilation 'profile' (target (androidJvm)).
  2780. No dependencies
  2781. profileCompileOnlyDependenciesMetadata
  2782. No dependencies
  2783. profileImplementation - Implementation only dependencies for compilation 'profile' (target (androidJvm)). (n)
  2784. No dependencies
  2785. profileImplementationDependenciesMetadata
  2786. +--- project :file_picker FAILED
  2787. +--- project :screen_stream_plugin FAILED
  2788. +--- project :video_player FAILED
  2789. +--- project :package_info FAILED
  2790. +--- project :ttdj_plugin FAILED
  2791. +--- project :flutter_picker FAILED
  2792. +--- project :url_launcher FAILED
  2793. +--- project :path_provider FAILED
  2794. +--- project :image_cropper FAILED
  2795. +--- project :shared_preferences FAILED
  2796. +--- project :jpush_flutter FAILED
  2797. +--- project :screen FAILED
  2798. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  2799. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  2800. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  2801. | \--- org.jetbrains:annotations:13.0
  2802. +--- androidx.lifecycle:lifecycle-common:2.0.0
  2803. | \--- androidx.annotation:annotation:1.0.0
  2804. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  2805. profileMetadataElements (n)
  2806. No dependencies
  2807. profileMetadataValues - Metadata Values dependencies for the base Split
  2808. No dependencies
  2809. profileProvided - Provided dependencies for 'profile' sources (deprecated: use 'profileCompileOnly' instead). (n)
  2810. No dependencies
  2811. profileRuntime - Runtime dependencies for compilation 'profile' (target (androidJvm)) (deprecated, use 'profileRuntimeOnly ' instead).
  2812. No dependencies
  2813. profileRuntimeClasspath - Runtime classpath of compilation 'profile' (target (androidJvm)).
  2814. +--- project :file_picker
  2815. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  2816. | +--- androidx.annotation:annotation:1.0.0
  2817. | +--- androidx.core:core:1.0.1
  2818. | | +--- androidx.annotation:annotation:1.0.0
  2819. | | +--- androidx.collection:collection:1.0.0
  2820. | | | \--- androidx.annotation:annotation:1.0.0
  2821. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  2822. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  2823. | | | | \--- androidx.annotation:annotation:1.0.0
  2824. | | | +--- androidx.arch.core:core-common:2.0.0
  2825. | | | | \--- androidx.annotation:annotation:1.0.0
  2826. | | | \--- androidx.annotation:annotation:1.0.0
  2827. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  2828. | | +--- androidx.annotation:annotation:1.0.0
  2829. | | \--- androidx.collection:collection:1.0.0 (*)
  2830. | +--- androidx.collection:collection:1.0.0 (*)
  2831. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  2832. | | \--- androidx.annotation:annotation:1.0.0
  2833. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  2834. | | +--- androidx.annotation:annotation:1.0.0
  2835. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2836. | | +--- androidx.documentfile:documentfile:1.0.0
  2837. | | | \--- androidx.annotation:annotation:1.0.0
  2838. | | +--- androidx.loader:loader:1.0.0
  2839. | | | +--- androidx.annotation:annotation:1.0.0
  2840. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2841. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  2842. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  2843. | | | | | +--- androidx.annotation:annotation:1.0.0
  2844. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  2845. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  2846. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  2847. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  2848. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  2849. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  2850. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  2851. | | | \--- androidx.annotation:annotation:1.0.0
  2852. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  2853. | | | \--- androidx.annotation:annotation:1.0.0
  2854. | | \--- androidx.print:print:1.0.0
  2855. | | \--- androidx.annotation:annotation:1.0.0
  2856. | +--- androidx.fragment:fragment:1.0.0
  2857. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2858. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  2859. | | | +--- androidx.annotation:annotation:1.0.0
  2860. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2861. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  2862. | | | +--- androidx.customview:customview:1.0.0
  2863. | | | | +--- androidx.annotation:annotation:1.0.0
  2864. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2865. | | | +--- androidx.viewpager:viewpager:1.0.0
  2866. | | | | +--- androidx.annotation:annotation:1.0.0
  2867. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2868. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2869. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  2870. | | | | +--- androidx.annotation:annotation:1.0.0
  2871. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2872. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2873. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  2874. | | | | +--- androidx.annotation:annotation:1.0.0
  2875. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2876. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2877. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  2878. | | | | +--- androidx.annotation:annotation:1.0.0
  2879. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2880. | | | | \--- androidx.customview:customview:1.0.0 (*)
  2881. | | | +--- androidx.interpolator:interpolator:1.0.0
  2882. | | | | \--- androidx.annotation:annotation:1.0.0
  2883. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  2884. | | | | +--- androidx.annotation:annotation:1.0.0
  2885. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2886. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  2887. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  2888. | | | | +--- androidx.annotation:annotation:1.0.0
  2889. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2890. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  2891. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  2892. | | +--- androidx.annotation:annotation:1.0.0
  2893. | | +--- androidx.loader:loader:1.0.0 (*)
  2894. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  2895. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  2896. | | +--- androidx.annotation:annotation:1.0.0
  2897. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  2898. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  2899. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  2900. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  2901. +--- project :screen_stream_plugin
  2902. | +--- org.bytedeco:javacv:1.4.4
  2903. | | +--- org.bytedeco:javacpp:1.4.4
  2904. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  2905. | | | \--- org.bytedeco:javacpp:1.4.4
  2906. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  2907. | | | \--- org.bytedeco:javacpp:1.4.4
  2908. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  2909. | | | \--- org.bytedeco:javacpp:1.4.4
  2910. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  2911. | | | \--- org.bytedeco:javacpp:1.4.4
  2912. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  2913. | | | \--- org.bytedeco:javacpp:1.4.4
  2914. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  2915. | | | \--- org.bytedeco:javacpp:1.4.4
  2916. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  2917. | | | \--- org.bytedeco:javacpp:1.4.4
  2918. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  2919. | | | \--- org.bytedeco:javacpp:1.4.4
  2920. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  2921. | | | \--- org.bytedeco:javacpp:1.4.4
  2922. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  2923. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  2924. | | | \--- org.bytedeco:javacpp:1.4.4
  2925. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  2926. | | | \--- org.bytedeco:javacpp:1.4.4
  2927. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  2928. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  2929. | | \--- org.bytedeco:javacpp:1.4.4
  2930. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  2931. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  2932. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  2933. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  2934. | \--- net.gotev:uploadservice:3.5.2
  2935. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  2936. +--- project :video_player
  2937. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  2938. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2939. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  2940. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2941. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2942. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  2943. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2944. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2945. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  2946. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  2947. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  2948. +--- project :package_info
  2949. +--- project :ttdj_plugin
  2950. +--- project :flutter_picker
  2951. +--- project :url_launcher
  2952. +--- project :path_provider
  2953. +--- project :image_cropper
  2954. | \--- com.github.yalantis:ucrop:2.2.3
  2955. | +--- com.android.support:appcompat-v7:28.0.0
  2956. | | +--- com.android.support:support-annotations:28.0.0
  2957. | | +--- com.android.support:support-compat:28.0.0
  2958. | | | +--- com.android.support:support-annotations:28.0.0
  2959. | | | +--- com.android.support:collections:28.0.0
  2960. | | | | \--- com.android.support:support-annotations:28.0.0
  2961. | | | +--- android.arch.lifecycle:runtime:1.1.1
  2962. | | | | +--- android.arch.lifecycle:common:1.1.1
  2963. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2964. | | | | +--- android.arch.core:common:1.1.1
  2965. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2966. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2967. | | | \--- com.android.support:versionedparcelable:28.0.0
  2968. | | | +--- com.android.support:support-annotations:28.0.0
  2969. | | | \--- com.android.support:collections:28.0.0 (*)
  2970. | | +--- com.android.support:collections:28.0.0 (*)
  2971. | | +--- com.android.support:cursoradapter:28.0.0
  2972. | | | \--- com.android.support:support-annotations:28.0.0
  2973. | | +--- com.android.support:support-core-utils:28.0.0
  2974. | | | +--- com.android.support:support-annotations:28.0.0
  2975. | | | +--- com.android.support:support-compat:28.0.0 (*)
  2976. | | | +--- com.android.support:documentfile:28.0.0
  2977. | | | | \--- com.android.support:support-annotations:28.0.0
  2978. | | | +--- com.android.support:loader:28.0.0
  2979. | | | | +--- com.android.support:support-annotations:28.0.0
  2980. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  2981. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  2982. | | | | | +--- android.arch.core:runtime:1.1.1
  2983. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2984. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  2985. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  2986. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  2987. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  2988. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  2989. | | | | | \--- android.arch.core:common:1.1.1 (*)
  2990. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  2991. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  2992. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  2993. | | | | \--- com.android.support:support-annotations:28.0.0
  2994. | | | \--- com.android.support:print:28.0.0
  2995. | | | \--- com.android.support:support-annotations:28.0.0
  2996. | | +--- com.android.support:support-fragment:28.0.0
  2997. | | | +--- com.android.support:support-compat:28.0.0 (*)
  2998. | | | +--- com.android.support:support-core-ui:28.0.0
  2999. | | | | +--- com.android.support:support-annotations:28.0.0
  3000. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3001. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3002. | | | | +--- com.android.support:customview:28.0.0
  3003. | | | | | +--- com.android.support:support-annotations:28.0.0
  3004. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3005. | | | | +--- com.android.support:viewpager:28.0.0
  3006. | | | | | +--- com.android.support:support-annotations:28.0.0
  3007. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3008. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3009. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  3010. | | | | | +--- com.android.support:support-annotations:28.0.0
  3011. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3012. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3013. | | | | +--- com.android.support:drawerlayout:28.0.0
  3014. | | | | | +--- com.android.support:support-annotations:28.0.0
  3015. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3016. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3017. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  3018. | | | | | +--- com.android.support:support-annotations:28.0.0
  3019. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3020. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3021. | | | | +--- com.android.support:interpolator:28.0.0
  3022. | | | | | \--- com.android.support:support-annotations:28.0.0
  3023. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  3024. | | | | | +--- com.android.support:support-annotations:28.0.0
  3025. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3026. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  3027. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  3028. | | | | | +--- com.android.support:support-annotations:28.0.0
  3029. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3030. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  3031. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3032. | | | +--- com.android.support:support-annotations:28.0.0
  3033. | | | +--- com.android.support:loader:28.0.0 (*)
  3034. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  3035. | | +--- com.android.support:support-vector-drawable:28.0.0
  3036. | | | +--- com.android.support:support-annotations:28.0.0
  3037. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3038. | | \--- com.android.support:animated-vector-drawable:28.0.0
  3039. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  3040. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3041. | +--- com.android.support:exifinterface:28.0.0
  3042. | | \--- com.android.support:support-annotations:28.0.0
  3043. | +--- com.android.support:design:28.0.0
  3044. | | +--- com.android.support:support-annotations:28.0.0
  3045. | | +--- com.android.support:support-compat:28.0.0 (*)
  3046. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  3047. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3048. | | +--- com.android.support:support-fragment:28.0.0 (*)
  3049. | | +--- com.android.support:transition:28.0.0
  3050. | | | +--- com.android.support:support-annotations:28.0.0
  3051. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3052. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  3053. | | +--- com.android.support:cardview-v7:28.0.0
  3054. | | | \--- com.android.support:support-annotations:28.0.0
  3055. | | \--- com.android.support:recyclerview-v7:28.0.0
  3056. | | +--- com.android.support:support-annotations:28.0.0
  3057. | | +--- com.android.support:support-compat:28.0.0 (*)
  3058. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3059. | \--- com.squareup.okhttp3:okhttp:3.11.0
  3060. | \--- com.squareup.okio:okio:1.14.0
  3061. +--- project :shared_preferences
  3062. +--- project :jpush_flutter
  3063. | +--- cn.jiguang.sdk:jpush:3.1.6
  3064. | \--- cn.jiguang.sdk:jcore:1.2.5
  3065. +--- project :screen
  3066. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3067. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3068. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3069. | \--- org.jetbrains:annotations:13.0
  3070. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  3071. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3072. profileRuntimeElements - Runtime elements for profile (n)
  3073. No dependencies
  3074. profileRuntimeOnly - Runtime only dependencies for compilation 'profile' (target (androidJvm)). (n)
  3075. No dependencies
  3076. profileRuntimeOnlyDependenciesMetadata
  3077. No dependencies
  3078. profileUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: profileUnitTest
  3079. No dependencies
  3080. profileUnitTestApi - API dependencies for compilation 'profileUnitTest' (target (androidJvm)). (n)
  3081. No dependencies
  3082. profileUnitTestApiDependenciesMetadata
  3083. No dependencies
  3084. profileUnitTestCompile - Dependencies for compilation 'profileUnitTest' (target (androidJvm)) (deprecated, use 'profileUnitTestImplementation ' instead).
  3085. No dependencies
  3086. profileUnitTestCompileClasspath - Compile classpath for compilation 'profileUnitTest' (target (androidJvm)).
  3087. +--- project :file_picker
  3088. +--- project :screen_stream_plugin
  3089. +--- project :video_player
  3090. +--- project :package_info
  3091. +--- project :ttdj_plugin
  3092. +--- project :flutter_picker
  3093. +--- project :url_launcher
  3094. +--- project :path_provider
  3095. +--- project :image_cropper
  3096. +--- project :shared_preferences
  3097. +--- project :jpush_flutter
  3098. +--- project :screen
  3099. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3100. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3101. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3102. | \--- org.jetbrains:annotations:13.0
  3103. +--- androidx.lifecycle:lifecycle-common:2.0.0
  3104. | \--- androidx.annotation:annotation:1.0.0
  3105. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3106. \--- junit:junit:4.12
  3107. \--- org.hamcrest:hamcrest-core:1.3
  3108. profileUnitTestCompileOnly - Compile only dependencies for compilation 'profileUnitTest' (target (androidJvm)).
  3109. No dependencies
  3110. profileUnitTestCompileOnlyDependenciesMetadata
  3111. No dependencies
  3112. profileUnitTestImplementation - Implementation only dependencies for compilation 'profileUnitTest' (target (androidJvm)). (n)
  3113. No dependencies
  3114. profileUnitTestImplementationDependenciesMetadata
  3115. \--- junit:junit:4.12
  3116. \--- org.hamcrest:hamcrest-core:1.3
  3117. profileUnitTestRuntime - Runtime dependencies for compilation 'profileUnitTest' (target (androidJvm)) (deprecated, use 'profileUnitTestRuntimeOnly ' instead).
  3118. No dependencies
  3119. profileUnitTestRuntimeClasspath - Runtime classpath of compilation 'profileUnitTest' (target (androidJvm)).
  3120. +--- project :file_picker
  3121. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  3122. | +--- androidx.annotation:annotation:1.0.0
  3123. | +--- androidx.core:core:1.0.1
  3124. | | +--- androidx.annotation:annotation:1.0.0
  3125. | | +--- androidx.collection:collection:1.0.0
  3126. | | | \--- androidx.annotation:annotation:1.0.0
  3127. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  3128. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  3129. | | | | \--- androidx.annotation:annotation:1.0.0
  3130. | | | +--- androidx.arch.core:core-common:2.0.0
  3131. | | | | \--- androidx.annotation:annotation:1.0.0
  3132. | | | \--- androidx.annotation:annotation:1.0.0
  3133. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  3134. | | +--- androidx.annotation:annotation:1.0.0
  3135. | | \--- androidx.collection:collection:1.0.0 (*)
  3136. | +--- androidx.collection:collection:1.0.0 (*)
  3137. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  3138. | | \--- androidx.annotation:annotation:1.0.0
  3139. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  3140. | | +--- androidx.annotation:annotation:1.0.0
  3141. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3142. | | +--- androidx.documentfile:documentfile:1.0.0
  3143. | | | \--- androidx.annotation:annotation:1.0.0
  3144. | | +--- androidx.loader:loader:1.0.0
  3145. | | | +--- androidx.annotation:annotation:1.0.0
  3146. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3147. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  3148. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  3149. | | | | | +--- androidx.annotation:annotation:1.0.0
  3150. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  3151. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  3152. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  3153. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  3154. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  3155. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  3156. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  3157. | | | \--- androidx.annotation:annotation:1.0.0
  3158. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  3159. | | | \--- androidx.annotation:annotation:1.0.0
  3160. | | \--- androidx.print:print:1.0.0
  3161. | | \--- androidx.annotation:annotation:1.0.0
  3162. | +--- androidx.fragment:fragment:1.0.0
  3163. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3164. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  3165. | | | +--- androidx.annotation:annotation:1.0.0
  3166. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3167. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  3168. | | | +--- androidx.customview:customview:1.0.0
  3169. | | | | +--- androidx.annotation:annotation:1.0.0
  3170. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3171. | | | +--- androidx.viewpager:viewpager:1.0.0
  3172. | | | | +--- androidx.annotation:annotation:1.0.0
  3173. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3174. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3175. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  3176. | | | | +--- androidx.annotation:annotation:1.0.0
  3177. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3178. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3179. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  3180. | | | | +--- androidx.annotation:annotation:1.0.0
  3181. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3182. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3183. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  3184. | | | | +--- androidx.annotation:annotation:1.0.0
  3185. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3186. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3187. | | | +--- androidx.interpolator:interpolator:1.0.0
  3188. | | | | \--- androidx.annotation:annotation:1.0.0
  3189. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  3190. | | | | +--- androidx.annotation:annotation:1.0.0
  3191. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3192. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  3193. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  3194. | | | | +--- androidx.annotation:annotation:1.0.0
  3195. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3196. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  3197. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  3198. | | +--- androidx.annotation:annotation:1.0.0
  3199. | | +--- androidx.loader:loader:1.0.0 (*)
  3200. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  3201. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  3202. | | +--- androidx.annotation:annotation:1.0.0
  3203. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3204. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  3205. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  3206. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  3207. +--- project :screen_stream_plugin
  3208. | +--- org.bytedeco:javacv:1.4.4
  3209. | | +--- org.bytedeco:javacpp:1.4.4
  3210. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  3211. | | | \--- org.bytedeco:javacpp:1.4.4
  3212. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  3213. | | | \--- org.bytedeco:javacpp:1.4.4
  3214. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  3215. | | | \--- org.bytedeco:javacpp:1.4.4
  3216. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  3217. | | | \--- org.bytedeco:javacpp:1.4.4
  3218. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  3219. | | | \--- org.bytedeco:javacpp:1.4.4
  3220. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  3221. | | | \--- org.bytedeco:javacpp:1.4.4
  3222. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  3223. | | | \--- org.bytedeco:javacpp:1.4.4
  3224. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  3225. | | | \--- org.bytedeco:javacpp:1.4.4
  3226. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  3227. | | | \--- org.bytedeco:javacpp:1.4.4
  3228. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  3229. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  3230. | | | \--- org.bytedeco:javacpp:1.4.4
  3231. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  3232. | | | \--- org.bytedeco:javacpp:1.4.4
  3233. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  3234. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  3235. | | \--- org.bytedeco:javacpp:1.4.4
  3236. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  3237. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  3238. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  3239. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  3240. | \--- net.gotev:uploadservice:3.5.2
  3241. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  3242. +--- project :video_player
  3243. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  3244. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3245. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  3246. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3247. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3248. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  3249. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3250. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3251. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  3252. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3253. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3254. +--- project :package_info
  3255. +--- project :ttdj_plugin
  3256. +--- project :flutter_picker
  3257. +--- project :url_launcher
  3258. +--- project :path_provider
  3259. +--- project :image_cropper
  3260. | \--- com.github.yalantis:ucrop:2.2.3
  3261. | +--- com.android.support:appcompat-v7:28.0.0
  3262. | | +--- com.android.support:support-annotations:28.0.0
  3263. | | +--- com.android.support:support-compat:28.0.0
  3264. | | | +--- com.android.support:support-annotations:28.0.0
  3265. | | | +--- com.android.support:collections:28.0.0
  3266. | | | | \--- com.android.support:support-annotations:28.0.0
  3267. | | | +--- android.arch.lifecycle:runtime:1.1.1
  3268. | | | | +--- android.arch.lifecycle:common:1.1.1
  3269. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3270. | | | | +--- android.arch.core:common:1.1.1
  3271. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3272. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3273. | | | \--- com.android.support:versionedparcelable:28.0.0
  3274. | | | +--- com.android.support:support-annotations:28.0.0
  3275. | | | \--- com.android.support:collections:28.0.0 (*)
  3276. | | +--- com.android.support:collections:28.0.0 (*)
  3277. | | +--- com.android.support:cursoradapter:28.0.0
  3278. | | | \--- com.android.support:support-annotations:28.0.0
  3279. | | +--- com.android.support:support-core-utils:28.0.0
  3280. | | | +--- com.android.support:support-annotations:28.0.0
  3281. | | | +--- com.android.support:support-compat:28.0.0 (*)
  3282. | | | +--- com.android.support:documentfile:28.0.0
  3283. | | | | \--- com.android.support:support-annotations:28.0.0
  3284. | | | +--- com.android.support:loader:28.0.0
  3285. | | | | +--- com.android.support:support-annotations:28.0.0
  3286. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3287. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  3288. | | | | | +--- android.arch.core:runtime:1.1.1
  3289. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3290. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  3291. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  3292. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  3293. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  3294. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  3295. | | | | | \--- android.arch.core:common:1.1.1 (*)
  3296. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  3297. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3298. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  3299. | | | | \--- com.android.support:support-annotations:28.0.0
  3300. | | | \--- com.android.support:print:28.0.0
  3301. | | | \--- com.android.support:support-annotations:28.0.0
  3302. | | +--- com.android.support:support-fragment:28.0.0
  3303. | | | +--- com.android.support:support-compat:28.0.0 (*)
  3304. | | | +--- com.android.support:support-core-ui:28.0.0
  3305. | | | | +--- com.android.support:support-annotations:28.0.0
  3306. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3307. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3308. | | | | +--- com.android.support:customview:28.0.0
  3309. | | | | | +--- com.android.support:support-annotations:28.0.0
  3310. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3311. | | | | +--- com.android.support:viewpager:28.0.0
  3312. | | | | | +--- com.android.support:support-annotations:28.0.0
  3313. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3314. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3315. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  3316. | | | | | +--- com.android.support:support-annotations:28.0.0
  3317. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3318. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3319. | | | | +--- com.android.support:drawerlayout:28.0.0
  3320. | | | | | +--- com.android.support:support-annotations:28.0.0
  3321. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3322. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3323. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  3324. | | | | | +--- com.android.support:support-annotations:28.0.0
  3325. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3326. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3327. | | | | +--- com.android.support:interpolator:28.0.0
  3328. | | | | | \--- com.android.support:support-annotations:28.0.0
  3329. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  3330. | | | | | +--- com.android.support:support-annotations:28.0.0
  3331. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3332. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  3333. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  3334. | | | | | +--- com.android.support:support-annotations:28.0.0
  3335. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3336. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  3337. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3338. | | | +--- com.android.support:support-annotations:28.0.0
  3339. | | | +--- com.android.support:loader:28.0.0 (*)
  3340. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  3341. | | +--- com.android.support:support-vector-drawable:28.0.0
  3342. | | | +--- com.android.support:support-annotations:28.0.0
  3343. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3344. | | \--- com.android.support:animated-vector-drawable:28.0.0
  3345. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  3346. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3347. | +--- com.android.support:exifinterface:28.0.0
  3348. | | \--- com.android.support:support-annotations:28.0.0
  3349. | +--- com.android.support:design:28.0.0
  3350. | | +--- com.android.support:support-annotations:28.0.0
  3351. | | +--- com.android.support:support-compat:28.0.0 (*)
  3352. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  3353. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3354. | | +--- com.android.support:support-fragment:28.0.0 (*)
  3355. | | +--- com.android.support:transition:28.0.0
  3356. | | | +--- com.android.support:support-annotations:28.0.0
  3357. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3358. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  3359. | | +--- com.android.support:cardview-v7:28.0.0
  3360. | | | \--- com.android.support:support-annotations:28.0.0
  3361. | | \--- com.android.support:recyclerview-v7:28.0.0
  3362. | | +--- com.android.support:support-annotations:28.0.0
  3363. | | +--- com.android.support:support-compat:28.0.0 (*)
  3364. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3365. | \--- com.squareup.okhttp3:okhttp:3.11.0
  3366. | \--- com.squareup.okio:okio:1.14.0
  3367. +--- project :shared_preferences
  3368. +--- project :jpush_flutter
  3369. | +--- cn.jiguang.sdk:jpush:3.1.6
  3370. | \--- cn.jiguang.sdk:jcore:1.2.5
  3371. +--- project :screen
  3372. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3373. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3374. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3375. | \--- org.jetbrains:annotations:13.0
  3376. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  3377. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3378. \--- junit:junit:4.12
  3379. \--- org.hamcrest:hamcrest-core:1.3
  3380. profileUnitTestRuntimeOnly - Runtime only dependencies for compilation 'profileUnitTest' (target (androidJvm)). (n)
  3381. No dependencies
  3382. profileUnitTestRuntimeOnlyDependenciesMetadata
  3383. No dependencies
  3384. profileWearApp - Link to a wear app to embed for object 'profile'. (n)
  3385. No dependencies
  3386. profileWearBundling - Resolved Configuration for wear app bundling for variant: profile
  3387. No dependencies
  3388. provided - Provided dependencies for 'main' sources (deprecated: use 'compileOnly' instead). (n)
  3389. No dependencies
  3390. releaseAnnotationProcessor - Classpath for the annotation processor for 'release'. (n)
  3391. No dependencies
  3392. releaseAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: release
  3393. No dependencies
  3394. releaseApi - API dependencies for compilation 'release' (target (androidJvm)). (n)
  3395. \--- unspecified (n)
  3396. releaseApiDependenciesMetadata
  3397. No dependencies
  3398. releaseApiElements - API elements for release (n)
  3399. No dependencies
  3400. releaseApk - Apk dependencies for 'release' sources (deprecated: use 'releaseRuntimeOnly' instead). (n)
  3401. No dependencies
  3402. releaseBundleElements - Bundle elements for release (n)
  3403. No dependencies
  3404. releaseCompile - Dependencies for compilation 'release' (target (androidJvm)) (deprecated, use 'releaseImplementation ' instead).
  3405. No dependencies
  3406. releaseCompileClasspath - Compile classpath for compilation 'release' (target (androidJvm)).
  3407. +--- project :file_picker
  3408. +--- project :screen_stream_plugin
  3409. +--- project :video_player
  3410. +--- project :package_info
  3411. +--- project :ttdj_plugin
  3412. +--- project :flutter_picker
  3413. +--- project :url_launcher
  3414. +--- project :path_provider
  3415. +--- project :image_cropper
  3416. +--- project :shared_preferences
  3417. +--- project :jpush_flutter
  3418. +--- project :screen
  3419. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3420. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3421. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3422. | \--- org.jetbrains:annotations:13.0
  3423. +--- androidx.lifecycle:lifecycle-common:2.0.0
  3424. | \--- androidx.annotation:annotation:1.0.0
  3425. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3426. releaseCompileOnly - Compile only dependencies for compilation 'release' (target (androidJvm)).
  3427. No dependencies
  3428. releaseCompileOnlyDependenciesMetadata
  3429. No dependencies
  3430. releaseImplementation - Implementation only dependencies for compilation 'release' (target (androidJvm)). (n)
  3431. No dependencies
  3432. releaseImplementationDependenciesMetadata
  3433. +--- project :file_picker FAILED
  3434. +--- project :screen_stream_plugin FAILED
  3435. +--- project :video_player FAILED
  3436. +--- project :package_info FAILED
  3437. +--- project :ttdj_plugin FAILED
  3438. +--- project :flutter_picker FAILED
  3439. +--- project :url_launcher FAILED
  3440. +--- project :path_provider FAILED
  3441. +--- project :image_cropper FAILED
  3442. +--- project :shared_preferences FAILED
  3443. +--- project :jpush_flutter FAILED
  3444. +--- project :screen FAILED
  3445. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3446. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3447. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3448. | \--- org.jetbrains:annotations:13.0
  3449. +--- androidx.lifecycle:lifecycle-common:2.0.0
  3450. | \--- androidx.annotation:annotation:1.0.0
  3451. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3452. releaseMetadataElements (n)
  3453. No dependencies
  3454. releaseMetadataValues - Metadata Values dependencies for the base Split
  3455. No dependencies
  3456. releaseProvided - Provided dependencies for 'release' sources (deprecated: use 'releaseCompileOnly' instead). (n)
  3457. No dependencies
  3458. releaseRuntime - Runtime dependencies for compilation 'release' (target (androidJvm)) (deprecated, use 'releaseRuntimeOnly ' instead).
  3459. No dependencies
  3460. releaseRuntimeClasspath - Runtime classpath of compilation 'release' (target (androidJvm)).
  3461. +--- project :file_picker
  3462. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  3463. | +--- androidx.annotation:annotation:1.0.0
  3464. | +--- androidx.core:core:1.0.1
  3465. | | +--- androidx.annotation:annotation:1.0.0
  3466. | | +--- androidx.collection:collection:1.0.0
  3467. | | | \--- androidx.annotation:annotation:1.0.0
  3468. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  3469. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  3470. | | | | \--- androidx.annotation:annotation:1.0.0
  3471. | | | +--- androidx.arch.core:core-common:2.0.0
  3472. | | | | \--- androidx.annotation:annotation:1.0.0
  3473. | | | \--- androidx.annotation:annotation:1.0.0
  3474. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  3475. | | +--- androidx.annotation:annotation:1.0.0
  3476. | | \--- androidx.collection:collection:1.0.0 (*)
  3477. | +--- androidx.collection:collection:1.0.0 (*)
  3478. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  3479. | | \--- androidx.annotation:annotation:1.0.0
  3480. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  3481. | | +--- androidx.annotation:annotation:1.0.0
  3482. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3483. | | +--- androidx.documentfile:documentfile:1.0.0
  3484. | | | \--- androidx.annotation:annotation:1.0.0
  3485. | | +--- androidx.loader:loader:1.0.0
  3486. | | | +--- androidx.annotation:annotation:1.0.0
  3487. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3488. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  3489. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  3490. | | | | | +--- androidx.annotation:annotation:1.0.0
  3491. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  3492. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  3493. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  3494. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  3495. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  3496. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  3497. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  3498. | | | \--- androidx.annotation:annotation:1.0.0
  3499. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  3500. | | | \--- androidx.annotation:annotation:1.0.0
  3501. | | \--- androidx.print:print:1.0.0
  3502. | | \--- androidx.annotation:annotation:1.0.0
  3503. | +--- androidx.fragment:fragment:1.0.0
  3504. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3505. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  3506. | | | +--- androidx.annotation:annotation:1.0.0
  3507. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3508. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  3509. | | | +--- androidx.customview:customview:1.0.0
  3510. | | | | +--- androidx.annotation:annotation:1.0.0
  3511. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3512. | | | +--- androidx.viewpager:viewpager:1.0.0
  3513. | | | | +--- androidx.annotation:annotation:1.0.0
  3514. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3515. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3516. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  3517. | | | | +--- androidx.annotation:annotation:1.0.0
  3518. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3519. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3520. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  3521. | | | | +--- androidx.annotation:annotation:1.0.0
  3522. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3523. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3524. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  3525. | | | | +--- androidx.annotation:annotation:1.0.0
  3526. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3527. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3528. | | | +--- androidx.interpolator:interpolator:1.0.0
  3529. | | | | \--- androidx.annotation:annotation:1.0.0
  3530. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  3531. | | | | +--- androidx.annotation:annotation:1.0.0
  3532. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3533. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  3534. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  3535. | | | | +--- androidx.annotation:annotation:1.0.0
  3536. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3537. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  3538. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  3539. | | +--- androidx.annotation:annotation:1.0.0
  3540. | | +--- androidx.loader:loader:1.0.0 (*)
  3541. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  3542. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  3543. | | +--- androidx.annotation:annotation:1.0.0
  3544. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3545. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  3546. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  3547. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  3548. +--- project :screen_stream_plugin
  3549. | +--- org.bytedeco:javacv:1.4.4
  3550. | | +--- org.bytedeco:javacpp:1.4.4
  3551. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  3552. | | | \--- org.bytedeco:javacpp:1.4.4
  3553. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  3554. | | | \--- org.bytedeco:javacpp:1.4.4
  3555. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  3556. | | | \--- org.bytedeco:javacpp:1.4.4
  3557. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  3558. | | | \--- org.bytedeco:javacpp:1.4.4
  3559. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  3560. | | | \--- org.bytedeco:javacpp:1.4.4
  3561. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  3562. | | | \--- org.bytedeco:javacpp:1.4.4
  3563. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  3564. | | | \--- org.bytedeco:javacpp:1.4.4
  3565. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  3566. | | | \--- org.bytedeco:javacpp:1.4.4
  3567. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  3568. | | | \--- org.bytedeco:javacpp:1.4.4
  3569. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  3570. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  3571. | | | \--- org.bytedeco:javacpp:1.4.4
  3572. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  3573. | | | \--- org.bytedeco:javacpp:1.4.4
  3574. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  3575. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  3576. | | \--- org.bytedeco:javacpp:1.4.4
  3577. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  3578. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  3579. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  3580. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  3581. | \--- net.gotev:uploadservice:3.5.2
  3582. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  3583. +--- project :video_player
  3584. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  3585. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3586. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  3587. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3588. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3589. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  3590. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3591. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3592. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  3593. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3594. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3595. +--- project :package_info
  3596. +--- project :ttdj_plugin
  3597. +--- project :flutter_picker
  3598. +--- project :url_launcher
  3599. +--- project :path_provider
  3600. +--- project :image_cropper
  3601. | \--- com.github.yalantis:ucrop:2.2.3
  3602. | +--- com.android.support:appcompat-v7:28.0.0
  3603. | | +--- com.android.support:support-annotations:28.0.0
  3604. | | +--- com.android.support:support-compat:28.0.0
  3605. | | | +--- com.android.support:support-annotations:28.0.0
  3606. | | | +--- com.android.support:collections:28.0.0
  3607. | | | | \--- com.android.support:support-annotations:28.0.0
  3608. | | | +--- android.arch.lifecycle:runtime:1.1.1
  3609. | | | | +--- android.arch.lifecycle:common:1.1.1
  3610. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3611. | | | | +--- android.arch.core:common:1.1.1
  3612. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3613. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3614. | | | \--- com.android.support:versionedparcelable:28.0.0
  3615. | | | +--- com.android.support:support-annotations:28.0.0
  3616. | | | \--- com.android.support:collections:28.0.0 (*)
  3617. | | +--- com.android.support:collections:28.0.0 (*)
  3618. | | +--- com.android.support:cursoradapter:28.0.0
  3619. | | | \--- com.android.support:support-annotations:28.0.0
  3620. | | +--- com.android.support:support-core-utils:28.0.0
  3621. | | | +--- com.android.support:support-annotations:28.0.0
  3622. | | | +--- com.android.support:support-compat:28.0.0 (*)
  3623. | | | +--- com.android.support:documentfile:28.0.0
  3624. | | | | \--- com.android.support:support-annotations:28.0.0
  3625. | | | +--- com.android.support:loader:28.0.0
  3626. | | | | +--- com.android.support:support-annotations:28.0.0
  3627. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3628. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  3629. | | | | | +--- android.arch.core:runtime:1.1.1
  3630. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3631. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  3632. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  3633. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  3634. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  3635. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  3636. | | | | | \--- android.arch.core:common:1.1.1 (*)
  3637. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  3638. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3639. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  3640. | | | | \--- com.android.support:support-annotations:28.0.0
  3641. | | | \--- com.android.support:print:28.0.0
  3642. | | | \--- com.android.support:support-annotations:28.0.0
  3643. | | +--- com.android.support:support-fragment:28.0.0
  3644. | | | +--- com.android.support:support-compat:28.0.0 (*)
  3645. | | | +--- com.android.support:support-core-ui:28.0.0
  3646. | | | | +--- com.android.support:support-annotations:28.0.0
  3647. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3648. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3649. | | | | +--- com.android.support:customview:28.0.0
  3650. | | | | | +--- com.android.support:support-annotations:28.0.0
  3651. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3652. | | | | +--- com.android.support:viewpager:28.0.0
  3653. | | | | | +--- com.android.support:support-annotations:28.0.0
  3654. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3655. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3656. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  3657. | | | | | +--- com.android.support:support-annotations:28.0.0
  3658. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3659. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3660. | | | | +--- com.android.support:drawerlayout:28.0.0
  3661. | | | | | +--- com.android.support:support-annotations:28.0.0
  3662. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3663. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3664. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  3665. | | | | | +--- com.android.support:support-annotations:28.0.0
  3666. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3667. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3668. | | | | +--- com.android.support:interpolator:28.0.0
  3669. | | | | | \--- com.android.support:support-annotations:28.0.0
  3670. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  3671. | | | | | +--- com.android.support:support-annotations:28.0.0
  3672. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3673. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  3674. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  3675. | | | | | +--- com.android.support:support-annotations:28.0.0
  3676. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3677. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  3678. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3679. | | | +--- com.android.support:support-annotations:28.0.0
  3680. | | | +--- com.android.support:loader:28.0.0 (*)
  3681. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  3682. | | +--- com.android.support:support-vector-drawable:28.0.0
  3683. | | | +--- com.android.support:support-annotations:28.0.0
  3684. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3685. | | \--- com.android.support:animated-vector-drawable:28.0.0
  3686. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  3687. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3688. | +--- com.android.support:exifinterface:28.0.0
  3689. | | \--- com.android.support:support-annotations:28.0.0
  3690. | +--- com.android.support:design:28.0.0
  3691. | | +--- com.android.support:support-annotations:28.0.0
  3692. | | +--- com.android.support:support-compat:28.0.0 (*)
  3693. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  3694. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3695. | | +--- com.android.support:support-fragment:28.0.0 (*)
  3696. | | +--- com.android.support:transition:28.0.0
  3697. | | | +--- com.android.support:support-annotations:28.0.0
  3698. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3699. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  3700. | | +--- com.android.support:cardview-v7:28.0.0
  3701. | | | \--- com.android.support:support-annotations:28.0.0
  3702. | | \--- com.android.support:recyclerview-v7:28.0.0
  3703. | | +--- com.android.support:support-annotations:28.0.0
  3704. | | +--- com.android.support:support-compat:28.0.0 (*)
  3705. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3706. | \--- com.squareup.okhttp3:okhttp:3.11.0
  3707. | \--- com.squareup.okio:okio:1.14.0
  3708. +--- project :shared_preferences
  3709. +--- project :jpush_flutter
  3710. | +--- cn.jiguang.sdk:jpush:3.1.6
  3711. | \--- cn.jiguang.sdk:jcore:1.2.5
  3712. +--- project :screen
  3713. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3714. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3715. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3716. | \--- org.jetbrains:annotations:13.0
  3717. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  3718. \--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3719. releaseRuntimeElements - Runtime elements for release (n)
  3720. No dependencies
  3721. releaseRuntimeOnly - Runtime only dependencies for compilation 'release' (target (androidJvm)). (n)
  3722. No dependencies
  3723. releaseRuntimeOnlyDependenciesMetadata
  3724. No dependencies
  3725. releaseUnitTestAnnotationProcessorClasspath - Resolved configuration for annotation-processor for variant: releaseUnitTest
  3726. No dependencies
  3727. releaseUnitTestApi - API dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
  3728. No dependencies
  3729. releaseUnitTestApiDependenciesMetadata
  3730. No dependencies
  3731. releaseUnitTestCompile - Dependencies for compilation 'releaseUnitTest' (target (androidJvm)) (deprecated, use 'releaseUnitTestImplementation ' instead).
  3732. No dependencies
  3733. releaseUnitTestCompileClasspath - Compile classpath for compilation 'releaseUnitTest' (target (androidJvm)).
  3734. +--- project :file_picker
  3735. +--- project :screen_stream_plugin
  3736. +--- project :video_player
  3737. +--- project :package_info
  3738. +--- project :ttdj_plugin
  3739. +--- project :flutter_picker
  3740. +--- project :url_launcher
  3741. +--- project :path_provider
  3742. +--- project :image_cropper
  3743. +--- project :shared_preferences
  3744. +--- project :jpush_flutter
  3745. +--- project :screen
  3746. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  3747. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  3748. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  3749. | \--- org.jetbrains:annotations:13.0
  3750. +--- androidx.lifecycle:lifecycle-common:2.0.0
  3751. | \--- androidx.annotation:annotation:1.0.0
  3752. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  3753. \--- junit:junit:4.12
  3754. \--- org.hamcrest:hamcrest-core:1.3
  3755. releaseUnitTestCompileOnly - Compile only dependencies for compilation 'releaseUnitTest' (target (androidJvm)).
  3756. No dependencies
  3757. releaseUnitTestCompileOnlyDependenciesMetadata
  3758. No dependencies
  3759. releaseUnitTestImplementation - Implementation only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
  3760. No dependencies
  3761. releaseUnitTestImplementationDependenciesMetadata
  3762. \--- junit:junit:4.12
  3763. \--- org.hamcrest:hamcrest-core:1.3
  3764. releaseUnitTestRuntime - Runtime dependencies for compilation 'releaseUnitTest' (target (androidJvm)) (deprecated, use 'releaseUnitTestRuntimeOnly ' instead).
  3765. No dependencies
  3766. releaseUnitTestRuntimeClasspath - Runtime classpath of compilation 'releaseUnitTest' (target (androidJvm)).
  3767. +--- project :file_picker
  3768. | \--- androidx.appcompat:appcompat:1.0.0-beta01 -> 1.0.2
  3769. | +--- androidx.annotation:annotation:1.0.0
  3770. | +--- androidx.core:core:1.0.1
  3771. | | +--- androidx.annotation:annotation:1.0.0
  3772. | | +--- androidx.collection:collection:1.0.0
  3773. | | | \--- androidx.annotation:annotation:1.0.0
  3774. | | +--- androidx.lifecycle:lifecycle-runtime:2.0.0
  3775. | | | +--- androidx.lifecycle:lifecycle-common:2.0.0
  3776. | | | | \--- androidx.annotation:annotation:1.0.0
  3777. | | | +--- androidx.arch.core:core-common:2.0.0
  3778. | | | | \--- androidx.annotation:annotation:1.0.0
  3779. | | | \--- androidx.annotation:annotation:1.0.0
  3780. | | \--- androidx.versionedparcelable:versionedparcelable:1.0.0
  3781. | | +--- androidx.annotation:annotation:1.0.0
  3782. | | \--- androidx.collection:collection:1.0.0 (*)
  3783. | +--- androidx.collection:collection:1.0.0 (*)
  3784. | +--- androidx.cursoradapter:cursoradapter:1.0.0
  3785. | | \--- androidx.annotation:annotation:1.0.0
  3786. | +--- androidx.legacy:legacy-support-core-utils:1.0.0
  3787. | | +--- androidx.annotation:annotation:1.0.0
  3788. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3789. | | +--- androidx.documentfile:documentfile:1.0.0
  3790. | | | \--- androidx.annotation:annotation:1.0.0
  3791. | | +--- androidx.loader:loader:1.0.0
  3792. | | | +--- androidx.annotation:annotation:1.0.0
  3793. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3794. | | | +--- androidx.lifecycle:lifecycle-livedata:2.0.0
  3795. | | | | +--- androidx.arch.core:core-runtime:2.0.0
  3796. | | | | | +--- androidx.annotation:annotation:1.0.0
  3797. | | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  3798. | | | | +--- androidx.lifecycle:lifecycle-livedata-core:2.0.0
  3799. | | | | | +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  3800. | | | | | +--- androidx.arch.core:core-common:2.0.0 (*)
  3801. | | | | | \--- androidx.arch.core:core-runtime:2.0.0 (*)
  3802. | | | | \--- androidx.arch.core:core-common:2.0.0 (*)
  3803. | | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0
  3804. | | | \--- androidx.annotation:annotation:1.0.0
  3805. | | +--- androidx.localbroadcastmanager:localbroadcastmanager:1.0.0
  3806. | | | \--- androidx.annotation:annotation:1.0.0
  3807. | | \--- androidx.print:print:1.0.0
  3808. | | \--- androidx.annotation:annotation:1.0.0
  3809. | +--- androidx.fragment:fragment:1.0.0
  3810. | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3811. | | +--- androidx.legacy:legacy-support-core-ui:1.0.0
  3812. | | | +--- androidx.annotation:annotation:1.0.0
  3813. | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3814. | | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  3815. | | | +--- androidx.customview:customview:1.0.0
  3816. | | | | +--- androidx.annotation:annotation:1.0.0
  3817. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3818. | | | +--- androidx.viewpager:viewpager:1.0.0
  3819. | | | | +--- androidx.annotation:annotation:1.0.0
  3820. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3821. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3822. | | | +--- androidx.coordinatorlayout:coordinatorlayout:1.0.0
  3823. | | | | +--- androidx.annotation:annotation:1.0.0
  3824. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3825. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3826. | | | +--- androidx.drawerlayout:drawerlayout:1.0.0
  3827. | | | | +--- androidx.annotation:annotation:1.0.0
  3828. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3829. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3830. | | | +--- androidx.slidingpanelayout:slidingpanelayout:1.0.0
  3831. | | | | +--- androidx.annotation:annotation:1.0.0
  3832. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3833. | | | | \--- androidx.customview:customview:1.0.0 (*)
  3834. | | | +--- androidx.interpolator:interpolator:1.0.0
  3835. | | | | \--- androidx.annotation:annotation:1.0.0
  3836. | | | +--- androidx.swiperefreshlayout:swiperefreshlayout:1.0.0
  3837. | | | | +--- androidx.annotation:annotation:1.0.0
  3838. | | | | +--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3839. | | | | \--- androidx.interpolator:interpolator:1.0.0 (*)
  3840. | | | +--- androidx.asynclayoutinflater:asynclayoutinflater:1.0.0
  3841. | | | | +--- androidx.annotation:annotation:1.0.0
  3842. | | | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3843. | | | \--- androidx.cursoradapter:cursoradapter:1.0.0 (*)
  3844. | | +--- androidx.legacy:legacy-support-core-utils:1.0.0 (*)
  3845. | | +--- androidx.annotation:annotation:1.0.0
  3846. | | +--- androidx.loader:loader:1.0.0 (*)
  3847. | | \--- androidx.lifecycle:lifecycle-viewmodel:2.0.0 (*)
  3848. | +--- androidx.vectordrawable:vectordrawable:1.0.1
  3849. | | +--- androidx.annotation:annotation:1.0.0
  3850. | | \--- androidx.core:core:1.0.0 -> 1.0.1 (*)
  3851. | \--- androidx.vectordrawable:vectordrawable-animated:1.0.0
  3852. | +--- androidx.vectordrawable:vectordrawable:1.0.0 -> 1.0.1 (*)
  3853. | \--- androidx.legacy:legacy-support-core-ui:1.0.0 (*)
  3854. +--- project :screen_stream_plugin
  3855. | +--- org.bytedeco:javacv:1.4.4
  3856. | | +--- org.bytedeco:javacpp:1.4.4
  3857. | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4
  3858. | | | \--- org.bytedeco:javacpp:1.4.4
  3859. | | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4
  3860. | | | \--- org.bytedeco:javacpp:1.4.4
  3861. | | +--- org.bytedeco.javacpp-presets:flycapture:2.13.3.31-1.4.4
  3862. | | | \--- org.bytedeco:javacpp:1.4.4
  3863. | | +--- org.bytedeco.javacpp-presets:libdc1394:2.2.5-1.4.4
  3864. | | | \--- org.bytedeco:javacpp:1.4.4
  3865. | | +--- org.bytedeco.javacpp-presets:libfreenect:0.5.3-1.4.4
  3866. | | | \--- org.bytedeco:javacpp:1.4.4
  3867. | | +--- org.bytedeco.javacpp-presets:libfreenect2:0.2.0-1.4.4
  3868. | | | \--- org.bytedeco:javacpp:1.4.4
  3869. | | +--- org.bytedeco.javacpp-presets:librealsense:1.12.1-1.4.4
  3870. | | | \--- org.bytedeco:javacpp:1.4.4
  3871. | | +--- org.bytedeco.javacpp-presets:videoinput:0.200-1.4.4
  3872. | | | \--- org.bytedeco:javacpp:1.4.4
  3873. | | +--- org.bytedeco.javacpp-presets:artoolkitplus:2.3.1-1.4.4
  3874. | | | \--- org.bytedeco:javacpp:1.4.4
  3875. | | +--- org.bytedeco.javacpp-presets:flandmark:1.07-1.4.4
  3876. | | | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  3877. | | | \--- org.bytedeco:javacpp:1.4.4
  3878. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4
  3879. | | | \--- org.bytedeco:javacpp:1.4.4
  3880. | | \--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4
  3881. | | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  3882. | | \--- org.bytedeco:javacpp:1.4.4
  3883. | +--- org.bytedeco.javacpp-presets:opencv:4.0.1-1.4.4 (*)
  3884. | +--- org.bytedeco.javacpp-presets:ffmpeg:4.1-1.4.4 (*)
  3885. | +--- org.bytedeco.javacpp-presets:tesseract:4.0.0-1.4.4 (*)
  3886. | +--- org.bytedeco.javacpp-presets:leptonica:1.77.0-1.4.4 (*)
  3887. | \--- net.gotev:uploadservice:3.5.2
  3888. | \--- androidx.appcompat:appcompat:1.0.2 (*)
  3889. +--- project :video_player
  3890. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6
  3891. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3892. | +--- com.google.android.exoplayer:exoplayer-hls:2.9.6
  3893. | | +--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3894. | | \--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3895. | +--- com.google.android.exoplayer:exoplayer-dash:2.9.6
  3896. | | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3897. | | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3898. | \--- com.google.android.exoplayer:exoplayer-smoothstreaming:2.9.6
  3899. | +--- com.google.android.exoplayer:exoplayer-core:2.9.6 (*)
  3900. | \--- com.android.support:support-annotations:27.1.1 -> 28.0.0
  3901. +--- project :package_info
  3902. +--- project :ttdj_plugin
  3903. +--- project :flutter_picker
  3904. +--- project :url_launcher
  3905. +--- project :path_provider
  3906. +--- project :image_cropper
  3907. | \--- com.github.yalantis:ucrop:2.2.3
  3908. | +--- com.android.support:appcompat-v7:28.0.0
  3909. | | +--- com.android.support:support-annotations:28.0.0
  3910. | | +--- com.android.support:support-compat:28.0.0
  3911. | | | +--- com.android.support:support-annotations:28.0.0
  3912. | | | +--- com.android.support:collections:28.0.0
  3913. | | | | \--- com.android.support:support-annotations:28.0.0
  3914. | | | +--- android.arch.lifecycle:runtime:1.1.1
  3915. | | | | +--- android.arch.lifecycle:common:1.1.1
  3916. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3917. | | | | +--- android.arch.core:common:1.1.1
  3918. | | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3919. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3920. | | | \--- com.android.support:versionedparcelable:28.0.0
  3921. | | | +--- com.android.support:support-annotations:28.0.0
  3922. | | | \--- com.android.support:collections:28.0.0 (*)
  3923. | | +--- com.android.support:collections:28.0.0 (*)
  3924. | | +--- com.android.support:cursoradapter:28.0.0
  3925. | | | \--- com.android.support:support-annotations:28.0.0
  3926. | | +--- com.android.support:support-core-utils:28.0.0
  3927. | | | +--- com.android.support:support-annotations:28.0.0
  3928. | | | +--- com.android.support:support-compat:28.0.0 (*)
  3929. | | | +--- com.android.support:documentfile:28.0.0
  3930. | | | | \--- com.android.support:support-annotations:28.0.0
  3931. | | | +--- com.android.support:loader:28.0.0
  3932. | | | | +--- com.android.support:support-annotations:28.0.0
  3933. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3934. | | | | +--- android.arch.lifecycle:livedata:1.1.1
  3935. | | | | | +--- android.arch.core:runtime:1.1.1
  3936. | | | | | | +--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3937. | | | | | | \--- android.arch.core:common:1.1.1 (*)
  3938. | | | | | +--- android.arch.lifecycle:livedata-core:1.1.1
  3939. | | | | | | +--- android.arch.lifecycle:common:1.1.1 (*)
  3940. | | | | | | +--- android.arch.core:common:1.1.1 (*)
  3941. | | | | | | \--- android.arch.core:runtime:1.1.1 (*)
  3942. | | | | | \--- android.arch.core:common:1.1.1 (*)
  3943. | | | | \--- android.arch.lifecycle:viewmodel:1.1.1
  3944. | | | | \--- com.android.support:support-annotations:26.1.0 -> 28.0.0
  3945. | | | +--- com.android.support:localbroadcastmanager:28.0.0
  3946. | | | | \--- com.android.support:support-annotations:28.0.0
  3947. | | | \--- com.android.support:print:28.0.0
  3948. | | | \--- com.android.support:support-annotations:28.0.0
  3949. | | +--- com.android.support:support-fragment:28.0.0
  3950. | | | +--- com.android.support:support-compat:28.0.0 (*)
  3951. | | | +--- com.android.support:support-core-ui:28.0.0
  3952. | | | | +--- com.android.support:support-annotations:28.0.0
  3953. | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3954. | | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3955. | | | | +--- com.android.support:customview:28.0.0
  3956. | | | | | +--- com.android.support:support-annotations:28.0.0
  3957. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3958. | | | | +--- com.android.support:viewpager:28.0.0
  3959. | | | | | +--- com.android.support:support-annotations:28.0.0
  3960. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3961. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3962. | | | | +--- com.android.support:coordinatorlayout:28.0.0
  3963. | | | | | +--- com.android.support:support-annotations:28.0.0
  3964. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3965. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3966. | | | | +--- com.android.support:drawerlayout:28.0.0
  3967. | | | | | +--- com.android.support:support-annotations:28.0.0
  3968. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3969. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3970. | | | | +--- com.android.support:slidingpanelayout:28.0.0
  3971. | | | | | +--- com.android.support:support-annotations:28.0.0
  3972. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3973. | | | | | \--- com.android.support:customview:28.0.0 (*)
  3974. | | | | +--- com.android.support:interpolator:28.0.0
  3975. | | | | | \--- com.android.support:support-annotations:28.0.0
  3976. | | | | +--- com.android.support:swiperefreshlayout:28.0.0
  3977. | | | | | +--- com.android.support:support-annotations:28.0.0
  3978. | | | | | +--- com.android.support:support-compat:28.0.0 (*)
  3979. | | | | | \--- com.android.support:interpolator:28.0.0 (*)
  3980. | | | | +--- com.android.support:asynclayoutinflater:28.0.0
  3981. | | | | | +--- com.android.support:support-annotations:28.0.0
  3982. | | | | | \--- com.android.support:support-compat:28.0.0 (*)
  3983. | | | | \--- com.android.support:cursoradapter:28.0.0 (*)
  3984. | | | +--- com.android.support:support-core-utils:28.0.0 (*)
  3985. | | | +--- com.android.support:support-annotations:28.0.0
  3986. | | | +--- com.android.support:loader:28.0.0 (*)
  3987. | | | \--- android.arch.lifecycle:viewmodel:1.1.1 (*)
  3988. | | +--- com.android.support:support-vector-drawable:28.0.0
  3989. | | | +--- com.android.support:support-annotations:28.0.0
  3990. | | | \--- com.android.support:support-compat:28.0.0 (*)
  3991. | | \--- com.android.support:animated-vector-drawable:28.0.0
  3992. | | +--- com.android.support:support-vector-drawable:28.0.0 (*)
  3993. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  3994. | +--- com.android.support:exifinterface:28.0.0
  3995. | | \--- com.android.support:support-annotations:28.0.0
  3996. | +--- com.android.support:design:28.0.0
  3997. | | +--- com.android.support:support-annotations:28.0.0
  3998. | | +--- com.android.support:support-compat:28.0.0 (*)
  3999. | | +--- com.android.support:support-core-ui:28.0.0 (*)
  4000. | | +--- com.android.support:support-core-utils:28.0.0 (*)
  4001. | | +--- com.android.support:support-fragment:28.0.0 (*)
  4002. | | +--- com.android.support:transition:28.0.0
  4003. | | | +--- com.android.support:support-annotations:28.0.0
  4004. | | | \--- com.android.support:support-compat:28.0.0 (*)
  4005. | | +--- com.android.support:appcompat-v7:28.0.0 (*)
  4006. | | +--- com.android.support:cardview-v7:28.0.0
  4007. | | | \--- com.android.support:support-annotations:28.0.0
  4008. | | \--- com.android.support:recyclerview-v7:28.0.0
  4009. | | +--- com.android.support:support-annotations:28.0.0
  4010. | | +--- com.android.support:support-compat:28.0.0 (*)
  4011. | | \--- com.android.support:support-core-ui:28.0.0 (*)
  4012. | \--- com.squareup.okhttp3:okhttp:3.11.0
  4013. | \--- com.squareup.okio:okio:1.14.0
  4014. +--- project :shared_preferences
  4015. +--- project :jpush_flutter
  4016. | +--- cn.jiguang.sdk:jpush:3.1.6
  4017. | \--- cn.jiguang.sdk:jcore:1.2.5
  4018. +--- project :screen
  4019. +--- org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71
  4020. | \--- org.jetbrains.kotlin:kotlin-stdlib:1.2.71
  4021. | +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.2.71
  4022. | \--- org.jetbrains:annotations:13.0
  4023. +--- androidx.lifecycle:lifecycle-common:2.0.0 (*)
  4024. +--- androidx.annotation:annotation:1.0.2 -> 1.0.0
  4025. \--- junit:junit:4.12
  4026. \--- org.hamcrest:hamcrest-core:1.3
  4027. releaseUnitTestRuntimeOnly - Runtime only dependencies for compilation 'releaseUnitTest' (target (androidJvm)). (n)
  4028. No dependencies
  4029. releaseUnitTestRuntimeOnlyDependenciesMetadata
  4030. No dependencies
  4031. releaseWearApp - Link to a wear app to embed for object 'release'. (n)
  4032. No dependencies
  4033. releaseWearBundling - Resolved Configuration for wear app bundling for variant: release
  4034. No dependencies
  4035. runtimeOnly - Runtime only dependencies for 'main' sources. (n)
  4036. No dependencies
  4037. runtimeOnlyDependenciesMetadata
  4038. No dependencies
  4039. testAnnotationProcessor - Classpath for the annotation processor for 'test'. (n)
  4040. No dependencies
  4041. testApi - API dependencies for 'test' sources. (n)
  4042. No dependencies
  4043. testApiDependenciesMetadata
  4044. No dependencies
  4045. testApk - Apk dependencies for 'test' sources (deprecated: use 'testRuntimeOnly' instead). (n)
  4046. No dependencies
  4047. testCompile - Compile dependencies for 'test' sources (deprecated: use 'testImplementation' instead).
  4048. No dependencies
  4049. testCompileOnly - Compile only dependencies for 'test' sources. (n)
  4050. No dependencies
  4051. testCompileOnlyDependenciesMetadata
  4052. No dependencies
  4053. testDebugAnnotationProcessor - Classpath for the annotation processor for 'testDebug'. (n)
  4054. No dependencies
  4055. testDebugApi - API dependencies for 'testDebug' sources. (n)
  4056. No dependencies
  4057. testDebugApiDependenciesMetadata
  4058. No dependencies
  4059. testDebugApk - Apk dependencies for 'testDebug' sources (deprecated: use 'testDebugRuntimeOnly' instead). (n)
  4060. No dependencies
  4061. testDebugCompile - Compile dependencies for 'testDebug' sources (deprecated: use 'testDebugImplementation' instead). (n)
  4062. No dependencies
  4063. testDebugCompileOnly - Compile only dependencies for 'testDebug' sources. (n)
  4064. No dependencies
  4065. testDebugCompileOnlyDependenciesMetadata
  4066. No dependencies
  4067. testDebugImplementation - Implementation only dependencies for 'testDebug' sources. (n)
  4068. No dependencies
  4069. testDebugImplementationDependenciesMetadata
  4070. No dependencies
  4071. testDebugProvided - Provided dependencies for 'testDebug' sources (deprecated: use 'testDebugCompileOnly' instead). (n)
  4072. No dependencies
  4073. testDebugRuntimeOnly - Runtime only dependencies for 'testDebug' sources. (n)
  4074. No dependencies
  4075. testDebugRuntimeOnlyDependenciesMetadata
  4076. No dependencies
  4077. testDebugWearApp - Link to a wear app to embed for object 'testDebug'. (n)
  4078. No dependencies
  4079. testDynamicProfileAnnotationProcessor - Classpath for the annotation processor for 'testDynamicProfile'. (n)
  4080. No dependencies
  4081. testDynamicProfileApi - API dependencies for 'testDynamicProfile' sources. (n)
  4082. No dependencies
  4083. testDynamicProfileApiDependenciesMetadata
  4084. No dependencies
  4085. testDynamicProfileApk - Apk dependencies for 'testDynamicProfile' sources (deprecated: use 'testDynamicProfileRuntimeOnly' instead). (n)
  4086. No dependencies
  4087. testDynamicProfileCompile - Compile dependencies for 'testDynamicProfile' sources (deprecated: use 'testDynamicProfileImplementation' instead). (n)
  4088. No dependencies
  4089. testDynamicProfileCompileOnly - Compile only dependencies for 'testDynamicProfile' sources. (n)
  4090. No dependencies
  4091. testDynamicProfileCompileOnlyDependenciesMetadata
  4092. No dependencies
  4093. testDynamicProfileImplementation - Implementation only dependencies for 'testDynamicProfile' sources. (n)
  4094. No dependencies
  4095. testDynamicProfileImplementationDependenciesMetadata
  4096. No dependencies
  4097. testDynamicProfileProvided - Provided dependencies for 'testDynamicProfile' sources (deprecated: use 'testDynamicProfileCompileOnly' instead). (n)
  4098. No dependencies
  4099. testDynamicProfileRuntimeOnly - Runtime only dependencies for 'testDynamicProfile' sources. (n)
  4100. No dependencies
  4101. testDynamicProfileRuntimeOnlyDependenciesMetadata
  4102. No dependencies
  4103. testDynamicProfileWearApp - Link to a wear app to embed for object 'testDynamicProfile'. (n)
  4104. No dependencies
  4105. testDynamicReleaseAnnotationProcessor - Classpath for the annotation processor for 'testDynamicRelease'. (n)
  4106. No dependencies
  4107. testDynamicReleaseApi - API dependencies for 'testDynamicRelease' sources. (n)
  4108. No dependencies
  4109. testDynamicReleaseApiDependenciesMetadata
  4110. No dependencies
  4111. testDynamicReleaseApk - Apk dependencies for 'testDynamicRelease' sources (deprecated: use 'testDynamicReleaseRuntimeOnly' instead). (n)
  4112. No dependencies
  4113. testDynamicReleaseCompile - Compile dependencies for 'testDynamicRelease' sources (deprecated: use 'testDynamicReleaseImplementation' instead). (n)
  4114. No dependencies
  4115. testDynamicReleaseCompileOnly - Compile only dependencies for 'testDynamicRelease' sources. (n)
  4116. No dependencies
  4117. testDynamicReleaseCompileOnlyDependenciesMetadata
  4118. No dependencies
  4119. testDynamicReleaseImplementation - Implementation only dependencies for 'testDynamicRelease' sources. (n)
  4120. No dependencies
  4121. testDynamicReleaseImplementationDependenciesMetadata
  4122. No dependencies
  4123. testDynamicReleaseProvided - Provided dependencies for 'testDynamicRelease' sources (deprecated: use 'testDynamicReleaseCompileOnly' instead). (n)
  4124. No dependencies
  4125. testDynamicReleaseRuntimeOnly - Runtime only dependencies for 'testDynamicRelease' sources. (n)
  4126. No dependencies
  4127. testDynamicReleaseRuntimeOnlyDependenciesMetadata
  4128. No dependencies
  4129. testDynamicReleaseWearApp - Link to a wear app to embed for object 'testDynamicRelease'. (n)
  4130. No dependencies
  4131. testImplementation - Implementation only dependencies for 'test' sources. (n)
  4132. \--- junit:junit:4.12 (n)
  4133. testImplementationDependenciesMetadata
  4134. \--- junit:junit:4.12
  4135. \--- org.hamcrest:hamcrest-core:1.3
  4136. testProfileAnnotationProcessor - Classpath for the annotation processor for 'testProfile'. (n)
  4137. No dependencies
  4138. testProfileApi - API dependencies for 'testProfile' sources. (n)
  4139. No dependencies
  4140. testProfileApiDependenciesMetadata
  4141. No dependencies
  4142. testProfileApk - Apk dependencies for 'testProfile' sources (deprecated: use 'testProfileRuntimeOnly' instead). (n)
  4143. No dependencies
  4144. testProfileCompile - Compile dependencies for 'testProfile' sources (deprecated: use 'testProfileImplementation' instead). (n)
  4145. No dependencies
  4146. testProfileCompileOnly - Compile only dependencies for 'testProfile' sources. (n)
  4147. No dependencies
  4148. testProfileCompileOnlyDependenciesMetadata
  4149. No dependencies
  4150. testProfileImplementation - Implementation only dependencies for 'testProfile' sources. (n)
  4151. No dependencies
  4152. testProfileImplementationDependenciesMetadata
  4153. No dependencies
  4154. testProfileProvided - Provided dependencies for 'testProfile' sources (deprecated: use 'testProfileCompileOnly' instead). (n)
  4155. No dependencies
  4156. testProfileRuntimeOnly - Runtime only dependencies for 'testProfile' sources. (n)
  4157. No dependencies
  4158. testProfileRuntimeOnlyDependenciesMetadata
  4159. No dependencies
  4160. testProfileWearApp - Link to a wear app to embed for object 'testProfile'. (n)
  4161. No dependencies
  4162. testProvided - Provided dependencies for 'test' sources (deprecated: use 'testCompileOnly' instead). (n)
  4163. No dependencies
  4164. testReleaseAnnotationProcessor - Classpath for the annotation processor for 'testRelease'. (n)
  4165. No dependencies
  4166. testReleaseApi - API dependencies for 'testRelease' sources. (n)
  4167. No dependencies
  4168. testReleaseApiDependenciesMetadata
  4169. No dependencies
  4170. testReleaseApk - Apk dependencies for 'testRelease' sources (deprecated: use 'testReleaseRuntimeOnly' instead). (n)
  4171. No dependencies
  4172. testReleaseCompile - Compile dependencies for 'testRelease' sources (deprecated: use 'testReleaseImplementation' instead). (n)
  4173. No dependencies
  4174. testReleaseCompileOnly - Compile only dependencies for 'testRelease' sources. (n)
  4175. No dependencies
  4176. testReleaseCompileOnlyDependenciesMetadata
  4177. No dependencies
  4178. testReleaseImplementation - Implementation only dependencies for 'testRelease' sources. (n)
  4179. No dependencies
  4180. testReleaseImplementationDependenciesMetadata
  4181. No dependencies
  4182. testReleaseProvided - Provided dependencies for 'testRelease' sources (deprecated: use 'testReleaseCompileOnly' instead). (n)
  4183. No dependencies
  4184. testReleaseRuntimeOnly - Runtime only dependencies for 'testRelease' sources. (n)
  4185. No dependencies
  4186. testReleaseRuntimeOnlyDependenciesMetadata
  4187. No dependencies
  4188. testReleaseWearApp - Link to a wear app to embed for object 'testRelease'. (n)
  4189. No dependencies
  4190. testRuntimeOnly - Runtime only dependencies for 'test' sources. (n)
  4191. No dependencies
  4192. testRuntimeOnlyDependenciesMetadata
  4193. No dependencies
  4194. testWearApp - Link to a wear app to embed for object 'test'. (n)
  4195. No dependencies
  4196. wearApp - Link to a wear app to embed for object 'main'. (n)
  4197. No dependencies
  4198. (*) - dependencies omitted (listed previously)
  4199. (n) - Not resolved (configuration is not meant to be resolved)
  4200. A web-based, searchable dependency report is available by adding the --scan option.
  4201. 1 actionable task: 1 executed