0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【( ..)φメモメモ】Android Studio でつまずく些細なこと

Last updated at Posted at 2024-10-08

ActivityTrigger(system_server)のエラー

appを実行すると ActivityTrigger(system_server) から次のエラーが Logcat に出力されることがあります。

  • エラー activityStartTrigger: not whiteListed
  • エラー activityResumeTrigger: not whiteListed

【回避?】
app実行時にLogcatを表示するように構成を変更するとエラーが出なくなるようです?

補足: これらのエラーはエラーではないとの情報もありますし、minifyEnabledfalseに設定するように助言している情報もあります。

app\build.gradle.kts
    :
    buildTypes {
        debug {
            isMinifyEnabled = false
            proguardFiles(
                getDefaultProguardFile("proguard-android-optimize.txt"),
                "proguard-rules.pro"
            )
        }
        release {
            isMinifyEnabled = true
            proguardFiles(
                getDefaultProguardFile("proguard-android-optimize.txt"),
                "proguard-rules.pro"
            )
        }
    }
    :

app実行時にLogcatを表示したい

RunEdit Configurationsで、Show logcat automatically をチェックします。

image.png

image.png

.idea フォルダ

プロジェクトのルートに .idea フォルダが作成されますが、gitリポジトリから除外します。

.gitignore
*.iml
.gradle
/local.properties
/.idea
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?