@@ -724,12 +724,10 @@ trait AndroidModule extends JavaModule {
724724 )
725725 }
726726
727- // Additional library classes (if any) that should be treated as provided
727+ /** Additional library classes (if any) that should be treated as provided */
728728 def libraryClassesPaths : T [Seq [PathRef ]] = T {
729729 Seq (
730730 androidSdkModule().androidJarPath(),
731- androidSdkModule().r8LibPath(),
732- androidSdkModule().r8LibClasspath(),
733731 androidSdkModule().androidCoreModulesPath(),
734732 androidSdkModule().androidOptionalApacheHttpLegacy(),
735733 androidSdkModule().androidOptionalCar(),
@@ -743,25 +741,31 @@ trait AndroidModule extends JavaModule {
743741 true
744742 }
745743
746- // Specifies the path to the main-dex rules file, which contains ProGuard rules
747- // for determining which classes should be included in the primary DEX file.
744+ /**
745+ * Specifies the path to the main-dex rules file, which contains ProGuard rules
746+ * for determining which classes should be included in the primary DEX file.
747+ */
748748 def mainDexRules : T [Option [PathRef ]] = T {
749749 Some (PathRef (androidResources()._1.path / " main-dex-rules.pro" ))
750750 }
751751
752- // Returns the path to the main-dex list file, which explicitly lists the classes
753- // to be included in the primary DEX file. Currently, this is not defined.
752+ /**
753+ * Returns the path to the main-dex list file, which explicitly lists the classes
754+ * to be included in the primary DEX file. Currently, this is not defined.
755+ */
754756 def mainDexList : T [Option [PathRef ]] = T {
755757 None
756758 }
757759
758- // Provides the output path for the generated main-dex list file, which is used
759- // during the DEX generation process.
760+ /**
761+ * Provides the output path for the generated main-dex list file, which is used
762+ * during the DEX generation process.
763+ */
760764 def mainDexListOutput : T [Option [PathRef ]] = T {
761765 Some (androidModuleGeneratedSourcesFunc().mainDexListOutput)
762766 }
763767
764- // Optional baseline profile for ART rewriting
768+ /** Optional baseline profile for ART rewriting */
765769 def baselineProfile : T [Option [PathRef ]] = T {
766770 None
767771 }
0 commit comments