AndroidStudio:无法解析符号 'MainActivity'。使用 AndroidAnnotations
AndroidStudio :Cannot resolve symbol 'MainActivity'.Using AndroidAnnotations
我决定将 AndroidAnnotations 与 Android Studio 一起使用,我想通过 Gradle.But 实现它 我遇到了一个错误 "Cannot resolve symbol 'MainActivity_'less...Validate resource references inside Android XML files."
我的版本:
targetSDKversion 22 + compileSdkVersion 22 + buildToolsVersion "22.0.1"
但是当我配置 Android Studio (1.4.1) 并修改 AndroidManifest.XML 配置文件时, 项目被提示去 wrong.Without my pre-processed class from my MainActivity
->MainActivity_
.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dimon.org.androidannotation" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".MainActivity_" > //here
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
我想知道哪里出了问题
谢谢!!!
这里是 build.gradle(模块和项目)的一些代码。
编辑
分享build.gradle
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
def AAVersion = '3.3.2'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.dimon.org.androidannotation"
minSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.1'
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName 'com.dimon.org.androidannotation'
}
}
EDIT2
根目录build.gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
// 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.gradle配置没问题,就是不知道为什么会出错
非常感谢!!
Make Project.Why?
后,我的项目没有在 generated/source/apt/debug
目录中生成 MainActivity_
文件
我正在使用以下版本:
- Android Studio 1.4.1
- Gradle 版本 1.3.0
- android-apt 1.4
- Android注释版本 3.3.2
If there should be a solution to this problem please tell me! Thanks!!
ADD:
I finally succeeded in generating a MainActivity_ file. Because my original order precompiled error cause can not be generated .I actually made a simple mistake, really is brain cramp. Thanks to every one who answered , feeling you help me eliminate confusion, thank you ! !
使用这个 .
activity android:name="com.dimon.org.androidannotation.MainActivity_"
更好的方法
- 更改您的 class 名称(重构) 并设置
MainActivity
然后
- 重建项目
- 正在清理项目
- 正在与 Gradle 个文件同步
- 关闭项目,关闭 AS 并重新启动/重新打开
- 文件 > 使缓存无效/重新启动
我决定将 AndroidAnnotations 与 Android Studio 一起使用,我想通过 Gradle.But 实现它 我遇到了一个错误 "Cannot resolve symbol 'MainActivity_'less...Validate resource references inside Android XML files."
我的版本:
targetSDKversion 22 + compileSdkVersion 22 + buildToolsVersion "22.0.1"
但是当我配置 Android Studio (1.4.1) 并修改 AndroidManifest.XML 配置文件时, 项目被提示去 wrong.Without my pre-processed class from my MainActivity
->MainActivity_
.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dimon.org.androidannotation" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity android:name=".MainActivity_" > //here
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
我想知道哪里出了问题
谢谢!!!
这里是 build.gradle(模块和项目)的一些代码。
编辑
分享build.gradle
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
def AAVersion = '3.3.2'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.dimon.org.androidannotation"
minSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.1'
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName 'com.dimon.org.androidannotation'
}
}
EDIT2
根目录build.gradle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
// 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.gradle配置没问题,就是不知道为什么会出错
非常感谢!!
Make Project.Why?
后,我的项目没有在generated/source/apt/debug
目录中生成 MainActivity_
文件
我正在使用以下版本:
- Android Studio 1.4.1
- Gradle 版本 1.3.0
- android-apt 1.4
- Android注释版本 3.3.2
If there should be a solution to this problem please tell me! Thanks!!
ADD:
I finally succeeded in generating a MainActivity_ file. Because my original order precompiled error cause can not be generated .I actually made a simple mistake, really is brain cramp. Thanks to every one who answered , feeling you help me eliminate confusion, thank you ! !
使用这个 .
activity android:name="com.dimon.org.androidannotation.MainActivity_"
更好的方法
- 更改您的 class 名称(重构) 并设置
MainActivity
然后
- 重建项目
- 正在清理项目
- 正在与 Gradle 个文件同步
- 关闭项目,关闭 AS 并重新启动/重新打开
- 文件 > 使缓存无效/重新启动