2
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?

More than 5 years have passed since last update.

【エラー】D8: Program type already present: android.support.v4.os.ResultReceiverの解決方法

Posted at

はじめに

いつも通りionic5で開発したアプリをionic cordova run androidでビルドしてAndroid端末にインストールしようとしたのですが、D8: Program type already present: android.support.v4.os.ResultReceiverというエラーが発生しました。
解決方法を記載します。

解決方法

  1. ionic cordova plugin add cordova-plugin-androidxを実行
  2. ionic cordova plugin add cordova-plugin-androidx-adapterを実行

cordova-plugin-androidxとは

CordovaプロジェクトでAndroidサポートライブラリの後継であるAndroidXを有効にします。
https://github.com/dpa99c/cordova-plugin-androidx

cordova-plugin-androidx-adapterとは

CordovaプロジェクトにAndroidサポートライブラリとAndroidXの両方を参照するプラグイン/ライブラリが含まれている場合に必要。
Androidサポートライブラリへの参照をAndroidXにマッピングしてくれる。
https://github.com/dpa99c/cordova-plugin-androidx-adapter

おわりに

開発中にインストールしたプラグインでAndroidXが必要だったため、エラーが起きていたようです。

参考

2
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
2
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?