2016-10-10 2 views
1

사실 몇 시간 전에 프로젝트에 오류가 발생하지 않았지만 알지 못하는 사이에 어떤 변화가 있었는지 알 수 없으므로 다음 오류가 발생합니다. "오류 : (36, 0) 경로 프로젝트 ': easyAndroidAnimationsLibrary'을 루트 프로젝트 'wikiReviews' "에서 찾을 수 없습니다. 난 googled 내 프로젝트 계층 구조, gradle 파일, 설정 파일을 확인했지만 괜찮아 보이지만 아직 실제 문제를 추적 할 수 없습니다. 다음 이미지루트 프로젝트에서 경로가있는 프로젝트를 찾을 수 없습니다. Android Studio

을 hierarchy-- 확인을 참조하십시오

enter image description here

내 build.gradle는

apply plugin: 'com.android.application' 

    android { 
     compileSdkVersion 23 
     buildToolsVersion '23.0.3' 

     defaultConfig { 
      applicationId "com.myleomo.wikiReviews" 
      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" 
       } 
    } 
buildscript { 
    dependencies { 
     classpath 'com.android.tools.build:gradle:1.5.0' 
    } 
    repositories { 
     jcenter() 
    } 
} 
allprojects { 
    repositories { 
     jcenter() 
    } 
} 

아래는 내 최고 수준의 빌드입니다 is--. 아래는

// 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() 
    } 
} 

gradle-- 내 settings.gradle--

include ':easyAndroidAnimationsLibrary' 
include ':facebookSDK' 
include ':liveSdk' 
include ':socialNetworkingLib' 
include ':starBar' 
include ':stickyHeaderLibrary' 
include ':zbarSample' 
include ':ffmpeg4android_lib' 
include ':library' 
include ':main' 
include ':wikiReviews' 

나도 같은 더 많은 정보를 제공 할 수 있는지 알려 주시기 바랍니다. 고맙습니다.

답변

0

프로젝트가 wikiReviews 여야합니다. 안드로이드 스튜디오에서로드 한 프로젝트의 방식이 잘못되었을 수도 있습니다.

관련 문제