25
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Flutter】Android デバッグシンボルのアップロード

Posted at

#アプリ公開時に警告「デバッグシンボルがアップロードされていません」
スクリーンショット 2021-04-17 10.21.47.png

デバッグシンボルがアップロードされていないとのこと。
色々調べて辿り着いたこちらの記事。
https://stackoverflow.com/questions/63373245/how-to-add-debug-symbols-to-build-gradle

解決方法が見つかったので、書いていきます。

##SDKをインストール
SDK Managerで、「CMake」と「NDK」というSDKをインストールします。
スクリーンショット 2021-04-17 10.23.55.png

##Android gradle バージョンを4.1以上に
Android gradleの4.1以上が必要なようです。
とりあえず4.1.2にします。

android/build.gradle
buildscript {
    //省略
    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.2' //ここ
    }
}

##NDKのバージョンをメモする
SDK Managerを開いて右下にある「Show Package Details」をチェックするとバージョンが確認できます。
NDKのバージョンを後で記入するので、メモしておいてください。
この画像では、「22.1.7171670」になります。
スクリーンショット 2021-04-17 11.00.42.png

##app build.gradleを編集
下記の通り編集してください。

android/app/build.gradle
android {
    //省略
    ndkVersion "22.1.7171670" //ここにNDKのバージョンを記入
    //省略
    buildTypes {
        release {
            //省略
            ndk {
                debugSymbolLevel 'SYMBOL_TABLE' //追記
            }
        }   
    }
}

##アプリをビルド
アプリをビルドします。

$ flutter build appbundle --release

これで作成されたaabファイルにはデバッグシンボルがバンドルされているようで、個別にアップロードしなくても警告は出なくなりました。

25
13
1

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
25
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?