LoginSignup
0
0

More than 3 years have passed since last update.

Cannot fit requested classes in a single dex file (# methods: 115337 > 65536)

Last updated at Posted at 2020-09-09

メソッド数が65536を超えた場合のビルドエラー

要求されたクラスを単一のdexファイルに収めることはできません

解決法

最初から複数のdexファイルが使えるように設定。

build.gradle(app)
    defaultConfig {
        ...
        multiDexEnabled true
    }
    dependencies {
    implementation 'com.android.support:multidex:1.0.3'
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0