-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathtasks.txt
1866 lines (1854 loc) · 150 KB
/
tasks.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Calculating task graph as no cached configuration is available for tasks: tasks
Type-safe project accessors is an incubating feature.
> Configure project :Common
WARNING: The option setting 'android.defaults.buildfeatures.buildconfig=true' is deprecated.
The current default is 'false'.
It will be removed in version 9.0 of the Android Gradle plugin.
You can resolve this warning in Android Studio via `Refactor` > `Migrate BuildConfig to Gradle Build Files`
> Task :tasks
------------------------------------------------------------
Tasks runnable from root project 'Glucodata'
------------------------------------------------------------
Android tasks
-------------
androidDependencies - Displays the Android dependencies of the project.
signingReport - Displays the signing info for the base and test modules
sourceSets - Prints out all the source sets defined in this project.
Build tasks
-----------
assemble - Assemble main outputs for all the variants.
assembleAndroidTest - Assembles all the Test applications.
assembleDebug - Assembles main outputs for all Debug variants.
assembleDebug2 - Assembles main outputs for all Debug2 variants.
assembleDebug3 - Assembles main outputs for all Debug3 variants.
assembleDebugdub - Assembles main outputs for all Debugdub variants.
assembleDex - Assembles main outputs for all Dex variants.
assembleLibre3 - Assembles main outputs for all Libre3 variants.
assembleLibreOld - Assembles main outputs for all LibreOld variants.
assembleMobile - Assembles main outputs for all Mobile variants.
assembleMobileLibre3NosiDex - Assembles main outputs for all MobileLibre3NosiDex variants.
assembleMobileLibre3NosiNodex - Assembles main outputs for all MobileLibre3NosiNodex variants.
assembleMobileLibre3SiDex - Assembles main outputs for all MobileLibre3SiDex variants.
assembleMobileLibre3SiNodex - Assembles main outputs for all MobileLibre3SiNodex variants.
assembleMobileLibreOldNosiDex - Assembles main outputs for all MobileLibreOldNosiDex variants.
assembleMobileLibreOldNosiNodex - Assembles main outputs for all MobileLibreOldNosiNodex variants.
assembleMobileLibreOldSiDex - Assembles main outputs for all MobileLibreOldSiDex variants.
assembleMobileLibreOldSiNodex - Assembles main outputs for all MobileLibreOldSiNodex variants.
assembleNodex - Assembles main outputs for all Nodex variants.
assembleNosi - Assembles main outputs for all Nosi variants.
assembleRelease - Assembles main outputs for all Release variants.
assembleRelease2 - Assembles main outputs for all Release2 variants.
assembleRelease2log - Assembles main outputs for all Release2log variants.
assembleReleasedebug - Assembles main outputs for all Releasedebug variants.
assembleReleasedub - Assembles main outputs for all Releasedub variants.
assembleReleaselog - Assembles main outputs for all Releaselog variants.
assembleSi - Assembles main outputs for all Si variants.
assembleSmall - Assembles main outputs for all Small variants.
assembleSmallLibre3NosiDex - Assembles main outputs for all SmallLibre3NosiDex variants.
assembleSmallLibre3NosiNodex - Assembles main outputs for all SmallLibre3NosiNodex variants.
assembleSmallLibre3SiDex - Assembles main outputs for all SmallLibre3SiDex variants.
assembleSmallLibre3SiNodex - Assembles main outputs for all SmallLibre3SiNodex variants.
assembleSmallLibreOldNosiDex - Assembles main outputs for all SmallLibreOldNosiDex variants.
assembleSmallLibreOldNosiNodex - Assembles main outputs for all SmallLibreOldNosiNodex variants.
assembleSmallLibreOldSiDex - Assembles main outputs for all SmallLibreOldSiDex variants.
assembleSmallLibreOldSiNodex - Assembles main outputs for all SmallLibreOldSiNodex variants.
assembleUnitTest - Assembles all the unit test applications.
assembleWear - Assembles main outputs for all Wear variants.
assembleWearLibre3NosiDex - Assembles main outputs for all WearLibre3NosiDex variants.
assembleWearLibre3NosiNodex - Assembles main outputs for all WearLibre3NosiNodex variants.
assembleWearLibre3SiDex - Assembles main outputs for all WearLibre3SiDex variants.
assembleWearLibre3SiNodex - Assembles main outputs for all WearLibre3SiNodex variants.
assembleWearLibreOldNosiDex - Assembles main outputs for all WearLibreOldNosiDex variants.
assembleWearLibreOldNosiNodex - Assembles main outputs for all WearLibreOldNosiNodex variants.
assembleWearLibreOldSiDex - Assembles main outputs for all WearLibreOldSiDex variants.
assembleWearLibreOldSiNodex - Assembles main outputs for all WearLibreOldSiNodex variants.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildKotlinToolingMetadata - Build metadata json file containing information about the used Kotlin tooling
buildNeeded - Assembles and tests this project and all projects it depends on.
bundle - Assemble bundles for all the variants.
bundleDebug - Assembles bundles for all Debug variants.
bundleDebug2 - Assembles bundles for all Debug2 variants.
bundleDebug3 - Assembles bundles for all Debug3 variants.
bundleDebugdub - Assembles bundles for all Debugdub variants.
bundleDex - Assembles bundles for all Dex variants.
bundleLibre3 - Assembles bundles for all Libre3 variants.
bundleLibreOld - Assembles bundles for all LibreOld variants.
bundleMobile - Assembles bundles for all Mobile variants.
bundleMobileLibre3NosiDex - Assembles bundles for all MobileLibre3NosiDex variants.
bundleMobileLibre3NosiNodex - Assembles bundles for all MobileLibre3NosiNodex variants.
bundleMobileLibre3SiDex - Assembles bundles for all MobileLibre3SiDex variants.
bundleMobileLibre3SiNodex - Assembles bundles for all MobileLibre3SiNodex variants.
bundleMobileLibreOldNosiDex - Assembles bundles for all MobileLibreOldNosiDex variants.
bundleMobileLibreOldNosiNodex - Assembles bundles for all MobileLibreOldNosiNodex variants.
bundleMobileLibreOldSiDex - Assembles bundles for all MobileLibreOldSiDex variants.
bundleMobileLibreOldSiNodex - Assembles bundles for all MobileLibreOldSiNodex variants.
bundleNodex - Assembles bundles for all Nodex variants.
bundleNosi - Assembles bundles for all Nosi variants.
bundleRelease - Assembles bundles for all Release variants.
bundleRelease2 - Assembles bundles for all Release2 variants.
bundleRelease2log - Assembles bundles for all Release2log variants.
bundleReleasedebug - Assembles bundles for all Releasedebug variants.
bundleReleasedub - Assembles bundles for all Releasedub variants.
bundleReleaselog - Assembles bundles for all Releaselog variants.
bundleSi - Assembles bundles for all Si variants.
bundleSmall - Assembles bundles for all Small variants.
bundleSmallLibre3NosiDex - Assembles bundles for all SmallLibre3NosiDex variants.
bundleSmallLibre3NosiNodex - Assembles bundles for all SmallLibre3NosiNodex variants.
bundleSmallLibre3SiDex - Assembles bundles for all SmallLibre3SiDex variants.
bundleSmallLibre3SiNodex - Assembles bundles for all SmallLibre3SiNodex variants.
bundleSmallLibreOldNosiDex - Assembles bundles for all SmallLibreOldNosiDex variants.
bundleSmallLibreOldNosiNodex - Assembles bundles for all SmallLibreOldNosiNodex variants.
bundleSmallLibreOldSiDex - Assembles bundles for all SmallLibreOldSiDex variants.
bundleSmallLibreOldSiNodex - Assembles bundles for all SmallLibreOldSiNodex variants.
bundleWear - Assembles bundles for all Wear variants.
bundleWearLibre3NosiDex - Assembles bundles for all WearLibre3NosiDex variants.
bundleWearLibre3NosiNodex - Assembles bundles for all WearLibre3NosiNodex variants.
bundleWearLibre3SiDex - Assembles bundles for all WearLibre3SiDex variants.
bundleWearLibre3SiNodex - Assembles bundles for all WearLibre3SiNodex variants.
bundleWearLibreOldNosiDex - Assembles bundles for all WearLibreOldNosiDex variants.
bundleWearLibreOldNosiNodex - Assembles bundles for all WearLibreOldNosiNodex variants.
bundleWearLibreOldSiDex - Assembles bundles for all WearLibreOldSiDex variants.
bundleWearLibreOldSiNodex - Assembles bundles for all WearLibreOldSiNodex variants.
clean - Deletes the build directory.
compileMobileLibre3NosiDexDebug2Sources
compileMobileLibre3NosiDexDebug2UnitTestSources
compileMobileLibre3NosiDexDebug3Sources
compileMobileLibre3NosiDexDebug3UnitTestSources
compileMobileLibre3NosiDexDebugAndroidTestSources
compileMobileLibre3NosiDexDebugdubSources
compileMobileLibre3NosiDexDebugdubUnitTestSources
compileMobileLibre3NosiDexDebugSources
compileMobileLibre3NosiDexDebugUnitTestSources
compileMobileLibre3NosiDexRelease2logSources
compileMobileLibre3NosiDexRelease2logUnitTestSources
compileMobileLibre3NosiDexRelease2Sources
compileMobileLibre3NosiDexRelease2UnitTestSources
compileMobileLibre3NosiDexReleasedebugSources
compileMobileLibre3NosiDexReleasedebugUnitTestSources
compileMobileLibre3NosiDexReleasedubSources
compileMobileLibre3NosiDexReleasedubUnitTestSources
compileMobileLibre3NosiDexReleaselogSources
compileMobileLibre3NosiDexReleaselogUnitTestSources
compileMobileLibre3NosiDexReleaseSources
compileMobileLibre3NosiDexReleaseUnitTestSources
compileMobileLibre3NosiNodexDebug2Sources
compileMobileLibre3NosiNodexDebug2UnitTestSources
compileMobileLibre3NosiNodexDebug3Sources
compileMobileLibre3NosiNodexDebug3UnitTestSources
compileMobileLibre3NosiNodexDebugAndroidTestSources
compileMobileLibre3NosiNodexDebugdubSources
compileMobileLibre3NosiNodexDebugdubUnitTestSources
compileMobileLibre3NosiNodexDebugSources
compileMobileLibre3NosiNodexDebugUnitTestSources
compileMobileLibre3NosiNodexRelease2logSources
compileMobileLibre3NosiNodexRelease2logUnitTestSources
compileMobileLibre3NosiNodexRelease2Sources
compileMobileLibre3NosiNodexRelease2UnitTestSources
compileMobileLibre3NosiNodexReleasedebugSources
compileMobileLibre3NosiNodexReleasedebugUnitTestSources
compileMobileLibre3NosiNodexReleasedubSources
compileMobileLibre3NosiNodexReleasedubUnitTestSources
compileMobileLibre3NosiNodexReleaselogSources
compileMobileLibre3NosiNodexReleaselogUnitTestSources
compileMobileLibre3NosiNodexReleaseSources
compileMobileLibre3NosiNodexReleaseUnitTestSources
compileMobileLibre3SiDexDebug2Sources
compileMobileLibre3SiDexDebug2UnitTestSources
compileMobileLibre3SiDexDebug3Sources
compileMobileLibre3SiDexDebug3UnitTestSources
compileMobileLibre3SiDexDebugAndroidTestSources
compileMobileLibre3SiDexDebugdubSources
compileMobileLibre3SiDexDebugdubUnitTestSources
compileMobileLibre3SiDexDebugSources
compileMobileLibre3SiDexDebugUnitTestSources
compileMobileLibre3SiDexRelease2logSources
compileMobileLibre3SiDexRelease2logUnitTestSources
compileMobileLibre3SiDexRelease2Sources
compileMobileLibre3SiDexRelease2UnitTestSources
compileMobileLibre3SiDexReleasedebugSources
compileMobileLibre3SiDexReleasedebugUnitTestSources
compileMobileLibre3SiDexReleasedubSources
compileMobileLibre3SiDexReleasedubUnitTestSources
compileMobileLibre3SiDexReleaselogSources
compileMobileLibre3SiDexReleaselogUnitTestSources
compileMobileLibre3SiDexReleaseSources
compileMobileLibre3SiDexReleaseUnitTestSources
compileMobileLibre3SiNodexDebug2Sources
compileMobileLibre3SiNodexDebug2UnitTestSources
compileMobileLibre3SiNodexDebug3Sources
compileMobileLibre3SiNodexDebug3UnitTestSources
compileMobileLibre3SiNodexDebugAndroidTestSources
compileMobileLibre3SiNodexDebugdubSources
compileMobileLibre3SiNodexDebugdubUnitTestSources
compileMobileLibre3SiNodexDebugSources
compileMobileLibre3SiNodexDebugUnitTestSources
compileMobileLibre3SiNodexRelease2logSources
compileMobileLibre3SiNodexRelease2logUnitTestSources
compileMobileLibre3SiNodexRelease2Sources
compileMobileLibre3SiNodexRelease2UnitTestSources
compileMobileLibre3SiNodexReleasedebugSources
compileMobileLibre3SiNodexReleasedebugUnitTestSources
compileMobileLibre3SiNodexReleasedubSources
compileMobileLibre3SiNodexReleasedubUnitTestSources
compileMobileLibre3SiNodexReleaselogSources
compileMobileLibre3SiNodexReleaselogUnitTestSources
compileMobileLibre3SiNodexReleaseSources
compileMobileLibre3SiNodexReleaseUnitTestSources
compileMobileLibreOldNosiDexDebug2Sources
compileMobileLibreOldNosiDexDebug2UnitTestSources
compileMobileLibreOldNosiDexDebug3Sources
compileMobileLibreOldNosiDexDebug3UnitTestSources
compileMobileLibreOldNosiDexDebugAndroidTestSources
compileMobileLibreOldNosiDexDebugdubSources
compileMobileLibreOldNosiDexDebugdubUnitTestSources
compileMobileLibreOldNosiDexDebugSources
compileMobileLibreOldNosiDexDebugUnitTestSources
compileMobileLibreOldNosiDexRelease2logSources
compileMobileLibreOldNosiDexRelease2logUnitTestSources
compileMobileLibreOldNosiDexRelease2Sources
compileMobileLibreOldNosiDexRelease2UnitTestSources
compileMobileLibreOldNosiDexReleasedebugSources
compileMobileLibreOldNosiDexReleasedebugUnitTestSources
compileMobileLibreOldNosiDexReleasedubSources
compileMobileLibreOldNosiDexReleasedubUnitTestSources
compileMobileLibreOldNosiDexReleaselogSources
compileMobileLibreOldNosiDexReleaselogUnitTestSources
compileMobileLibreOldNosiDexReleaseSources
compileMobileLibreOldNosiDexReleaseUnitTestSources
compileMobileLibreOldNosiNodexDebug2Sources
compileMobileLibreOldNosiNodexDebug2UnitTestSources
compileMobileLibreOldNosiNodexDebug3Sources
compileMobileLibreOldNosiNodexDebug3UnitTestSources
compileMobileLibreOldNosiNodexDebugAndroidTestSources
compileMobileLibreOldNosiNodexDebugdubSources
compileMobileLibreOldNosiNodexDebugdubUnitTestSources
compileMobileLibreOldNosiNodexDebugSources
compileMobileLibreOldNosiNodexDebugUnitTestSources
compileMobileLibreOldNosiNodexRelease2logSources
compileMobileLibreOldNosiNodexRelease2logUnitTestSources
compileMobileLibreOldNosiNodexRelease2Sources
compileMobileLibreOldNosiNodexRelease2UnitTestSources
compileMobileLibreOldNosiNodexReleasedebugSources
compileMobileLibreOldNosiNodexReleasedebugUnitTestSources
compileMobileLibreOldNosiNodexReleasedubSources
compileMobileLibreOldNosiNodexReleasedubUnitTestSources
compileMobileLibreOldNosiNodexReleaselogSources
compileMobileLibreOldNosiNodexReleaselogUnitTestSources
compileMobileLibreOldNosiNodexReleaseSources
compileMobileLibreOldNosiNodexReleaseUnitTestSources
compileMobileLibreOldSiDexDebug2Sources
compileMobileLibreOldSiDexDebug2UnitTestSources
compileMobileLibreOldSiDexDebug3Sources
compileMobileLibreOldSiDexDebug3UnitTestSources
compileMobileLibreOldSiDexDebugAndroidTestSources
compileMobileLibreOldSiDexDebugdubSources
compileMobileLibreOldSiDexDebugdubUnitTestSources
compileMobileLibreOldSiDexDebugSources
compileMobileLibreOldSiDexDebugUnitTestSources
compileMobileLibreOldSiDexRelease2logSources
compileMobileLibreOldSiDexRelease2logUnitTestSources
compileMobileLibreOldSiDexRelease2Sources
compileMobileLibreOldSiDexRelease2UnitTestSources
compileMobileLibreOldSiDexReleasedebugSources
compileMobileLibreOldSiDexReleasedebugUnitTestSources
compileMobileLibreOldSiDexReleasedubSources
compileMobileLibreOldSiDexReleasedubUnitTestSources
compileMobileLibreOldSiDexReleaselogSources
compileMobileLibreOldSiDexReleaselogUnitTestSources
compileMobileLibreOldSiDexReleaseSources
compileMobileLibreOldSiDexReleaseUnitTestSources
compileMobileLibreOldSiNodexDebug2Sources
compileMobileLibreOldSiNodexDebug2UnitTestSources
compileMobileLibreOldSiNodexDebug3Sources
compileMobileLibreOldSiNodexDebug3UnitTestSources
compileMobileLibreOldSiNodexDebugAndroidTestSources
compileMobileLibreOldSiNodexDebugdubSources
compileMobileLibreOldSiNodexDebugdubUnitTestSources
compileMobileLibreOldSiNodexDebugSources
compileMobileLibreOldSiNodexDebugUnitTestSources
compileMobileLibreOldSiNodexRelease2logSources
compileMobileLibreOldSiNodexRelease2logUnitTestSources
compileMobileLibreOldSiNodexRelease2Sources
compileMobileLibreOldSiNodexRelease2UnitTestSources
compileMobileLibreOldSiNodexReleasedebugSources
compileMobileLibreOldSiNodexReleasedebugUnitTestSources
compileMobileLibreOldSiNodexReleasedubSources
compileMobileLibreOldSiNodexReleasedubUnitTestSources
compileMobileLibreOldSiNodexReleaselogSources
compileMobileLibreOldSiNodexReleaselogUnitTestSources
compileMobileLibreOldSiNodexReleaseSources
compileMobileLibreOldSiNodexReleaseUnitTestSources
compileSmallLibre3NosiDexDebug2Sources
compileSmallLibre3NosiDexDebug2UnitTestSources
compileSmallLibre3NosiDexDebug3Sources
compileSmallLibre3NosiDexDebug3UnitTestSources
compileSmallLibre3NosiDexDebugAndroidTestSources
compileSmallLibre3NosiDexDebugdubSources
compileSmallLibre3NosiDexDebugdubUnitTestSources
compileSmallLibre3NosiDexDebugSources
compileSmallLibre3NosiDexDebugUnitTestSources
compileSmallLibre3NosiDexRelease2logSources
compileSmallLibre3NosiDexRelease2logUnitTestSources
compileSmallLibre3NosiDexRelease2Sources
compileSmallLibre3NosiDexRelease2UnitTestSources
compileSmallLibre3NosiDexReleasedebugSources
compileSmallLibre3NosiDexReleasedebugUnitTestSources
compileSmallLibre3NosiDexReleasedubSources
compileSmallLibre3NosiDexReleasedubUnitTestSources
compileSmallLibre3NosiDexReleaselogSources
compileSmallLibre3NosiDexReleaselogUnitTestSources
compileSmallLibre3NosiDexReleaseSources
compileSmallLibre3NosiDexReleaseUnitTestSources
compileSmallLibre3NosiNodexDebug2Sources
compileSmallLibre3NosiNodexDebug2UnitTestSources
compileSmallLibre3NosiNodexDebug3Sources
compileSmallLibre3NosiNodexDebug3UnitTestSources
compileSmallLibre3NosiNodexDebugAndroidTestSources
compileSmallLibre3NosiNodexDebugdubSources
compileSmallLibre3NosiNodexDebugdubUnitTestSources
compileSmallLibre3NosiNodexDebugSources
compileSmallLibre3NosiNodexDebugUnitTestSources
compileSmallLibre3NosiNodexRelease2logSources
compileSmallLibre3NosiNodexRelease2logUnitTestSources
compileSmallLibre3NosiNodexRelease2Sources
compileSmallLibre3NosiNodexRelease2UnitTestSources
compileSmallLibre3NosiNodexReleasedebugSources
compileSmallLibre3NosiNodexReleasedebugUnitTestSources
compileSmallLibre3NosiNodexReleasedubSources
compileSmallLibre3NosiNodexReleasedubUnitTestSources
compileSmallLibre3NosiNodexReleaselogSources
compileSmallLibre3NosiNodexReleaselogUnitTestSources
compileSmallLibre3NosiNodexReleaseSources
compileSmallLibre3NosiNodexReleaseUnitTestSources
compileSmallLibre3SiDexDebug2Sources
compileSmallLibre3SiDexDebug2UnitTestSources
compileSmallLibre3SiDexDebug3Sources
compileSmallLibre3SiDexDebug3UnitTestSources
compileSmallLibre3SiDexDebugAndroidTestSources
compileSmallLibre3SiDexDebugdubSources
compileSmallLibre3SiDexDebugdubUnitTestSources
compileSmallLibre3SiDexDebugSources
compileSmallLibre3SiDexDebugUnitTestSources
compileSmallLibre3SiDexRelease2logSources
compileSmallLibre3SiDexRelease2logUnitTestSources
compileSmallLibre3SiDexRelease2Sources
compileSmallLibre3SiDexRelease2UnitTestSources
compileSmallLibre3SiDexReleasedebugSources
compileSmallLibre3SiDexReleasedebugUnitTestSources
compileSmallLibre3SiDexReleasedubSources
compileSmallLibre3SiDexReleasedubUnitTestSources
compileSmallLibre3SiDexReleaselogSources
compileSmallLibre3SiDexReleaselogUnitTestSources
compileSmallLibre3SiDexReleaseSources
compileSmallLibre3SiDexReleaseUnitTestSources
compileSmallLibre3SiNodexDebug2Sources
compileSmallLibre3SiNodexDebug2UnitTestSources
compileSmallLibre3SiNodexDebug3Sources
compileSmallLibre3SiNodexDebug3UnitTestSources
compileSmallLibre3SiNodexDebugAndroidTestSources
compileSmallLibre3SiNodexDebugdubSources
compileSmallLibre3SiNodexDebugdubUnitTestSources
compileSmallLibre3SiNodexDebugSources
compileSmallLibre3SiNodexDebugUnitTestSources
compileSmallLibre3SiNodexRelease2logSources
compileSmallLibre3SiNodexRelease2logUnitTestSources
compileSmallLibre3SiNodexRelease2Sources
compileSmallLibre3SiNodexRelease2UnitTestSources
compileSmallLibre3SiNodexReleasedebugSources
compileSmallLibre3SiNodexReleasedebugUnitTestSources
compileSmallLibre3SiNodexReleasedubSources
compileSmallLibre3SiNodexReleasedubUnitTestSources
compileSmallLibre3SiNodexReleaselogSources
compileSmallLibre3SiNodexReleaselogUnitTestSources
compileSmallLibre3SiNodexReleaseSources
compileSmallLibre3SiNodexReleaseUnitTestSources
compileSmallLibreOldNosiDexDebug2Sources
compileSmallLibreOldNosiDexDebug2UnitTestSources
compileSmallLibreOldNosiDexDebug3Sources
compileSmallLibreOldNosiDexDebug3UnitTestSources
compileSmallLibreOldNosiDexDebugAndroidTestSources
compileSmallLibreOldNosiDexDebugdubSources
compileSmallLibreOldNosiDexDebugdubUnitTestSources
compileSmallLibreOldNosiDexDebugSources
compileSmallLibreOldNosiDexDebugUnitTestSources
compileSmallLibreOldNosiDexRelease2logSources
compileSmallLibreOldNosiDexRelease2logUnitTestSources
compileSmallLibreOldNosiDexRelease2Sources
compileSmallLibreOldNosiDexRelease2UnitTestSources
compileSmallLibreOldNosiDexReleasedebugSources
compileSmallLibreOldNosiDexReleasedebugUnitTestSources
compileSmallLibreOldNosiDexReleasedubSources
compileSmallLibreOldNosiDexReleasedubUnitTestSources
compileSmallLibreOldNosiDexReleaselogSources
compileSmallLibreOldNosiDexReleaselogUnitTestSources
compileSmallLibreOldNosiDexReleaseSources
compileSmallLibreOldNosiDexReleaseUnitTestSources
compileSmallLibreOldNosiNodexDebug2Sources
compileSmallLibreOldNosiNodexDebug2UnitTestSources
compileSmallLibreOldNosiNodexDebug3Sources
compileSmallLibreOldNosiNodexDebug3UnitTestSources
compileSmallLibreOldNosiNodexDebugAndroidTestSources
compileSmallLibreOldNosiNodexDebugdubSources
compileSmallLibreOldNosiNodexDebugdubUnitTestSources
compileSmallLibreOldNosiNodexDebugSources
compileSmallLibreOldNosiNodexDebugUnitTestSources
compileSmallLibreOldNosiNodexRelease2logSources
compileSmallLibreOldNosiNodexRelease2logUnitTestSources
compileSmallLibreOldNosiNodexRelease2Sources
compileSmallLibreOldNosiNodexRelease2UnitTestSources
compileSmallLibreOldNosiNodexReleasedebugSources
compileSmallLibreOldNosiNodexReleasedebugUnitTestSources
compileSmallLibreOldNosiNodexReleasedubSources
compileSmallLibreOldNosiNodexReleasedubUnitTestSources
compileSmallLibreOldNosiNodexReleaselogSources
compileSmallLibreOldNosiNodexReleaselogUnitTestSources
compileSmallLibreOldNosiNodexReleaseSources
compileSmallLibreOldNosiNodexReleaseUnitTestSources
compileSmallLibreOldSiDexDebug2Sources
compileSmallLibreOldSiDexDebug2UnitTestSources
compileSmallLibreOldSiDexDebug3Sources
compileSmallLibreOldSiDexDebug3UnitTestSources
compileSmallLibreOldSiDexDebugAndroidTestSources
compileSmallLibreOldSiDexDebugdubSources
compileSmallLibreOldSiDexDebugdubUnitTestSources
compileSmallLibreOldSiDexDebugSources
compileSmallLibreOldSiDexDebugUnitTestSources
compileSmallLibreOldSiDexRelease2logSources
compileSmallLibreOldSiDexRelease2logUnitTestSources
compileSmallLibreOldSiDexRelease2Sources
compileSmallLibreOldSiDexRelease2UnitTestSources
compileSmallLibreOldSiDexReleasedebugSources
compileSmallLibreOldSiDexReleasedebugUnitTestSources
compileSmallLibreOldSiDexReleasedubSources
compileSmallLibreOldSiDexReleasedubUnitTestSources
compileSmallLibreOldSiDexReleaselogSources
compileSmallLibreOldSiDexReleaselogUnitTestSources
compileSmallLibreOldSiDexReleaseSources
compileSmallLibreOldSiDexReleaseUnitTestSources
compileSmallLibreOldSiNodexDebug2Sources
compileSmallLibreOldSiNodexDebug2UnitTestSources
compileSmallLibreOldSiNodexDebug3Sources
compileSmallLibreOldSiNodexDebug3UnitTestSources
compileSmallLibreOldSiNodexDebugAndroidTestSources
compileSmallLibreOldSiNodexDebugdubSources
compileSmallLibreOldSiNodexDebugdubUnitTestSources
compileSmallLibreOldSiNodexDebugSources
compileSmallLibreOldSiNodexDebugUnitTestSources
compileSmallLibreOldSiNodexRelease2logSources
compileSmallLibreOldSiNodexRelease2logUnitTestSources
compileSmallLibreOldSiNodexRelease2Sources
compileSmallLibreOldSiNodexRelease2UnitTestSources
compileSmallLibreOldSiNodexReleasedebugSources
compileSmallLibreOldSiNodexReleasedebugUnitTestSources
compileSmallLibreOldSiNodexReleasedubSources
compileSmallLibreOldSiNodexReleasedubUnitTestSources
compileSmallLibreOldSiNodexReleaselogSources
compileSmallLibreOldSiNodexReleaselogUnitTestSources
compileSmallLibreOldSiNodexReleaseSources
compileSmallLibreOldSiNodexReleaseUnitTestSources
compileWearLibre3NosiDexDebug2Sources
compileWearLibre3NosiDexDebug2UnitTestSources
compileWearLibre3NosiDexDebug3Sources
compileWearLibre3NosiDexDebug3UnitTestSources
compileWearLibre3NosiDexDebugAndroidTestSources
compileWearLibre3NosiDexDebugdubSources
compileWearLibre3NosiDexDebugdubUnitTestSources
compileWearLibre3NosiDexDebugSources
compileWearLibre3NosiDexDebugUnitTestSources
compileWearLibre3NosiDexRelease2logSources
compileWearLibre3NosiDexRelease2logUnitTestSources
compileWearLibre3NosiDexRelease2Sources
compileWearLibre3NosiDexRelease2UnitTestSources
compileWearLibre3NosiDexReleasedebugSources
compileWearLibre3NosiDexReleasedebugUnitTestSources
compileWearLibre3NosiDexReleasedubSources
compileWearLibre3NosiDexReleasedubUnitTestSources
compileWearLibre3NosiDexReleaselogSources
compileWearLibre3NosiDexReleaselogUnitTestSources
compileWearLibre3NosiDexReleaseSources
compileWearLibre3NosiDexReleaseUnitTestSources
compileWearLibre3NosiNodexDebug2Sources
compileWearLibre3NosiNodexDebug2UnitTestSources
compileWearLibre3NosiNodexDebug3Sources
compileWearLibre3NosiNodexDebug3UnitTestSources
compileWearLibre3NosiNodexDebugAndroidTestSources
compileWearLibre3NosiNodexDebugdubSources
compileWearLibre3NosiNodexDebugdubUnitTestSources
compileWearLibre3NosiNodexDebugSources
compileWearLibre3NosiNodexDebugUnitTestSources
compileWearLibre3NosiNodexRelease2logSources
compileWearLibre3NosiNodexRelease2logUnitTestSources
compileWearLibre3NosiNodexRelease2Sources
compileWearLibre3NosiNodexRelease2UnitTestSources
compileWearLibre3NosiNodexReleasedebugSources
compileWearLibre3NosiNodexReleasedebugUnitTestSources
compileWearLibre3NosiNodexReleasedubSources
compileWearLibre3NosiNodexReleasedubUnitTestSources
compileWearLibre3NosiNodexReleaselogSources
compileWearLibre3NosiNodexReleaselogUnitTestSources
compileWearLibre3NosiNodexReleaseSources
compileWearLibre3NosiNodexReleaseUnitTestSources
compileWearLibre3SiDexDebug2Sources
compileWearLibre3SiDexDebug2UnitTestSources
compileWearLibre3SiDexDebug3Sources
compileWearLibre3SiDexDebug3UnitTestSources
compileWearLibre3SiDexDebugAndroidTestSources
compileWearLibre3SiDexDebugdubSources
compileWearLibre3SiDexDebugdubUnitTestSources
compileWearLibre3SiDexDebugSources
compileWearLibre3SiDexDebugUnitTestSources
compileWearLibre3SiDexRelease2logSources
compileWearLibre3SiDexRelease2logUnitTestSources
compileWearLibre3SiDexRelease2Sources
compileWearLibre3SiDexRelease2UnitTestSources
compileWearLibre3SiDexReleasedebugSources
compileWearLibre3SiDexReleasedebugUnitTestSources
compileWearLibre3SiDexReleasedubSources
compileWearLibre3SiDexReleasedubUnitTestSources
compileWearLibre3SiDexReleaselogSources
compileWearLibre3SiDexReleaselogUnitTestSources
compileWearLibre3SiDexReleaseSources
compileWearLibre3SiDexReleaseUnitTestSources
compileWearLibre3SiNodexDebug2Sources
compileWearLibre3SiNodexDebug2UnitTestSources
compileWearLibre3SiNodexDebug3Sources
compileWearLibre3SiNodexDebug3UnitTestSources
compileWearLibre3SiNodexDebugAndroidTestSources
compileWearLibre3SiNodexDebugdubSources
compileWearLibre3SiNodexDebugdubUnitTestSources
compileWearLibre3SiNodexDebugSources
compileWearLibre3SiNodexDebugUnitTestSources
compileWearLibre3SiNodexRelease2logSources
compileWearLibre3SiNodexRelease2logUnitTestSources
compileWearLibre3SiNodexRelease2Sources
compileWearLibre3SiNodexRelease2UnitTestSources
compileWearLibre3SiNodexReleasedebugSources
compileWearLibre3SiNodexReleasedebugUnitTestSources
compileWearLibre3SiNodexReleasedubSources
compileWearLibre3SiNodexReleasedubUnitTestSources
compileWearLibre3SiNodexReleaselogSources
compileWearLibre3SiNodexReleaselogUnitTestSources
compileWearLibre3SiNodexReleaseSources
compileWearLibre3SiNodexReleaseUnitTestSources
compileWearLibreOldNosiDexDebug2Sources
compileWearLibreOldNosiDexDebug2UnitTestSources
compileWearLibreOldNosiDexDebug3Sources
compileWearLibreOldNosiDexDebug3UnitTestSources
compileWearLibreOldNosiDexDebugAndroidTestSources
compileWearLibreOldNosiDexDebugdubSources
compileWearLibreOldNosiDexDebugdubUnitTestSources
compileWearLibreOldNosiDexDebugSources
compileWearLibreOldNosiDexDebugUnitTestSources
compileWearLibreOldNosiDexRelease2logSources
compileWearLibreOldNosiDexRelease2logUnitTestSources
compileWearLibreOldNosiDexRelease2Sources
compileWearLibreOldNosiDexRelease2UnitTestSources
compileWearLibreOldNosiDexReleasedebugSources
compileWearLibreOldNosiDexReleasedebugUnitTestSources
compileWearLibreOldNosiDexReleasedubSources
compileWearLibreOldNosiDexReleasedubUnitTestSources
compileWearLibreOldNosiDexReleaselogSources
compileWearLibreOldNosiDexReleaselogUnitTestSources
compileWearLibreOldNosiDexReleaseSources
compileWearLibreOldNosiDexReleaseUnitTestSources
compileWearLibreOldNosiNodexDebug2Sources
compileWearLibreOldNosiNodexDebug2UnitTestSources
compileWearLibreOldNosiNodexDebug3Sources
compileWearLibreOldNosiNodexDebug3UnitTestSources
compileWearLibreOldNosiNodexDebugAndroidTestSources
compileWearLibreOldNosiNodexDebugdubSources
compileWearLibreOldNosiNodexDebugdubUnitTestSources
compileWearLibreOldNosiNodexDebugSources
compileWearLibreOldNosiNodexDebugUnitTestSources
compileWearLibreOldNosiNodexRelease2logSources
compileWearLibreOldNosiNodexRelease2logUnitTestSources
compileWearLibreOldNosiNodexRelease2Sources
compileWearLibreOldNosiNodexRelease2UnitTestSources
compileWearLibreOldNosiNodexReleasedebugSources
compileWearLibreOldNosiNodexReleasedebugUnitTestSources
compileWearLibreOldNosiNodexReleasedubSources
compileWearLibreOldNosiNodexReleasedubUnitTestSources
compileWearLibreOldNosiNodexReleaselogSources
compileWearLibreOldNosiNodexReleaselogUnitTestSources
compileWearLibreOldNosiNodexReleaseSources
compileWearLibreOldNosiNodexReleaseUnitTestSources
compileWearLibreOldSiDexDebug2Sources
compileWearLibreOldSiDexDebug2UnitTestSources
compileWearLibreOldSiDexDebug3Sources
compileWearLibreOldSiDexDebug3UnitTestSources
compileWearLibreOldSiDexDebugAndroidTestSources
compileWearLibreOldSiDexDebugdubSources
compileWearLibreOldSiDexDebugdubUnitTestSources
compileWearLibreOldSiDexDebugSources
compileWearLibreOldSiDexDebugUnitTestSources
compileWearLibreOldSiDexRelease2logSources
compileWearLibreOldSiDexRelease2logUnitTestSources
compileWearLibreOldSiDexRelease2Sources
compileWearLibreOldSiDexRelease2UnitTestSources
compileWearLibreOldSiDexReleasedebugSources
compileWearLibreOldSiDexReleasedebugUnitTestSources
compileWearLibreOldSiDexReleasedubSources
compileWearLibreOldSiDexReleasedubUnitTestSources
compileWearLibreOldSiDexReleaselogSources
compileWearLibreOldSiDexReleaselogUnitTestSources
compileWearLibreOldSiDexReleaseSources
compileWearLibreOldSiDexReleaseUnitTestSources
compileWearLibreOldSiNodexDebug2Sources
compileWearLibreOldSiNodexDebug2UnitTestSources
compileWearLibreOldSiNodexDebug3Sources
compileWearLibreOldSiNodexDebug3UnitTestSources
compileWearLibreOldSiNodexDebugAndroidTestSources
compileWearLibreOldSiNodexDebugdubSources
compileWearLibreOldSiNodexDebugdubUnitTestSources
compileWearLibreOldSiNodexDebugSources
compileWearLibreOldSiNodexDebugUnitTestSources
compileWearLibreOldSiNodexRelease2logSources
compileWearLibreOldSiNodexRelease2logUnitTestSources
compileWearLibreOldSiNodexRelease2Sources
compileWearLibreOldSiNodexRelease2UnitTestSources
compileWearLibreOldSiNodexReleasedebugSources
compileWearLibreOldSiNodexReleasedebugUnitTestSources
compileWearLibreOldSiNodexReleasedubSources
compileWearLibreOldSiNodexReleasedubUnitTestSources
compileWearLibreOldSiNodexReleaselogSources
compileWearLibreOldSiNodexReleaselogUnitTestSources
compileWearLibreOldSiNodexReleaseSources
compileWearLibreOldSiNodexReleaseUnitTestSources
Build Setup tasks
-----------------
init - Initializes a new Gradle build.
wrapper - Generates Gradle wrapper files.
Help tasks
----------
buildEnvironment - Displays all buildscript dependencies declared in root project 'Glucodata'.
dependencies - Displays all dependencies declared in root project 'Glucodata'.
dependencyInsight - Displays the insight into a specific dependency in root project 'Glucodata'.
help - Displays a help message.
javaToolchains - Displays the detected java toolchains.
outgoingVariants - Displays the outgoing variants of root project 'Glucodata'.
projects - Displays the sub-projects of root project 'Glucodata'.
properties - Displays the properties of root project 'Glucodata'.
resolvableConfigurations - Displays the configurations that can be resolved in root project 'Glucodata'.
tasks - Displays the tasks runnable from root project 'Glucodata' (some of the displayed tasks may belong to subprojects).
Install tasks
-------------
installMobileLibre3NosiDexDebug - Installs the Debug build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexDebug2 - Installs the Debug2 build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexDebug3 - Installs the Debug3 build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexDebugAndroidTest - Installs the android (on device) tests for the MobileLibre3NosiDexDebug build.
installMobileLibre3NosiDexDebugdub - Installs the Debugdub build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexRelease - Installs the Release build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexRelease2 - Installs the Release2 build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexRelease2log - Installs the Release2log build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexReleasedebug - Installs the Releasedebug build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexReleasedub - Installs the Releasedub build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiDexReleaselog - Installs the Releaselog build for flavor MobileLibre3NosiDex.
installMobileLibre3NosiNodexDebug - Installs the Debug build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexDebug2 - Installs the Debug2 build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexDebug3 - Installs the Debug3 build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexDebugAndroidTest - Installs the android (on device) tests for the MobileLibre3NosiNodexDebug build.
installMobileLibre3NosiNodexDebugdub - Installs the Debugdub build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexRelease - Installs the Release build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexRelease2 - Installs the Release2 build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexRelease2log - Installs the Release2log build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexReleasedebug - Installs the Releasedebug build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexReleasedub - Installs the Releasedub build for flavor MobileLibre3NosiNodex.
installMobileLibre3NosiNodexReleaselog - Installs the Releaselog build for flavor MobileLibre3NosiNodex.
installMobileLibre3SiDexDebug - Installs the Debug build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexDebug2 - Installs the Debug2 build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexDebug3 - Installs the Debug3 build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexDebugAndroidTest - Installs the android (on device) tests for the MobileLibre3SiDexDebug build.
installMobileLibre3SiDexDebugdub - Installs the Debugdub build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexRelease - Installs the Release build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexRelease2 - Installs the Release2 build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexRelease2log - Installs the Release2log build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexReleasedebug - Installs the Releasedebug build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexReleasedub - Installs the Releasedub build for flavor MobileLibre3SiDex.
installMobileLibre3SiDexReleaselog - Installs the Releaselog build for flavor MobileLibre3SiDex.
installMobileLibre3SiNodexDebug - Installs the Debug build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexDebug2 - Installs the Debug2 build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexDebug3 - Installs the Debug3 build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexDebugAndroidTest - Installs the android (on device) tests for the MobileLibre3SiNodexDebug build.
installMobileLibre3SiNodexDebugdub - Installs the Debugdub build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexRelease - Installs the Release build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexRelease2 - Installs the Release2 build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexRelease2log - Installs the Release2log build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexReleasedebug - Installs the Releasedebug build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexReleasedub - Installs the Releasedub build for flavor MobileLibre3SiNodex.
installMobileLibre3SiNodexReleaselog - Installs the Releaselog build for flavor MobileLibre3SiNodex.
installMobileLibreOldNosiDexDebug - Installs the Debug build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexDebug2 - Installs the Debug2 build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexDebug3 - Installs the Debug3 build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexDebugAndroidTest - Installs the android (on device) tests for the MobileLibreOldNosiDexDebug build.
installMobileLibreOldNosiDexDebugdub - Installs the Debugdub build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexRelease - Installs the Release build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexRelease2 - Installs the Release2 build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexRelease2log - Installs the Release2log build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexReleasedebug - Installs the Releasedebug build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexReleasedub - Installs the Releasedub build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiDexReleaselog - Installs the Releaselog build for flavor MobileLibreOldNosiDex.
installMobileLibreOldNosiNodexDebug - Installs the Debug build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexDebug2 - Installs the Debug2 build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexDebug3 - Installs the Debug3 build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexDebugAndroidTest - Installs the android (on device) tests for the MobileLibreOldNosiNodexDebug build.
installMobileLibreOldNosiNodexDebugdub - Installs the Debugdub build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexRelease - Installs the Release build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexRelease2 - Installs the Release2 build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexRelease2log - Installs the Release2log build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexReleasedebug - Installs the Releasedebug build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexReleasedub - Installs the Releasedub build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldNosiNodexReleaselog - Installs the Releaselog build for flavor MobileLibreOldNosiNodex.
installMobileLibreOldSiDexDebug - Installs the Debug build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexDebug2 - Installs the Debug2 build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexDebug3 - Installs the Debug3 build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexDebugAndroidTest - Installs the android (on device) tests for the MobileLibreOldSiDexDebug build.
installMobileLibreOldSiDexDebugdub - Installs the Debugdub build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexRelease - Installs the Release build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexRelease2 - Installs the Release2 build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexRelease2log - Installs the Release2log build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexReleasedebug - Installs the Releasedebug build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexReleasedub - Installs the Releasedub build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiDexReleaselog - Installs the Releaselog build for flavor MobileLibreOldSiDex.
installMobileLibreOldSiNodexDebug - Installs the Debug build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexDebug2 - Installs the Debug2 build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexDebug3 - Installs the Debug3 build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexDebugAndroidTest - Installs the android (on device) tests for the MobileLibreOldSiNodexDebug build.
installMobileLibreOldSiNodexDebugdub - Installs the Debugdub build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexRelease - Installs the Release build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexRelease2 - Installs the Release2 build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexRelease2log - Installs the Release2log build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexReleasedebug - Installs the Releasedebug build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexReleasedub - Installs the Releasedub build for flavor MobileLibreOldSiNodex.
installMobileLibreOldSiNodexReleaselog - Installs the Releaselog build for flavor MobileLibreOldSiNodex.
installSmallLibre3NosiDexDebug - Installs the Debug build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexDebug2 - Installs the Debug2 build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexDebug3 - Installs the Debug3 build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexDebugAndroidTest - Installs the android (on device) tests for the SmallLibre3NosiDexDebug build.
installSmallLibre3NosiDexDebugdub - Installs the Debugdub build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexRelease - Installs the Release build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexRelease2 - Installs the Release2 build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexRelease2log - Installs the Release2log build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexReleasedebug - Installs the Releasedebug build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexReleasedub - Installs the Releasedub build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiDexReleaselog - Installs the Releaselog build for flavor SmallLibre3NosiDex.
installSmallLibre3NosiNodexDebug - Installs the Debug build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexDebug2 - Installs the Debug2 build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexDebug3 - Installs the Debug3 build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexDebugAndroidTest - Installs the android (on device) tests for the SmallLibre3NosiNodexDebug build.
installSmallLibre3NosiNodexDebugdub - Installs the Debugdub build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexRelease - Installs the Release build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexRelease2 - Installs the Release2 build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexRelease2log - Installs the Release2log build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexReleasedebug - Installs the Releasedebug build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexReleasedub - Installs the Releasedub build for flavor SmallLibre3NosiNodex.
installSmallLibre3NosiNodexReleaselog - Installs the Releaselog build for flavor SmallLibre3NosiNodex.
installSmallLibre3SiDexDebug - Installs the Debug build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexDebug2 - Installs the Debug2 build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexDebug3 - Installs the Debug3 build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexDebugAndroidTest - Installs the android (on device) tests for the SmallLibre3SiDexDebug build.
installSmallLibre3SiDexDebugdub - Installs the Debugdub build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexRelease - Installs the Release build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexRelease2 - Installs the Release2 build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexRelease2log - Installs the Release2log build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexReleasedebug - Installs the Releasedebug build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexReleasedub - Installs the Releasedub build for flavor SmallLibre3SiDex.
installSmallLibre3SiDexReleaselog - Installs the Releaselog build for flavor SmallLibre3SiDex.
installSmallLibre3SiNodexDebug - Installs the Debug build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexDebug2 - Installs the Debug2 build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexDebug3 - Installs the Debug3 build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexDebugAndroidTest - Installs the android (on device) tests for the SmallLibre3SiNodexDebug build.
installSmallLibre3SiNodexDebugdub - Installs the Debugdub build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexRelease - Installs the Release build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexRelease2 - Installs the Release2 build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexRelease2log - Installs the Release2log build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexReleasedebug - Installs the Releasedebug build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexReleasedub - Installs the Releasedub build for flavor SmallLibre3SiNodex.
installSmallLibre3SiNodexReleaselog - Installs the Releaselog build for flavor SmallLibre3SiNodex.
installSmallLibreOldNosiDexDebug - Installs the Debug build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexDebug2 - Installs the Debug2 build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexDebug3 - Installs the Debug3 build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexDebugAndroidTest - Installs the android (on device) tests for the SmallLibreOldNosiDexDebug build.
installSmallLibreOldNosiDexDebugdub - Installs the Debugdub build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexRelease - Installs the Release build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexRelease2 - Installs the Release2 build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexRelease2log - Installs the Release2log build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexReleasedebug - Installs the Releasedebug build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexReleasedub - Installs the Releasedub build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiDexReleaselog - Installs the Releaselog build for flavor SmallLibreOldNosiDex.
installSmallLibreOldNosiNodexDebug - Installs the Debug build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexDebug2 - Installs the Debug2 build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexDebug3 - Installs the Debug3 build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexDebugAndroidTest - Installs the android (on device) tests for the SmallLibreOldNosiNodexDebug build.
installSmallLibreOldNosiNodexDebugdub - Installs the Debugdub build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexRelease - Installs the Release build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexRelease2 - Installs the Release2 build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexRelease2log - Installs the Release2log build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexReleasedebug - Installs the Releasedebug build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexReleasedub - Installs the Releasedub build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldNosiNodexReleaselog - Installs the Releaselog build for flavor SmallLibreOldNosiNodex.
installSmallLibreOldSiDexDebug - Installs the Debug build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexDebug2 - Installs the Debug2 build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexDebug3 - Installs the Debug3 build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexDebugAndroidTest - Installs the android (on device) tests for the SmallLibreOldSiDexDebug build.
installSmallLibreOldSiDexDebugdub - Installs the Debugdub build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexRelease - Installs the Release build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexRelease2 - Installs the Release2 build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexRelease2log - Installs the Release2log build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexReleasedebug - Installs the Releasedebug build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexReleasedub - Installs the Releasedub build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiDexReleaselog - Installs the Releaselog build for flavor SmallLibreOldSiDex.
installSmallLibreOldSiNodexDebug - Installs the Debug build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexDebug2 - Installs the Debug2 build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexDebug3 - Installs the Debug3 build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexDebugAndroidTest - Installs the android (on device) tests for the SmallLibreOldSiNodexDebug build.
installSmallLibreOldSiNodexDebugdub - Installs the Debugdub build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexRelease - Installs the Release build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexRelease2 - Installs the Release2 build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexRelease2log - Installs the Release2log build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexReleasedebug - Installs the Releasedebug build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexReleasedub - Installs the Releasedub build for flavor SmallLibreOldSiNodex.
installSmallLibreOldSiNodexReleaselog - Installs the Releaselog build for flavor SmallLibreOldSiNodex.
installWearLibre3NosiDexDebug - Installs the Debug build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexDebug2 - Installs the Debug2 build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexDebug3 - Installs the Debug3 build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexDebugAndroidTest - Installs the android (on device) tests for the WearLibre3NosiDexDebug build.
installWearLibre3NosiDexDebugdub - Installs the Debugdub build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexRelease - Installs the Release build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexRelease2 - Installs the Release2 build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexRelease2log - Installs the Release2log build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexReleasedebug - Installs the Releasedebug build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexReleasedub - Installs the Releasedub build for flavor WearLibre3NosiDex.
installWearLibre3NosiDexReleaselog - Installs the Releaselog build for flavor WearLibre3NosiDex.
installWearLibre3NosiNodexDebug - Installs the Debug build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexDebug2 - Installs the Debug2 build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexDebug3 - Installs the Debug3 build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexDebugAndroidTest - Installs the android (on device) tests for the WearLibre3NosiNodexDebug build.
installWearLibre3NosiNodexDebugdub - Installs the Debugdub build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexRelease - Installs the Release build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexRelease2 - Installs the Release2 build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexRelease2log - Installs the Release2log build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexReleasedebug - Installs the Releasedebug build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexReleasedub - Installs the Releasedub build for flavor WearLibre3NosiNodex.
installWearLibre3NosiNodexReleaselog - Installs the Releaselog build for flavor WearLibre3NosiNodex.
installWearLibre3SiDexDebug - Installs the Debug build for flavor WearLibre3SiDex.
installWearLibre3SiDexDebug2 - Installs the Debug2 build for flavor WearLibre3SiDex.
installWearLibre3SiDexDebug3 - Installs the Debug3 build for flavor WearLibre3SiDex.
installWearLibre3SiDexDebugAndroidTest - Installs the android (on device) tests for the WearLibre3SiDexDebug build.
installWearLibre3SiDexDebugdub - Installs the Debugdub build for flavor WearLibre3SiDex.
installWearLibre3SiDexRelease - Installs the Release build for flavor WearLibre3SiDex.
installWearLibre3SiDexRelease2 - Installs the Release2 build for flavor WearLibre3SiDex.
installWearLibre3SiDexRelease2log - Installs the Release2log build for flavor WearLibre3SiDex.
installWearLibre3SiDexReleasedebug - Installs the Releasedebug build for flavor WearLibre3SiDex.
installWearLibre3SiDexReleasedub - Installs the Releasedub build for flavor WearLibre3SiDex.
installWearLibre3SiDexReleaselog - Installs the Releaselog build for flavor WearLibre3SiDex.
installWearLibre3SiNodexDebug - Installs the Debug build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexDebug2 - Installs the Debug2 build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexDebug3 - Installs the Debug3 build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexDebugAndroidTest - Installs the android (on device) tests for the WearLibre3SiNodexDebug build.
installWearLibre3SiNodexDebugdub - Installs the Debugdub build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexRelease - Installs the Release build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexRelease2 - Installs the Release2 build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexRelease2log - Installs the Release2log build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexReleasedebug - Installs the Releasedebug build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexReleasedub - Installs the Releasedub build for flavor WearLibre3SiNodex.
installWearLibre3SiNodexReleaselog - Installs the Releaselog build for flavor WearLibre3SiNodex.
installWearLibreOldNosiDexDebug - Installs the Debug build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexDebug2 - Installs the Debug2 build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexDebug3 - Installs the Debug3 build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexDebugAndroidTest - Installs the android (on device) tests for the WearLibreOldNosiDexDebug build.
installWearLibreOldNosiDexDebugdub - Installs the Debugdub build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexRelease - Installs the Release build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexRelease2 - Installs the Release2 build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexRelease2log - Installs the Release2log build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexReleasedebug - Installs the Releasedebug build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexReleasedub - Installs the Releasedub build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiDexReleaselog - Installs the Releaselog build for flavor WearLibreOldNosiDex.
installWearLibreOldNosiNodexDebug - Installs the Debug build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexDebug2 - Installs the Debug2 build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexDebug3 - Installs the Debug3 build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexDebugAndroidTest - Installs the android (on device) tests for the WearLibreOldNosiNodexDebug build.
installWearLibreOldNosiNodexDebugdub - Installs the Debugdub build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexRelease - Installs the Release build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexRelease2 - Installs the Release2 build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexRelease2log - Installs the Release2log build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexReleasedebug - Installs the Releasedebug build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexReleasedub - Installs the Releasedub build for flavor WearLibreOldNosiNodex.
installWearLibreOldNosiNodexReleaselog - Installs the Releaselog build for flavor WearLibreOldNosiNodex.
installWearLibreOldSiDexDebug - Installs the Debug build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexDebug2 - Installs the Debug2 build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexDebug3 - Installs the Debug3 build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexDebugAndroidTest - Installs the android (on device) tests for the WearLibreOldSiDexDebug build.
installWearLibreOldSiDexDebugdub - Installs the Debugdub build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexRelease - Installs the Release build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexRelease2 - Installs the Release2 build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexRelease2log - Installs the Release2log build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexReleasedebug - Installs the Releasedebug build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexReleasedub - Installs the Releasedub build for flavor WearLibreOldSiDex.
installWearLibreOldSiDexReleaselog - Installs the Releaselog build for flavor WearLibreOldSiDex.
installWearLibreOldSiNodexDebug - Installs the Debug build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexDebug2 - Installs the Debug2 build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexDebug3 - Installs the Debug3 build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexDebugAndroidTest - Installs the android (on device) tests for the WearLibreOldSiNodexDebug build.
installWearLibreOldSiNodexDebugdub - Installs the Debugdub build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexRelease - Installs the Release build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexRelease2 - Installs the Release2 build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexRelease2log - Installs the Release2log build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexReleasedebug - Installs the Releasedebug build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexReleasedub - Installs the Releasedub build for flavor WearLibreOldSiNodex.
installWearLibreOldSiNodexReleaselog - Installs the Releaselog build for flavor WearLibreOldSiNodex.
uninstallAll - Uninstall all applications.
uninstallMobileLibre3NosiDexDebug - Uninstalls the Debug build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexDebug2 - Uninstalls the Debug2 build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexDebug3 - Uninstalls the Debug3 build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibre3NosiDexDebug build.
uninstallMobileLibre3NosiDexDebugdub - Uninstalls the Debugdub build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexRelease - Uninstalls the Release build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexRelease2 - Uninstalls the Release2 build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexRelease2log - Uninstalls the Release2log build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexReleasedub - Uninstalls the Releasedub build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiDexReleaselog - Uninstalls the Releaselog build for flavor MobileLibre3NosiDex.
uninstallMobileLibre3NosiNodexDebug - Uninstalls the Debug build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexDebug2 - Uninstalls the Debug2 build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexDebug3 - Uninstalls the Debug3 build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibre3NosiNodexDebug build.
uninstallMobileLibre3NosiNodexDebugdub - Uninstalls the Debugdub build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexRelease - Uninstalls the Release build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexRelease2 - Uninstalls the Release2 build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexRelease2log - Uninstalls the Release2log build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexReleasedub - Uninstalls the Releasedub build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3NosiNodexReleaselog - Uninstalls the Releaselog build for flavor MobileLibre3NosiNodex.
uninstallMobileLibre3SiDexDebug - Uninstalls the Debug build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexDebug2 - Uninstalls the Debug2 build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexDebug3 - Uninstalls the Debug3 build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibre3SiDexDebug build.
uninstallMobileLibre3SiDexDebugdub - Uninstalls the Debugdub build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexRelease - Uninstalls the Release build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexRelease2 - Uninstalls the Release2 build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexRelease2log - Uninstalls the Release2log build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexReleasedub - Uninstalls the Releasedub build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiDexReleaselog - Uninstalls the Releaselog build for flavor MobileLibre3SiDex.
uninstallMobileLibre3SiNodexDebug - Uninstalls the Debug build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexDebug2 - Uninstalls the Debug2 build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexDebug3 - Uninstalls the Debug3 build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibre3SiNodexDebug build.
uninstallMobileLibre3SiNodexDebugdub - Uninstalls the Debugdub build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexRelease - Uninstalls the Release build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexRelease2 - Uninstalls the Release2 build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexRelease2log - Uninstalls the Release2log build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexReleasedub - Uninstalls the Releasedub build for flavor MobileLibre3SiNodex.
uninstallMobileLibre3SiNodexReleaselog - Uninstalls the Releaselog build for flavor MobileLibre3SiNodex.
uninstallMobileLibreOldNosiDexDebug - Uninstalls the Debug build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexDebug2 - Uninstalls the Debug2 build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexDebug3 - Uninstalls the Debug3 build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibreOldNosiDexDebug build.
uninstallMobileLibreOldNosiDexDebugdub - Uninstalls the Debugdub build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexRelease - Uninstalls the Release build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexRelease2 - Uninstalls the Release2 build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexRelease2log - Uninstalls the Release2log build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexReleasedub - Uninstalls the Releasedub build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiDexReleaselog - Uninstalls the Releaselog build for flavor MobileLibreOldNosiDex.
uninstallMobileLibreOldNosiNodexDebug - Uninstalls the Debug build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexDebug2 - Uninstalls the Debug2 build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexDebug3 - Uninstalls the Debug3 build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibreOldNosiNodexDebug build.
uninstallMobileLibreOldNosiNodexDebugdub - Uninstalls the Debugdub build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexRelease - Uninstalls the Release build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexRelease2 - Uninstalls the Release2 build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexRelease2log - Uninstalls the Release2log build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexReleasedub - Uninstalls the Releasedub build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldNosiNodexReleaselog - Uninstalls the Releaselog build for flavor MobileLibreOldNosiNodex.
uninstallMobileLibreOldSiDexDebug - Uninstalls the Debug build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexDebug2 - Uninstalls the Debug2 build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexDebug3 - Uninstalls the Debug3 build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibreOldSiDexDebug build.
uninstallMobileLibreOldSiDexDebugdub - Uninstalls the Debugdub build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexRelease - Uninstalls the Release build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexRelease2 - Uninstalls the Release2 build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexRelease2log - Uninstalls the Release2log build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexReleasedub - Uninstalls the Releasedub build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiDexReleaselog - Uninstalls the Releaselog build for flavor MobileLibreOldSiDex.
uninstallMobileLibreOldSiNodexDebug - Uninstalls the Debug build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexDebug2 - Uninstalls the Debug2 build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexDebug3 - Uninstalls the Debug3 build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexDebugAndroidTest - Uninstalls the android (on device) tests for the MobileLibreOldSiNodexDebug build.
uninstallMobileLibreOldSiNodexDebugdub - Uninstalls the Debugdub build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexRelease - Uninstalls the Release build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexRelease2 - Uninstalls the Release2 build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexRelease2log - Uninstalls the Release2log build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexReleasedebug - Uninstalls the Releasedebug build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexReleasedub - Uninstalls the Releasedub build for flavor MobileLibreOldSiNodex.
uninstallMobileLibreOldSiNodexReleaselog - Uninstalls the Releaselog build for flavor MobileLibreOldSiNodex.
uninstallSmallLibre3NosiDexDebug - Uninstalls the Debug build for flavor SmallLibre3NosiDex.
uninstallSmallLibre3NosiDexDebug2 - Uninstalls the Debug2 build for flavor SmallLibre3NosiDex.
uninstallSmallLibre3NosiDexDebug3 - Uninstalls the Debug3 build for flavor SmallLibre3NosiDex.
uninstallSmallLibre3NosiDexDebugAndroidTest - Uninstalls the android (on device) tests for the SmallLibre3NosiDexDebug build.