无法找到参数的方法实现()[项目':库']

时间:2017-11-14 11:12:13

标签: android cordova android-studio

我已将一个cordova项目导入Android Studio 3.0,但我无法在AVD中测试它。标题是我尝试同步项目时遇到的错误,在阅读了几篇帖子之后,这些是我到目前为止所采取的步骤

  1. Gradle version = 4.3.1
  2. Android插件版本= 3.0.0
  3. include ":library"添加到settings.gradle文件
  4. 像这样编辑 build.gradle(Module:CordovaLib)文件

    buildscript {
        repositories {
            google()
        }
    
        dependencies {
           implementation project(':library')
        }
    }
    
    apply plugin: 'com.android.library'
    apply plugin: 'com.github.dcendents.android-maven'
    apply plugin: 'com.jfrog.bintray'
    
    group = 'org.apache.cordova'
    version = '6.3.0'
    
  5. 编辑 build.gradle(模块:android)这样的文件

    apply plugin: 'com.android.application'
    
    buildscript {
        repositories {
            google()
        }
    
       // Switch the Android Gradle plugin version requirement depending on the
       // installed version of Gradle. This dependency is documented at
       // http://tools.android.com/tech-docs/new-build-system/version-compatibility
       // and https://issues.apache.org/jira/browse/CB-8143
        dependencies {
            classpath 'com.android.tools.build:gradle:3.0.0'
        }
    }
    
    // Allow plugins to declare Maven dependencies via build-extras.gradle.
    allprojects {
        repositories {
            google()
        }
     }
    
  6. 这是已在文件夹结构中显示已编辑的文件

    enter image description here

    虽然我第一次使用android studio和cordova,但我真的很想做这项工作,但过去几天我们还没能解决这个问题。需要我能得到的所有帮助

0 个答案:

没有答案