"包过滤器删除了所有包" Android Studio中的错误

时间:2015-08-24 21:41:33

标签: android-studio

我坚持这个错误:

  

Android Studio包过滤器删除了所有包

我发现的最接近的问题是this one,但不幸的是,这并没有帮助。

这是我得到的错误:

enter image description here

我有一个有效的互联网连接,所以我不知道为什么Android Studio认为没有连接。我已经四处搜索了上面提到的过滤器'但是我还没有找到关于这个主题的任何内容。

另外,我有以下SDK平台&安装的工具:

enter image description here

enter image description here

最后但并非最不重要的是,我的构建Gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion '21.1.2'

    defaultConfig {
        applicationId "company.MyApp"
        minSdkVersion 14
        targetSdkVersion 23
    }

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

dependencies {
    compile project(':facebookSDK')
    compile project(':comcrashlyticssdkandroid_crashlytics')
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.google.android.gms:play-services:+'
    compile files('libs/YouTubeAndroidPlayerApi.jar')
    compile files('libs/libGoogleAnalyticsServices.jar')
}

为了解决这个问题,接下来要检查什么?

1 个答案:

答案 0 :(得分:0)

<强>解决

背景故事:

这是一个最初在eclipse中构建的SVN项目,我们目前正在将其迁移到Android Studio。在Android Studio升级后,我开始遇到这个问题,并且没有人会让我通过它。这就是我的尝试:

  • 通过SDK管理器更新SDK
  • 在项目管理器中更改构建工具版本
  • 终端中的
  • ./android update sdk --no-ui(mac osx)
  • 卸载/重新安装

相同问题 - 构建工具安装失败

解决方案

所以我扔了svn文件夹并下载了一个新文件夹。在这个过程中的某些事情清除了一切。这并没有真正解决问题,但也许这会帮助某人。 祝你好运