Android で AndroidX を使用しているが、「android.useAndroidX」プロパティが有効になっていない問題の解決策

エラーは次のとおりです

構成 `debugRuntimeClasspath` には AndroidX の依存関係が含まれていますが、`android.useAndroidX` プロパティが有効になっていないため、ランタイムの問題が発生する可能性があります。
`gradle.properties` ファイルで `android.useAndroidX=true` を設定して、再試行してください。
次の AndroidX 依存関係が検出されます:
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2 -> androidx.annotation:annotation:1.3.0
debugRuntimeClasspath -> androidx.appcompat:appcompat :1.4.2 -> androidx.core:core:1.7.0
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2 -> androidx.fragment:fragment:1.3.6 -> androidx.annotation:annotation-experimental:1.1. 0
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2 -> androidx.lifecycle:lifecycle-runtime:2.4.0
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2 -> androidx.fragment:fragment:1.3.6 -> androidx.loader:loader:1.0.0 -> androidx.lifecycle:lifecycle-livedata:2.0.0 -> androidx.arch.core:core-runtime:2.1.0
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2 - > androidx.savedstate:savedstate:1.1.0 -> androidx.arch.core:core-common:2.1.0
debugRuntimeClasspath -> androidx.appcompat:appcompat:1.4.2 -> androidx.savedstate:savedstate:1.1.0 -> androidx.lifecycle:lifecycle-common:2.4.0
 

問題の原因:


          このプロジェクトは AndroidX の依存関係を使用していますが、「android.useAndroidX」プロパティは有効になっていません:
  これは、プロジェクトが AndroidX の依存関係を使用しているが、gradle.properties ファイルで有効になっていないことを示しています。

解決:

次の 2 つの文をgradle.propertiesファイルに追加する必要があります。

android.useAndroidX=true 
android.enableJetifier=true

質問2

マニフェストのマージに失敗しました: android:exported を <activity> に明示的に指定する必要があります。Android 12 以降を対象とするアプリでは、対応するコンポーネントにインテント フィルタが定義されている場合、「android:exported」に明示的な値を指定する必要があります。

targetSdkVersion が SDK 31 (つまり、Android 12) 以上の場合、一部のアクティビティが Intent-filter で構成されている場合、エクスポートされた属性も同時に構成する必要があります。そうしないと、コンパイルが失敗します。 

 解決 

  1. targetSdkVersion を 30 に下げます。
  2. マニフェストで構成された Intent-filter を使用してアクティビティを追加しますandroid:exported属性

おすすめ

転載: blog.csdn.net/xiaowang_lj/article/details/125226011#comments_25912809