rokkonet

PC・Androidソフトウェア・アプリの開発・使い方に関するメモ

2021-07-24から1日間の記事一覧

android開発 Failed to load class "org.slf4j.impl.StaticLoggerBinder"

2021 Jul. 24. エラーメッセージ Failed to load class "org.slf4j.impl.StaticLoggerBinder" 対処 build.gradle(Module)にライブラリを記述 dependencies { implementation group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.32' }

android開発 Didn't find class "org.bouncycastle.asn1.ASN1ObjectIdentifier"

2021 Jul. 24. エラーメッセージ Failed resolution of: Lorg/bouncycastle/asn1/ASN1ObjectIdentifier Didn't find class "org.bouncycastle.asn1.ASN1ObjectIdentifier" 対処 プロジェクトのapp/libsにbcprov-jdk15to18-1.69.jarを配置する build.gradle(M…

android開発 java.lang.NoClassDefFoundError: Failed resolution of: Lorg/slf4j/LoggerFactory

2021 Jul. 24. エラー現象 jcifsライブラリを利用してandroid端末をsmbクライントにするプログラムを作成したところ、 java.lang.NoClassDefFoundError: Failed resolution of: Lorg/slf4j/LoggerFactory というエラーが出た。 対処 build.gradle(Module)に …

arch linux pacman 不要なパッケージキャッシュの削除

2021 Jul. 24. 出典 不要なパッケージキャッシュの削除。paccacheとpkgcacheclean | Pagent 参考 pacman - ArchWiki ## pacmanでの古いパッケージキャッシュを、削除せずに開放容量のみ計算 $ paccache -d ## pacmanでの古いパッケージキャッシュを削除 $ pa…