In my android application I try to add 2 classes:

import java.util.stream.Collectors; import java.util.stream.IntStream; 

But they are not added, Collectors and IntStream are highlighted in red. What could be the problem? I use Java 8.

    1 answer 1

    In previous versions of Android, the ability to use Java 8 is missing. But in Android 7 such an opportunity appeared. Here is the link to the official documentation.

    • one
      Thanks for the info :) - Amandi