我的根build.gradle
文件中有这个:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
}
并在应用程序build.gradle
文件中:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.company.app"
minSdkVersion 14
targetSdkVersion 21
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.0'
//more third-party libraries
}
这是我的布局:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="user"
type="com.company.app.models.LoginCredentials"/>
</data>
<EditText
android:layout_width="match_parent"
android:layout_height="55dp"
android:text="@{user.username}"/>
<!-- More layouts and widgets -->
</layout>
但我得到这个错误:
错误:(82, 35) 未指定资源类型(在“文本”处,值为“@{user.username}”)。
我试图把:
dataBinding {
enabled = true
}
但我得到了另一个错误:
错误:找不到 com.android.databinding:library:1.0-rc3。
我能怎么做?我刚刚将 Android Studio 更新到 v1.5.1。