#xml #android-studio #android-gradle-plugin
Вопрос:
Это и есть зависимость
implementation platform('com.google.firebase:firebase-bom:26.7.0')
implementation 'com.google.firebase:firebase-analytics'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'com.google.firebase:firebase-database:19.2.1'
implementation 'com.android.support:appcompat-v7:25.3.1'
testImplementation 'junit:junit:4. '
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
compile 'com.firebase:firebase-client-android:2.5.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:4.4. '
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
Это пользовательский атрибут, который был создан, и я получаю ошибку — ошибка: дублирующее значение для ресурса «attr/тема» с конфигурацией »
<declare-styleable name="WalletFragmentOptions">
<!-- Theme to be used for the Wallet selector -->
<attr name="theme" format="enum">
<enum name="holo_dark" value="0"/>
<enum name="holo_light" value="1"/>
</attr>
<!-- Google Wallet environment to use -->
<attr name="environment" format="enum">
<enum name="production" value="1"/>
<enum name="sandbox" value="0"/>
<enum name="strict_sandbox" value="2"/>
</attr>
<!-- A style resource specifing attributes to customize the look and feel of WalletFragment -->
<attr name="fragmentStyle" format="reference"/>
<!-- Fragment mode -->
<attr name="fragmentMode" format="enum">
<enum name="buyButton" value="1"/>
<enum name="selectionDetails" value="2"/>
</attr>
</declare-styleable>
Я попытался изменить версию sdk для компиляции и целевую версию sdk, а также методом проб и ошибок изменить имя значений в пользовательском атрибуте, но я все еще продолжаю получать ошибку — ошибка: дубликат значения для ресурса «attr/тема «с конфигурацией». Я пробовал другие альтернативы, но ни одна из них не работает. Пожалуйста, помогите.