突然项目文件在android中找不到jdk

时间:2016-05-23 05:20:43

标签: java android gradle build manifest

我的项目工作正常,直到昨晚。今天当我打开stdio然后突然出现错误,说找不到LayoutInflator,找不到Activity类,我们在导入时总是看到的每个类都不起作用。当我尝试运行app时,它会打开“编辑配置”窗口。我也设置了jdk和stdio sdk路径并在清单中声明了所有配置的活动,但我每次都丢失了。我附加了我的清单和构建文件。 清单代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.shubham.sharma.bunktrackingapp" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="TeacherPanel.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".CoordinatorPanel.MainActivity"
            android:label="@string/app_name" ></activity>



    </application>

</manifest>

我的gradle代码在这里

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.shubham.sharma.bunktrackingapp"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile('com.mikepenz:materialdrawer:4.6.4@aar') {
        transitive = true

    }
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:support-v4:23.1.1'
    compile 'com.github.satyan:sugar:1.4'
    compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
    compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
    compile 'com.hannesdorfmann.mosby:mvp:2.0.0'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.pnikosis:materialish-progress:1.7'
    compile 'com.jakewharton.timber:timber:4.1.0'
    compile 'de.greenrobot:eventbus:3.0.0-beta1'
    compile files('libs/apache-httpcomponents-httpcore.jar')
    compile files('libs/apache-httpcomponents-httpclient.jar')


}

2 个答案:

答案 0 :(得分:1)

如果jdk是问题,那么ff Ubuntu - do - &gt; sudo apt-get install openjdk-8-jdk -here首先检查你的java版本,如果它是windows设置你的环境变量中的jdk / jre到java 8这两个步骤你将从google.if获得很多链接它没有解决最后一个选项,然后尝试重做最后一步,因为这个错误已经发生。尝试创建另一个Android项目,看看你在java文件中得到相同的错误,如果没有那么它不是jdk问题这是与你有关的事情项目R文件,因为您的xml文件中存在一些错误。尝试清理/重建项目。

答案 1 :(得分:0)

您可能遇到构建配置问题,只需转到Option Build并选择rebuild project。如果它不起作用,请告诉我您看到的错误。