将Android Studio更新为0.3.5 .Project不能使用ClassNotFoundException

时间:2013-11-14 21:26:46

标签: android android-studio

我有两个项目。 DataModel和我的应用程序。 我的应用程序成功启动但随后失败并返回classnotfoundexception。无法找到DataModel项目。我曾经遇到过同样的问题,但我可以通过更新gradle文件修复它,虽然随机安卓工作室会搞砸它们

DataModel build.gradle

apply plugin: 'java'

MyApplication build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.6.+'
    }
}
apply plugin: 'android'

repositories {
    mavenCentral()
}

android {
    compileSdkVersion 18
    buildToolsVersion "18.1.1"

    defaultConfig {
        minSdkVersion 10
        targetSdkVersion 18
    }
}

dependencies {
    compile 'com.android.support:appcompat-v7:18.0.0'
    compile 'com.android.support:gridlayout-v7:18.0.0'
    compile 'com.android.support:support-v4:18.0.0'
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.squareup.okhttp:okhttp:1.2.1'
    compile 'com.squareup.retrofit:retrofit:1.2.2'
    compile project(':DataModel')
}

MyApplication settings.gradle

包括':MyApplication',':DataModel'

2 个答案:

答案 0 :(得分:0)

您是否尝试过清理该项目?建立 - >清洁

答案 1 :(得分:0)

实际上存在一个类似的问题,如果你更新到0.3.6就足够了。

https://code.google.com/p/android/issues/detail?id=62011