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.
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.
Source: https://ru.stackoverflow.com/questions/558783/
All Articles