0

在集成Small case Library之前,我的项目运行良好 。集成后,我在安装应用程序时收到此错误。

java.lang.NoSuchMethodError: No static method get(Ljava/lang/String;)Lokhttp3/HttpUrl; in class Lokhttp3/HttpUrl; or its super classes (declaration of 'okhttp3.HttpUrl' appears in /data/app/base.apk!classes3.dex)
        at retrofit2.Retrofit$Builder.baseUrl(Retrofit.java:506)

在这里,我附上了 App 级别的 gradle 文件。

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'


android {
    compileSdkVersion 29
    packagingOptions {
        exclude 'META-INF/*'
    }
    defaultConfig {
       
        minSdkVersion 23
        targetSdkVersion 29
       
        multiDexEnabled true
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    configurations{
        all*.exclude module: 'okhttp'
        all*.exclude module: 'okio'
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }




    buildToolsVersion '29.0.2'

}




dependencies {
    implementation project(path: ':library')
    implementation project(path: ':library')
    implementation project(path: ':library')
    testImplementation 'junit:junit:4.12'
 
    implementation 'com.smallcase.gateway:sdk:2.9.3'

    implementation ('com.squareup.retrofit2:retrofit:2.9.0') {
        exclude module: 'okhttp'
    }
    implementation 'com.google.code.gson:gson:2.6.2'
    implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
    implementation 'com.squareup.okhttp3:okhttp:3.4.1'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'
    implementation 'com.squareup.okhttp3:okhttp-urlconnection:3.4.1'
   

}

正如其他答案中提到的,我已经尝试使用 Java 1.8 设置 CompileOptions。但没有运气。任何帮助,将不胜感激。

4

1 回答 1

0

使用最新版本(Retrofit & OkHttp)

https://github.com/square/retrofit/issues/3058

于 2021-10-26T08:13:31.510 回答