2016-11-05 10 views
2

私はこれを実行してここに巻き上げるために多くの解決策をたどってきましたが、それ以外は何をするべきかわかりません。引数のメソッドapply()を見つけることができませんでした

このプロジェクトを実行するにはどうすれば設定できますか?

build.gradle:

apply plugin: 'com.android.application' 
apply plugin: 'com.neenbedankt.android-apt' 

android { 

    compileSdkVersion 23 
    buildToolsVersion "23.0.3" 

    //兼容Android6.0系统所需,如果这句话报错,可在dependencies标签下使用compile 'cn.bmob.android:http-legacy:1.0' 
    useLibrary 'org.apache.http.legacy' 

    defaultConfig { 
     applicationId "com.htq.baidu.com.htq.baidu.coolnote" 

     minSdkVersion 17 
     targetSdkVersion 23 
     versionCode 1 
     versionName "1.0" 
    } 

    buildTypes { 

     release { 
      //minifyEnabled false 
      // signingConfig signingConfigs.release 
      // minifyEnabled true 

      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 

     } 

    } 

    sourceSets { 

     main() { 

      jniLibs.srcDirs = ['libs'] 
     } 
    } 
    lintOptions { 

     ignoreWarnings true 
     //lint 遇到 error 时继续 构建 

     abortOnError false 
     //build release 版本 时 开启lint 检测 

     checkReleaseBuilds false 
     // 防止在发布的时候出现因MissingTranslation导致Build Failed! 

     disable 'MissingTranslation' 

    } 
} 

dependencies { 

    compile fileTree(dir: 'libs', include: ['*.jar']) 

    testCompile 'junit:junit:4.12' 

    compile 'com.android.support:appcompat-v7:23.4.0' 

    compile 'com.android.support:design:23.4.0' 

    compile 'com.jakewharton:butterknife:8.2.1' 

    apt 'com.jakewharton:butterknife-compiler:8.2.1' 

    compile 'com.google.android.gms:play-services-appindexing:8.1.0' 

    compile 'cn.bmob.android:http-legacy:1.0' 

    compile 'cn.bmob.android:bmob-sdk:3.4.7-aar' 

    compile 'org.greenrobot:eventbus:3.0.0' 

    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.2' 

    compile 'com.github.clans:fab:1.6.1' 

} 
apply plugin: 'groovy' 
apply plugin: 'groovy' 

setting.gradle

include ':app' 

local.properties:

sdk.dir=D\:\\Android\\sdk 

gradle.propertes:

#Project-wide Gradle settings. 


# IDE (e.g. Android Studio) users: 
# Gradle settings configured through the IDE *will override* 
# any settings specified in this file. 

# For more details on how to configure your build environment visit 
# http://www.gradle.org/docs/current/userguide/build_environment.html 

# Specifies the JVM arguments used for the daemon process. 
# The setting is particularly useful for tweaking memory settings. 
# Default value: -Xmx10248m -XX:MaxPermSize=256m 
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 

# When configured, Gradle will run in incubating parallel mode. 
# This option should only be used with decoupled projects. More details, visit 

# http://www.gradle.org/docs/current/userguide/multi_project_builds.html 
#sec:decoupled_projects 
# org.gradle.parallel=true 

gradle-wrapper.properties

distributionBase=GRADLE_USER_HOME 
distributionPath=wrapper/dists 
zipStoreBase=GRADLE_USER_HOME 
zipStorePath=wrapper/dists 
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip 

私はCでそれらをインストール:\ Users \ユーザーlwy.gradleの\ラッパーの\にdists:

enter image description here

+0

エラー:(1、0)タイプorgのプロジェクト ':app'の引数[{plugin = com.android.application}]に対してapply()メソッドを見つけることができませんでした。 .grai.api.Project。 Open File Ivy

+0

*適用プラグイン:build.gradleから 'groovy' *を試してみてください – Nisarg

+0

申し訳ありません。プラグインのコード: 'groovy'とGradleファイルとのプロジェクトを同期しましたが、エラーは引き続き発生します。 – Ivy

答えて

2

私はこの問題を解決しました!ここに私のかもしれない:

1. "build.gradle"のcontetnをコピーし、 "build.gradle"を削除します。

2.create新しいbuild.gradleとすべてです。この「build.gradle」

に以前の内容を貼り付け!

関連する問題