我正在尝试为现有的Android应用创建可穿戴应用。
使用Android Studio,我能够创建一个移动应用程序&可穿戴App一起。现在,我想在我现有的Android应用程序中使用这个可穿戴应用程序。
我们怎么做?
答案 0 :(得分:3)
将现有项目中的磨损模块克隆(或手动构建)作为新项目。
在settings.gradle
新模块中添加。
你应该有这样的东西:
include ':myApp', ':wear'
在您的应用中,您必须添加build.gradle
:
dependencies {
// your current dependencies
wearApp project(':wear')
// may be you have to use also gplay services lib. It depends by your app.
// compile 'com.google.android.gms:play-services-wearable:5.0.77'
}
注意包。 磨损和移动应用程序使用相同的包!