Prior to Android Studio 3.6 it was possible for me to run a pure Java Class without any configuration. After the update of Android Studio to version 3.6 I'm not able anymore to run a pure Java Class. There are multiple things which really getting on my nerves because of AS 3.6....
As a barebone example
public class Test {
public static void main(String[] args) {
System.out.println("Hello")
}
}
As I said prior to AS 3.6 I could run this. But now, I get the following Exception
* What went wrong:
A problem occurred configuring project ':app'.
> Could not create task ':app:Test.main()'.
> SourceSet with name 'main' not found.