タグ付けされた質問 「android-jetifier」

9
指定されたアーティファクトには、安全に書き換えることができないパッケージ参照「android.support.v4.content」を持つ文字列リテラルが含まれています。androidx
私をアップグレードandroid studio to 3.4 canaryしましたが、次のエラーのために正常にビルドできなくなりました。 The given artifact contains a string literal with a package reference 'android.support.v4.content' that cannot be safely rewritten. Libraries using reflection such as annotation processors need to be updated manually to add support for androidx. 詳細: Caused by: java.lang.RuntimeException: Failed to transform '.gradle/caches/modules-2/files-2.1/com.jakewharton/butterknife-compiler/9.0.0-SNAPSHOT/732f93940c74cf32a7c5ddcc5ef66e53be052352/butterknife-compiler-9.0.0-SNAPSHOT.jar' using Jetifier. Reason: …

2
Android:非推奨は注釈に変換できません
AndroidXへの移行のうさぎの穴を下った... 移行はほぼ完了しましたが、1つのエラーが発生し、乗り越えられないようです。 すでに試したClean & RebuildとInvalidate Caches / Restart 何かが認識されないR.javaファイルに@Deprecatedを挿入しているようです。 アプリのbuild.gradleファイルは長いですが、関連する部分があります(関連する場合はさらに投稿できます)。 android { compileSdkVersion 29 defaultConfig { minSdkVersion 17 targetSdkVersion 29 } compileOptions { dataBinding { enabled = true } } dependencies { ... implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'com.google.android.material:material:1.2.0-alpha01' def rxlifecycleVersion = "3.1.0" implementation "io.reactivex.rxjava3:rxjava:3.0.0-RC4" implementation "com.trello.rxlifecycle3:rxlifecycle:$rxlifecycleVersion" implementation "com.trello.rxlifecycle3:rxlifecycle-kotlin:$rxlifecycleVersion" implementation "com.trello.rxlifecycle3:rxlifecycle-android:$rxlifecycleVersion" implementation …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.