我有最新的 Android Studio 正在运行,我还让它运行我的第一个应用程序没有任何问题。
然后我想添加gson库在我的项目中使用,但我一定做错了,因为从那以后我的ap不再工作了,因为导入失败了:
import android.support.v7.app.ActionBarActivity;
我现在还在我的gson
文件中为gradle
添加了此内容:
dependencies {
compile 'com.google.code.gson:gson:2.3.1'
...
我做了:
但没有任何作用。
你知道我可能会混淆什么吗?
Thanx的帮助!!!
这些是文件: Build.gradle项目:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0-rc4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
Build.gradle(app):
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "xxxxx"
minSdkVersion 10
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.google.code.gson:gson:2.3.1'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.android.support:support-v4:21.0.2'
}
出现的错误是"无法解析符号' ActionBarActivity'"
在gradle同步之后,它看起来很好但是当我尝试运行我的项目时,ActionBarActivity再次无法识别......但它是在...之前...
#现在我删除了.iml文件和.idea文件夹并重新导入了我的项目。
它看起来不错,但是现在Android Studio无法在我的设备上安装.apk:
Failure [INSTALL_FAILED_INVALID_APK]
(所以我开了一个新问题......)