Is separate license call required

Hi
In java, we are using aspose.cells to create workbook and aspose.slides to create presentation. Do we need to use two separate license setting calls?
Eg:
com.aspose.slides.License lic= new com.aspose.slides.License();
lic.set(aspose.total.lic);

Should we also do?
com.aspose.cells.License lic= new com.aspose.cells.License();
lic.set(aspose.total.lic);

If that is the case, can you kindly create an abstract class from which all licenses are derived that way we can use a single service to license any product since the license file is the same

@wishy.em,

I like to share that both Aspose.Slides and Aspose.Cells are two separate API and there exist no direct inter dependence of both APIs. You need to make two explicit calls to Aspose.Cells and Aspose.Slides licenses in order to use both of them in single application. This applies to all Aspose products when you use multiple products in one application.

Sounds good thank you