如何解决Android Studio 3.0的错误(25.13)?

时间:2017-11-21 06:34:24

标签: mongodb android-studio

这是我尝试编译App时出现的内容。

我尝试使用MongoDB Stitch并将build.grandle(项目测试)放入以下内容:

maven {
    url "https://oss.sonatype.org/content/repositories/snapshots"
}

看起来像这样:

// Top-level build file where you can add configuration options common to 
all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        maven {
            url "https://oss.sonatype.org/content/repositories/snapshots"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

同样在build.grandle(模块应用程序)中我输入了代码:

compile 'org.mongodb:stitch:1.0.0-SNAPSHOT'

在依赖关系中看起来像这样:

apply plugin: 'com.android.application'

 android {
    compileSdkVersion 23
    buildToolsVersion '26.0.2'

    defaultConfig {
        applicationId "com.example.hasslerisaac.ruffy"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'org.mongodb:stitch:1.0.0-SNAPSHOT'
}

错误

  

错误:(25,13)无法解决:org.mongodb:stitch:1.0.0-SNAPSHOT       在Filw中显示       在项目结构对话框中显示

所有这些都在MongoDB页面中显示,以将群集的Stitch应用程序加入到应用程序中。请帮忙。

1 个答案:

答案 0 :(得分:0)

看起来stitch 1.0.0-SNAPSHOT依赖关系不在maven中心。对于SNAPSHOT版本的maven包,通常就是这种情况。

当我查看针脚项目的github page时,我可以看到他们有什么称为此包的快照存储库。

根据他们的建议,请添加快照存储库,包应该解决得很好:

repositories {
    // TODO: Remove once BSON 3.5.0 is released
    maven {
        url "https://oss.sonatype.org/content/repositories/snapshots"
    }
}