Возникают проблемы с получением проекта Ioni c для сборки на Android при использовании плагина Capacitor AdMob.
Четвертая строка файла AdMob. java содержит следующую строку:
import android.support.design.widget.CoordinatorLayout;
с ошибкой design
, говорящей Невозможно разрешить символ 'design' , и ошибка построения error: package android.support.design.widget
не существует
I ' Мы добавили эту строку в мой файл build.gradle, и это ничего не изменило. implementation 'com.android.support:design:28.0.0'
Мне нужно использовать AndroidX из-за другого плагина, но миграция с использованием функции переноса в Android Studio не помогает.
Это долгосрочная проблема или только моя где-то ошибка (у меня есть веб-разработчик и iOS Swift, поэтому создание Android проектов мне совершенно чуждо, поэтому я использую Ioni c)
Спасибо
мой build.gradle файл (я отменил миграцию AndroidX, так как это не помогло)
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.skbarker.calwod"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
maven {
url "https://dl.bintray.com/ionic-team/capacitor"
}
flatDir{
dirs '../capacitor-cordova-android-plugins/src/main/libs', 'libs'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':capacitor-android')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation project(':capacitor-cordova-android-plugins')
}
apply from: 'capacitor.build.gradle'
try {
def servicesJSON = file('google-services.json')
if (servicesJSON.text) {
apply plugin: 'com.google.gms.google-services'
}
} catch(Exception e) {
logger.warn("google-services.json not found, google-services plugin not applied. Push Notifications won't work")
}