在Android Studio中编译简单的可穿戴应用程序 - 未找到WatchActivity

时间:2014-07-09 15:01:49

标签: android android-studio wear-os

我按照this link的说明在Android Studio中创建了一个简单的移动/可穿戴应用。但是,它无法识别任何特定于可穿戴SDK的类,从而导致错误无法解析符号 ______ "。 this link的屏幕截图正是我所看到的。

以下是我的build.gradle文件:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 20
    buildToolsVersion '20.0.0'
    defaultConfig {
         applicationId 'com.example.lsykora.androidwearwidget'
         minSdkVersion 'L'
         targetSdkVersion 'L'
         versionCode 1
         versionName '1.0'
}
buildTypes {
    release {
        runProguard false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-    rules.pro'
    }
}
productFlavors {}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
// You must install or update the Support Repository through the SDK manager to use      this dependency.
// You must install or update the Support Repository through the SDK manager to use this dependency.
compile 'com.android.support:support-v13:+'
compile 'com.google.android.support:wearable:+'
compile 'com.google.android.gms:play-services-wearable:+'
}

我已经使用SDK管理器安装了所有SDK,我尝试修改build.gradle文件中的最小,目标和编译SDK,将它们设置为19,20或Android- L,但我有相同的结果 - 程序因为这些无法识别的类而无法编译。任何输入都表示赞赏!感谢

1 个答案:

答案 0 :(得分:8)

不要延长WatchActivity(该课程实际上并不存在)。

Android Wear活动的基类只是标准Activity

(另外,如果您使用的是Android Studio 0.8.0,更新到0.8.1 - 0.8.0会在其模板中出现错误并使用extend WatchActivity创建新的活动,这实际上是无效的)。