• Android Studio开发中的构建异常和解决办法


    1. Cannot fit requested classes in a single dex file (# methods: 162837 > 65536 ; # fields: 88354 > 65536)

    在app的build.gradle中添加依赖,在defaultConfig中添加以下代码【注意:必须是app这个module,不能是其他的module】

    apply plugin: 'com.android.application'
    
    android {
        defaultConfig {
            //
            multiDexEnabled true
        }
    }
    
    dependencies {
        implementation 'com.android.support:multidex:1.0.3'
    }
    

    果你自定义了Application子类,需要在这个子类中重写一个方法

    
    
    @Override
    public void onCreate() {
        super.onCreate();
        // 主要是添加下面这句代码
        MultiDex.install(this);
    }
    
    
    

    问题描述如下

    Duplicate class org.intellij.lang.annotations.Identifier found in modules jetified-annotations-12.0.jar (com.intellij:annotations:12.0) and jetified-annotations-13.0.jar (org.jetbrains:annotations:13.0) Duplicate class org.intellij.lang.annotations.JdkCon

    解决办法
    在 应用 build.gradle 里添加 如下代码

    configurations {
    cleanedAnnotations
    compile.exclude group: 'org.jetbrains' , module:'annotations'
    }

  • 相关阅读:
    ubuntu安装pgAdmin 4
    python 读取文件
    byobu copy
    vim快捷键汇总
    python 停止线程
    python执行外部命令并获取输出
    gevent mysql
    python类型转换
    量化交易
    Java集合:HashMap底层实现和原理(源码解析)
  • 原文地址:https://www.cnblogs.com/pozhu15/p/12862449.html
Copyright © 2020-2023  润新知