我尝试在flutter插件中实现一个android外部库,我们称之为myPlugin。但我不知道如何构建具有外部库实现的 build.gradle。我尝试运行依赖于 myplugin 的主项目。但我仍然无法调用外部库的任何 api 这是 myplugin build.gradle :
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 16
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
}
dependencies {
implementation 'com.android.support:support-v4:26.1.0'
}
当我尝试导入 android.support.v4...ActivityCompat 时,它被称为无法解析符号。请告诉我如何做正确的方法。谢谢