Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
程序类型已存在:android.support.v4.app.NavUtils消息_Android_Gradle_Appodeal - Fatal编程技术网

程序类型已存在:android.support.v4.app.NavUtils消息

程序类型已存在:android.support.v4.app.NavUtils消息,android,gradle,appodeal,Android,Gradle,Appodeal,程序类型已存在:android.support.v4.app.NavUtils 消息{kind=错误,text=程序类型已存在: android.support.v4.app.NavUtils,sources=[未知源文件],tool name=Optional.of(D8)} 如何解决这个问题? 如果有人对这个问题的原因有任何想法,我将非常感谢分享这些知识。谢谢大家! 构建梯度项目 构建梯度模块 // Top-level build file where you can add configu

程序类型已存在:android.support.v4.app.NavUtils 消息{kind=错误,text=程序类型已存在:

android.support.v4.app.NavUtils,sources=[未知源文件],tool name=Optional.of(D8)}

如何解决这个问题? 如果有人对这个问题的原因有任何想法,我将非常感谢分享这些知识。谢谢大家!

构建梯度项目 构建梯度模块
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.1'



        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        flatDir {
            dirs 'libs'
        }
        maven {
            url "https://maven.google.com"
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "ru.startandroid.identificationtest"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
     implementation fileTree(dir: 'libs', include: ['*.jar'])
     implementation 'com.android.support:multidex:1.0.1'
     implementation 'com.google.android.gms:play-services-ads:15.0.0'
     implementation 'com.google.android.gms:play-services-location:15.0.0'
     implementation 'com.android.support:support-v4:26.1.0'
     implementation 'com.android.support:appcompat-v7:26.1.0'
     implementation 'com.android.support.constraint:constraint-layout:1.1.0'
     implementation 'android.arch.persistence.room:runtime:1.0.0'
     testImplementation 'junit:junit:4.12'
     androidTestImplementation 'com.android.support.test:runner:1.0.1'
     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
     implementation  'com.google.android.gms:play-services-ads:15.0.0'
     implementation 'com.squareup.picasso:picasso:2.5.2' //for Inmobi
     implementation name: 'adcolony-sdk-3.2.1', ext: 'aar'
     implementation name: 'mmedia-6.4.0', ext: 'aar'
     implementation name: 'mobvista_alphab', ext: 'aar'
     implementation name: 'mobvista_appwall', ext: 'aar'
     implementation name: 'mobvista_appwallext', ext: 'aar'
     implementation name: 'mobvista_common', ext: 'aar'
     implementation name: 'mobvista_interstitial', ext: 'aar'
     implementation name: 'mobvista_mvdownloads', ext: 'aar'
     implementation name: 'mobvista_mvjscommon', ext: 'aar'
     implementation name: 'mobvista_mvnative', ext: 'aar'
     implementation name: 'mobvista_nativeex', ext: 'aar'
     implementation name: 'mobvista_offerwall', ext: 'aar'
     implementation name: 'mobvista_playercommon', ext: 'aar'
     implementation name: 'mobvista_reward', ext: 'aar'
     implementation name: 'mobvista_videocommon', ext: 'aar'
     implementation name: 'mobvista_videofeeds', ext: 'aar'
}