当前位置: 首页 > 知识库问答 >
问题:

运行项目时如何解决重复输入错误

田成仁
2023-03-14

这是我的体格

 apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"

    useLibrary 'org.apache.http.legacy'

    defaultConfig {
        applicationId "com.example.demo"
        minSdkVersion 16
        targetSdkVersion 21
        multiDexEnabled true
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_7
            targetCompatibility JavaVersion.VERSION_1_7
        }
    }
    aaptOptions
            {
                cruncherEnabled = false
            }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    repositories {
        maven { url "https://jitpack.io" }
    }
}

dependencies {
    compile project(':draggerLibrary')
    compile project(':staggeredGridViewmaster')



    compile files('libs/httpclientandroidlib-1.2.1.jar')
    compile files('libs/httpcore-4.4-beta1.jar')
    compile files('libs/httpmime-4.3.jar')
    compile project(':viewPagerLibrary')
    compile project(path: ':ViewPagerLibrary')

    compile 'com.android.support:multidex:1.0.1'
    compile 'joda-time:joda-time:2.4'
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.google.android.gms:play-services:11.0.2'

    compile 'cn.pedant.sweetalert:library:1.3'
    compile 'org.apache.commons:commons-lang3:3.4'
    compile 'com.google.guava:guava:20.0'
    compile "com.daimajia.swipelayout:library:1.2.0@aar"
    compile 'com.github.PhilJay:MPAndroidChart:v2.1.6'
    compile 'org.apache.commons:commons-collections4:4.1'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
}

错误:任务“DemoProject:transformClassesWithJarMergingForDebug”的执行失败。

com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android/support/v4/提供者/DocumentsContractApi19.class

共有1个答案

狄鹏
2023-03-14

配置您的构建

使用

compileSdkVersion 25 
buildToolsVersion "25.0.2"

然后呢

compile 'com.google.android.gms:play-services:11.0.2' 
compile 'com.android.support:appcompat-v7:25.3.1'

对于您的MAP问题,请使用getMapAsync()

 SupportMapFragment mapOBJ = ((SupportMapFragment)getSupportFragmentManager().findFragmentById(R.id.map));
  mapOBJ.getMapAsync(this);

阅读用getMapAsync替换getMap

 类似资料:
  • **给定一个整数数组和一个整数目标,返回两个数字的索引,使它们相加为目标。 您可以假设每个输入都只有一个解决方案,并且您不能两次使用相同的元素。 您可以以任何顺序返回答案。 例1: 输入:nums=[2,7,11,15],target=9 输出:[0,1] 说明:因为nums[0]nums[1]==9,所以我们返回[0,1]。 例2: 输入:nums=[3,2,4],target=6 输出:[1,

  • 知道为什么会这样吗?我的同事可以毫无问题地将项目导入他们的IntelliJ。 单击不执行任何操作。 系统: null

  • 给定一个整数数组和一个整数目标,返回两个数字的索引,使它们相加为目标。 警告:命令行选项已启用安全管理器警告:安全管理器已弃用,将在将来的版本中删除 JAVAlang.ArrayIndexOutOfBoundsException:索引3超出第6行的长度3的界限,解决方案。twoSum 在第54行,驾驶员解决方案。帮手 第87行Driver.main

  • 到目前为止,我已经知道了,我正在尝试在Java使用命令行。当输入不是int时,我想打印一个错误。 第二个if语句是我想要打印一个错误的部分,如果输入不是int,我有一个isInteger方法。但我的程序反而崩溃或打印错误。 编辑:这是我的isInteger方法 所以这里应该没有问题。 编辑2:这里是我得到的错误

  • 本文向大家介绍详解如何运行vue项目,包括了详解如何运行vue项目的使用技巧和注意事项,需要的朋友参考一下 在师兄的推荐下入坑vue.js ,发现不知如何运行GitHub上的开源项目,很尴尬。通过查阅网上教程,成功搭建好项目环境,同时对前段工程化有了朦朦胧胧的认知,因此将环境搭建过程分享给大家。 可以看下我的github:https://github.com/padipata ,里面有我学习、工作