次のエラーが発生します
タイプorg.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandのオブジェクトの不明なプロパティ 'supportLibVersion'を取得できませんでした
反応ネイティブアプリケーションと反応ネイティブマップの依存関係に取り組んでいますが、エラーが発生します
dependencies {
def supportLibMajorVersion = supportLibVersion.split('\\.')[0] as int
def appCompatLibName = (supportLibMajorVersion < 20) ? "androidx.appcompat:appcompat" : "com.android.support:appcompat-v7"
implementation "$appCompatLibName:$supportLibVersion"
implementation('com.facebook.react:react-native:+') {
exclude group: 'com.android.support'
}
implementation "com.google.android.gms:play-services-base:${safeExtGet('playServicesVersion', '16.1.0')}"
implementation "com.google.android.gms:play-services-maps:${safeExtGet('playServicesVersion', '16.1.0')}"
implementation 'com.google.maps.android:android-maps-utils:0.5'
}
誰もがここで何が悪いのか考えていますか?
端末のエラーは
失敗:ビルドは例外で失敗しました。
場所:
ビルドファイル 'D:\ react native \ abhishek \ Gwala \ node_modules \ react-native-maps \ lib \ android \ build.gradle'行:20
問題点:プロジェクト ':react-native-maps'の評価中に問題が発生しました。
タイプorg.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandlerのオブジェクトの不明なプロパティ 'supportLibVersion'を取得できませんでした。
20行目は
def supportLibMajorVersion = supportLibVersion.split('\\.')[0] as int