Unsupported major.minor version 52.0 in my app

后端 未结 28 2612
心在旅途
心在旅途 2020-11-28 03:43

I\'m trying to compile my Android project and I\'m getting this error

[INFO] Exception in thread \"main\" java.lang.UnsupportedClassVersionError: com/android         


        
28条回答
  •  温柔的废话
    2020-11-28 04:05

    Get this error message on the travis build server?

    I fixed my travis build with buildToolsVersion "24.0.2" using this

    # travis build 
    language: android
    
    jdk:
      - oraclejdk8
    
    android:
      components:
        - tools
        - build-tools-24.0.2
        - android-23
    
        - add-on
        - extra
    
    script:
      - jdk_switcher use oraclejdk8
      - ./gradlew assemble
    

提交回复
热议问题