0

アプリケーションの実行中にエラーが発生しました。app:transformClassesWithDexForDebug exceptionおよびjava.util.concurrent.ExecutionException

Error:Execution failed for task ':app:transformClassesWithDexForDebug'. com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536

私の問題は私の.gradleファイルにあると思います。おそらく、私の.gradleファイルへの依存のためのいくつかの重複。私は1つを削除しましたが、まだエラーが発生しています。

私の.gradleファイルは以下の通りです。

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 25 
    buildToolsVersion "25.0.2" 
    defaultConfig { 
     applicationId "com.mypackagename" 
     minSdkVersion 15 
     targetSdkVersion 25 
     versionCode 1 
     versionName "1.0" 
     testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 
     exclude group: 'com.android.support', module: 'support-annotations' 
    }) 
    compile 'com.android.support:multidex:1.0.0' 
    compile 'com.android.support:appcompat-v7:25.0.1' 
    compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha8' 
    compile 'com.google.android.gms:play-services:11.0.2' 
    compile 'com.android.support:design:25.0.0' 
    compile 'com.android.support:recyclerview-v7:25.0.1' 
    testCompile 'junit:junit:4.12' 
    compile 'com.squareup.retrofit2:retrofit:2.1.0' 
    compile 'com.android.support:cardview-v7:24.2.+' 

    compile 'com.google.code.gson:gson:2.6.1' 
    compile 'com.squareup.retrofit2:converter-gson:2.1.0' 
    compile 'com.squareup.okhttp:okhttp:2.6.0' 

    compile 'com.google.firebase:firebase-auth:11.0.2' 
    compile 'com.google.android.gms:play-services-auth:11.0.2' 
} 
} 

私のマニフェストファイル:あなたがここで使用できる方法の数のdex limitヒットしました

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.mypackagename"> 

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 
<uses-permission android:name="android.permission.INTERNET" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
<uses-permission android:name="com.roadysmart.permission.MAPS_RECEIVE" /> 
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /> 
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> 

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:roundIcon="@mipmap/ic_launcher" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 
    <activity android:name=".SplashActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
    <activity 
     android:name=".MainActivity" 
     android:screenOrientation="portrait" 
     android:theme="@style/AppTheme.NoActionBar"></activity> 
    <activity 
     android:name=".UserProfileEditActivity" 
     android:label="User Profile" 
     android:screenOrientation="portrait" /> 
    <activity 
     android:name=".SignInActivity" 
     android:label="Sign In" 
     android:screenOrientation="portrait" /> 
    <activity 
     android:name=".SelectActivity" 
     android:label="Were here to help" 
     android:screenOrientation="portrait" /> 
    <activity 
     android:name=".SignUpActivity" 
     android:label="Sign Up" 
     android:screenOrientation="portrait" /> 
    <activity 
     android:name=".ForgotPasswordActivity" 
     android:label="Forgot Password" 
     android:screenOrientation="portrait" /> 
    <activity 
     android:name=".UserProfileActivity" 
     android:label="User Profile" 
     android:screenOrientation="portrait" /> 

    <meta-data 
     android:name="com.google.android.geo.API_KEY" 
     android:value="AIzaS0000000014789occURS5KvtKgfdreWjaDI" /> 

</application> 

+0

[MultiDex NoClassDefFoundエラー]の可能な複製(https://stackoverflow.com/questions/26655541/multidex-noclassdeffound-error) –

答えて

3

multiDexEnabled truedefaultConfigに追加してみてください。

さらに、com.google.android.gms:play-services:11.0.2を直接使用することはお勧めしません。 Googleマップで作業したい場合は、com.google.android.gms:play-services-maps:11.1.0などを追加します。

+0

done bro、thanksありがとうございました。 –

+0

問題ありません。喜んで助けになる。 – fluffyBatman

1

com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536

Android 5.0(21)をより低く、すべてのデバイスに影響します。

これを修正するには、gradleでmulti-dexを有効にし、アプリケーションが最大Dex制限で回避するためにMultiDexApplicationを拡張する必要があります。

android { 
    defaultConfig { 
     ... 
     minSdkVersion 21 
     targetSdkVersion 26 
     multiDexEnabled true 
    } 
    ... 
} 
関連する問題