Android 开发遇到问题

Getting issue with Android development

请参阅下面随附的屏幕截图。我将尝试添加 android-v4 jar 文件,但在 android stdio 中出现问题(在 Android stdio 中,通过导入项目功能添加)

导入 jar 文件时出现以下错误。

build.gradle (Module::App) 文件在这里

android {
    compileSdkVersion 13
    buildToolsVersion "21.1.2"
    defaultConfig {
        applicationId "com.jigsaw.startup"
        minSdkVersion 10
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
    //    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.google.android.gms:play-services:6.5.87'
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.loopj.android:android-async-http:1.4.6'
    compile 'com.android.support:support-v4:21.0.3'alert    
}


configurations {
    all*.exclude group: 'com.android.support', module: 'support-v4'

如果有人需要任何额外信息,请告诉我。

构建脚本中的这条语句:

configurations {
    all*.exclude group: 'com.android.support', module: 'support-v4'
}

明确排除 com.android.support.v4 中的任何内容链接到您的项目,因此这就是 import com.android.support.v4.Fragment 语句不起作用的原因。删除它,导入应该没问题。

我更改了 android API 并在 Android 4.2 上工作。然后问题解决了。

感谢大家