简体   繁体   English

没有静态方法 decodeBase64 - Google 凭据

[英]No static method decodeBase64 - Google Credential

I built an Android application with a service account on it to upload files on Google Drive, which works perfectly on the emulator and Android Nougat.我构建了一个带有服务帐户的 Android 应用程序,用于将文件上传到 Google Drive,它在模拟器和 Android Nougat 上完美运行。 Now, I tried it on a Samsung Galaxy Tab A with Android 8.1 and before implementing the service account everything worked fine.现在,我在装有 Android 8.1 的三星 Galaxy Tab A 上进行了尝试,在实施服务帐户之前一切正常。 Now, when I try to save a file on google Drive from it, I get the error:现在,当我尝试将文件保存在 Google Drive 上时,出现错误:

 java.lang.NoSuchMethodError: No static method decodeBase64(Ljava/lang/String;)[B in class Lorg/apache/commons/codec/binary/Base64; or its super classes (declaration of 'org.apache.commons.codec.binary.Base64' appears in /system/framework/org.apache.http.legacy.boot.jar)

The problematic code is where I log in, in particular in the fromStream method:有问题的代码是我登录的地方,特别是在fromStream方法中:

private Credential authorize () throws IOException {
    InputStream in = getAssets().open("credentials.json");
    return GoogleCredential.fromStream(in)
            .createScoped(Collections.singleton(DriveScopes.DRIVE_FILE));
}

These are the new libraries implemented, I add commons-codec:commons-codec:1.15 since I read that it can be caused by it but it still doesn't work:这些是实现的新库,我添加了 commons-codec:commons-codec:1.15 因为我读到它可能是由它引起的,但它仍然不起作用:

//API Google Drive
implementation 'com.google.android.gms:play-services-auth:19.0.0'
implementation('com.google.api-client:google-api-client-android:1.26.0') {
    exclude group: 'org.apache.httpcomponents'
    exclude module: 'guava-jdk5'
}
// https://mvnrepository.com/artifact/com.google.apis/google-api-services-drive
implementation('com.google.apis:google-api-services-drive:v3-rev136-1.25.0') {
    exclude group: 'org.apache.httpcomponents'
    exclude module: 'guava-jdk5'
}

implementation 'com.google.http-client:google-http-client-gson:1.26.0'

implementation 'commons-codec:commons-codec:1.15'

How can I solve it?我该如何解决?

Edit: these are the only apaches' libraries that I used in the whole project, but they have been used to write the .xlsx file in local and never gave me any kind of problem on the Galaxt Tab A before implementing the service credentials:编辑:这些是我在整个项目中使用的唯一 apaches 库,但它们已被用于在本地编写 .xlsx 文件,并且在实现服务凭据之前从未在 Galaxt Tab A 上给我任何类型的问题:

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

This is a known issue with the version of google-api-client-android you're using.这是您使用的google-api-client-android版本的一个已知问题 The solution is to upgrade the version from 1.26 to 1.28 (or downgrade it to 1.25 , see this comment ).解决方案是将版本从1.26升级到1.28 (或将其降级到1.25 ,请参阅此评论)。

I was able to reproduce the issue using an Empty Activity project and a virtual device with an API Level 26 and a Target Android 8.0 (Google APIs)我能够使用Empty Activity项目和具有API 级别 26和目标Android 8.0(Google API)的虚拟设备重现该问题

Build.gradle content : Build.gradle 内容:

plugins {
    id 'com.android.application'
}

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.0"

    defaultConfig {
        applicationId "com.example.myapplication"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            useProguard false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.2.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    implementation 'com.google.android.gms:play-services-auth:19.0.0'
    
    //changing the version here from 1.26.0 to 1.28.0 resolves the issue 
    implementation('com.google.api-client:google-api-client-android:1.26.0') {
        exclude group: 'org.apache.httpcomponents'
        exclude module: 'guava-jdk5'
    }
    implementation('com.google.apis:google-api-services-drive:v3-rev136-1.25.0') {
        exclude group: 'org.apache.httpcomponents'
        exclude module: 'guava-jdk5'
    }
    implementation 'commons-codec:commons-codec:1.15'
}

MainActivity.java content: MainActivity.java 内容:

package com.example.myapplication;

import android.os.Bundle;

import androidx.appcompat.app.AppCompatActivity;

import com.google.api.client.auth.oauth2.Credential;
import com.google.api.client.googleapis.auth.oauth2.GoogleCredential;
import com.google.api.services.drive.DriveScopes;

import java.io.IOException;
import java.io.InputStream;
import java.util.Collections;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        try {
            authorize();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private Credential authorize () throws IOException {
        InputStream in = getAssets().open("credentials.json");
        return GoogleCredential.fromStream(in)
                .createScoped(Collections.singleton(DriveScopes.DRIVE_FILE));
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 OutOfMemoryError 与 apache 公共 Base64 static 方法 decodeBase64 - OutOfMemoryError with apache commons Base64 static method decodeBase64 Android v1p1beta1语音-java.lang.NoSuchMethodError:无静态方法encodeBase64 - Android v1p1beta1 Speech - java.lang.NoSuchMethodError: No static method decodeBase64 Glassfish和Tomcat中的decodeBase64的不同结果 - Different results for decodeBase64 in Glassfish and Tomcat DecodeBase64使用apache commons - DecodeBase64 using apache commons 类型为Base64的方法encodeBase64(byte [])不适用于参数(String) - The method decodeBase64(byte[]) in the type Base64 is not applicable for the arguments (String) 使用Clojure的Apache Commons Codec解码Base64 - Using Apache Commons Codec decodeBase64 from Clojure 如何为 Base64.decodeBase64 编写 JUnit 测试 - How to write a JUnit test for Base64.decodeBase64 CryptoJS.enc.Base64.parse vs Base64.decodeBase64,有什么区别? - CryptoJS.enc.Base64.parse vs Base64.decodeBase64, what's the difference? 无法使Base64.decodeBase64工作(通用编解码器) - Can't get Base64.decodeBase64 to work (Commons codec) Java-Windows和Linux上的Base64.decodeBase64(text)结果不同 - Java - Base64.decodeBase64(text) different results on Windows and Linux
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM