@@ -376,40 +376,45 @@ dependencies {
376
376
def androidXLegacyVersion = " 1.0.0"
377
377
if (project. hasProperty(" androidXLegacy" )) {
378
378
androidXLegacyVersion = androidXLegacy
379
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.legacy:legacy-support-v4:$androidXLegacyVersion "
379
380
}
380
381
381
382
def androidXAppCompatVersion = " 1.1.0"
382
383
if (project. hasProperty(" androidXAppCompat" )) {
383
384
androidXAppCompatVersion = androidXAppCompat
385
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.appcompat:appcompat:$androidXAppCompatVersion "
384
386
}
385
387
386
388
def androidXMaterialVersion = " 1.1.0"
387
389
if (project. hasProperty(" androidXMaterial" )) {
388
390
androidXMaterialVersion = androidXMaterial
391
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library com.google.android.material:material:$androidXMaterialVersion "
389
392
}
390
393
391
394
def androidXExifInterfaceVersion = " 1.2.0"
392
395
if (project. hasProperty(" androidXExifInterface" )) {
393
- androidxExifInterfaceVersion = androidXExifInterface
396
+ androidXExifInterfaceVersion = androidXExifInterface
397
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.exifinterface:exifinterface:$androidXExifInterfaceVersion "
394
398
}
395
399
396
400
def androidXViewPagerVersion = " 1.0.0"
397
401
if (project. hasProperty(" androidXViewPager" )) {
398
402
androidXViewPagerVersion = androidXViewPager
403
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.viewpager2:viewpager2:$androidXViewPagerVersion "
399
404
}
400
405
401
406
def androidXFragmentVersion = " 1.2.5"
402
407
if (project. hasProperty(" androidXFragment" )) {
403
408
androidXFragmentVersion = androidXFragment
409
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.fragment:fragment:$androidXFragmentVersion "
404
410
}
405
411
406
412
def androidXTransitionVersion = " 1.3.1"
407
413
if (project. hasProperty(" androidXTransition" )) {
408
414
androidXTransitionVersion = androidXTransition
415
+ outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.transition:transition:$androidXTransitionVersion "
409
416
}
410
417
411
- outLogger. withStyle(Style.SuccessHeader ). println " \t + using android X library androidx.legacy:legacy-support-v4:$androidXLegacyVersion "
412
-
413
418
implementation " androidx.multidex:multidex:2.0.1"
414
419
implementation " androidx.legacy:legacy-support-v4:$androidXLegacyVersion "
415
420
implementation " androidx.appcompat:appcompat:$androidXAppCompatVersion "
@@ -802,7 +807,7 @@ task buildMetadata(type: BuildToolTask) {
802
807
description " builds metadata with provided jar dependencies"
803
808
804
809
inputs. files(" $MDG_JAVA_DEPENDENCIES " )
805
-
810
+
806
811
// make MDG aware of whitelist.mdg and blacklist.mdg files
807
812
inputs. files(project. fileTree(dir : " $rootDir " , include : " **/*.mdg" ))
808
813
0 commit comments