无法处理okhttp-3.14.0.jar

问题描述 投票:-1回答:1

试图跟随teamtreehouse的课程建立一个Android天气应用程序。老师能够到那里的应用程序在模拟器内运行并崩溃,但我甚至不会在模拟器中运行,只是给了我一堆错误。老师指出,故意错误将在以后修复。

Heres what some of the errors are.

java android rest okhttp3
1个回答
3
投票

尝试将此添加到您的app/build.gradle,如上所述in this answer

android {
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.