java - 构建签名 apk 时出错,我该如何解决这个问题?

标签 java android android-studio kotlin build.gradle

我是 android studio 的新人,今天完成了一个项目,试图构建签名的 apk,但出现错误 我真的很努力地寻找共鸣,但失败得很惨

FAILURE: Build failed with an exception.

* What went wrong:
Could not determine the dependencies of task ':app:lintVitalRelease'.
> Could not resolve all task dependencies for configuration ':app:lintClassPath'.
   > Could not resolve com.android.tools.lint:lint-gradle:26.6.3.
     Required by:
         project :app
      > No cached version of com.android.tools.lint:lint-gradle:26.6.3 available for offline mode.
      > No cached version of com.android.tools.lint:lint-gradle:26.6.3 available for offline mode.
      > No cached version of com.android.tools.lint:lint-gradle:26.6.3 available for offline mode.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1s

下面给出了应用程序构建部分,我不知道该由谁来解决这个问题,请给出答案 还要提到原因,以便我可以从下面给出的应用程序构建部分中学习:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"

    defaultConfig {
        applicationId "com.example.covid_19"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }}}
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.github.blackfizz:eazegraph:1.2.5l@aar'
    implementation 'com.nineoldandroids:library:2.4.0'
    implementation 'com.android.volley:volley:1.1.1'
    implementation 'com.leo.simplearcloader:simplearcloader:1.0.+'
    implementation 'com.github.bumptech.glide:glide:4.11.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}

最佳答案

在 gradle 中禁用离线模式并同步项目

关于java - 构建签名 apk 时出错,我该如何解决这个问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61917639/

相关文章:

java - 即使在 InitialContext 中指定了正确的用户,如何解析 'User <anonymous> has insufficient permission to access EJB'

Java 套接字 : Socket. close() 终止 Windows 和 Mac 上的连接不同?

android - 是否可以在 Android WebView 中播放 Facebook 直播视频?

java - 在 Google map Android 上添加图标和标记

java - Android - recyclerView返回多次相同的项目

java - 不同类android java中的Paho-mqtt回调

Android EditText/TextView如何让每个单词以大写开头,单词的所有剩余字符都为小写

java - findViewById() 下仅显示一个 ImageButton

ubuntu 安装上的 Android Studio 构建错误

java - JFrame 的 setSize 不起作用