私は(それは小さなプロジェクトである)のAndroidプロジェクトをビルドしようとしている、と私はトラヴィスにこのエラーを取得しています:実行は、タスクに失敗しました「:アプリ:transformClassesWithDexForDebug」小さなアプリで
* What went wrong:
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
私はmultiDexを有効にすることでこの問題を解決できることを認識していますが、プロジェクトとその依存関係がmultiDexのメソッド制限を超えているとは思わないので、私の場合はこのエラーは起こらないと思います。
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 project(':geth')
compile 'com.android.volley:volley:1.0.0'
compile 'com.google.android.gms:play-services-maps:10.0.1'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:support-v4:25.1.0'
compile 'com.android.support:design:25.1.0'
testCompile 'junit:junit:4.12'
}
任意のアイデア:
ここに私のbuild.gradleファイル中の依存関係はありますか?
ありがとうございました