2016-10-10 12 views
1

私は「プラグインIDが見つかりません 『com.android.application』で」取得していますが見つかりません私のアプリでエラーで1つのライブラリプロジェクトを追加した後、私のアプリから、ライブラリアプリケーションを削除しましたが、同じエラーがそのまま残ります。私はたくさんのグーグル・グーグルで解決策を試しましたが、このエラーを解決できませんでした。詳細については、以下の「アプリモジュールのbuild.gradle」をチェックしてください - 以下プラグインは、Androidスタジオ

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 23 
    buildToolsVersion '23.0.3' 

    defaultConfig { 
     applicationId "com.lemo.wikinews" 
     minSdkVersion 15 
     targetSdkVersion 23 
     multiDexEnabled true 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 

    packagingOptions { 
     exclude 'META-INF/DEPENDENCIES' 
     exclude 'META-INF/LICENSE.txt' 
     exclude 'META-INF/LICENSE' 
     exclude 'META-INF/LICENSE-FIREBASE.txt' 
     exclude 'META-INF/NOTICE' 
    } 

    dexOptions { 
     javaMaxHeapSize "4g" 
    } 

} 

dependencies { 
    compile project(':easyAndroidAnimationsLibrary') 
    compile project(':liveSdk') 
    compile project(':main') 
    compile project(':zbarSample') 
    compile project(':stickyHeaderLibrary') 
    compile project(':starBar') 
    compile project(':facebookSDK') 
    compile project(':library') 
    compile project(':ffmpeg4android_lib') 
    compile project(':socialNetworkingLib')  
    compile 'com.google.android.gms:play-services:9.6.1' 
    compile files('libs/nmdp_speech_kit.jar') 
    compile files('libs/AndroidSwipeLayout-v1.1.8.jar') 
    compile group: 'commons-logging', name: 'commons-logging', version: '1.2' 
    compile files('libs/CWAC-SackOfViewsAdapter.jar') 
    compile files('libs/devsmartandroid.jar') 
    compile group: 'com.google.api-client', name: 'google-api-client', version: '1.6.0-beta' 

    compile files('libs/google-api-services--v1-1.3.0-beta.jar') 
    compile files('libs/httpclient-4.4.jar')  
    compile group: 'oauth.signpost', name: 'signpost-commonshttp4', version: '1.2' 

    compile group: 'oauth.signpost', name: 'signpost-core', version: '1.2.1.2' 

    compile group: 'oauth.signpost', name: 'signpost-jetty6', version: '1.2.1.1' 

    compile 'com.android.support:multidex:1.0.0' 

    '4.4-alpha1' 
    compile 'com.squareup.picasso:picasso:2.4.0' 
    compile 'com.google.android.gms:play-services-gcm:8.4.0' 
    compile 'org.apache.httpcomponents:httpclient:4.5' 
    compile 'org.apache.httpcomponents:httpcore:4.4.1' 
    compile 'org.apache.httpcomponents:httpmime:4.3.5' 


version: '4.3.5.1' 
    compile('org.apache.httpcomponents:httpmime:4.3') 
      { 
       exclude module: "httpclient" 
      } 
} 

とは、私のトップレベルの「builg.gradle」です -

// Top-level build file where you can add configuration options common to all sub-projects/modules. 
buildscript { 
    repositories { 
     jcenter() 
    } 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.5.0' 
    } 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
} 

はまた、私があれば教えてください問題を理解するために、より多くの情報を提供することができます。ありがとうございました。

+0

この写真を見ます。 –

+0

どのバージョンのgradleラッパーを使用していますか? –

+0

@Aram Tchekrekjianバージョンのgradleラッパーは2.8 –

答えて

1

Bellowがインポートの問題を解決するための方法です。プロジェクトでは古いスタジオプラグインを使用しています。私の貧しい英語を許してください。

トップmoudle build.gradleを編集して、あなたのスタジオのものに合わせてgradleプラグインを編集してください。次にこれを表示してください。 エラー:サポートされている最小サポートバージョンは2.14.1です。現在のバージョンは2.2.1です。 gradleラッパーを使用している場合は、C:¥Users¥Administrator¥Desktop¥SelectCityDome¥gradle¥wrapper¥gradle-wrapper.propertiesのdistributionUrlをgradle-2.14.1-all.zipに編集してみてください Gradleラッパーを修正してプロジェクトを再インポートしてください ガジェットの設定は、それに続くステップに従います。

JUST更新Gradleのバージョン、そのチェックをnew..before、これを使用して、プロジェクトを再起動する... /再起動**ファイル - >無効なキャッシュ**オプション

enter image description here

関連する問題