Is it possible to use Java 8 for Android development?

后端 未结 26 2030
礼貌的吻别
礼貌的吻别 2020-11-21 22:50

Searching the web, it is not clear if Java 8 is supported for Android development or not.

Before I download/setup Java 8, can some one point me at any \"official\" d

26条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-21 23:11

    Easiest way to add Java 8 support

     compileOptions {
        targetCompatibility = '1.8'
        sourceCompatibility = '1.8'
     }
    

    Just add it in your build.gradle file.

提交回复
热议问题