三星 Note Edge 仅用于右侧边缘面板的应用程序很少,但我正在尝试从 Android Studio 创建一个项目,任何人都知道如何开始。我只看到可穿戴设备、谷歌眼镜、电视、手机和平板电脑的选项。
我得到了 SDK http://developer.samsung.com/samsung-mobile#look但我不确定应该如何集成它来启动应用程序。
我知道在没有尝试什么的情况下提出问题是一件坏事,但我在互联网上查看的文章并不多。
三星 Note Edge 仅用于右侧边缘面板的应用程序很少,但我正在尝试从 Android Studio 创建一个项目,任何人都知道如何开始。我只看到可穿戴设备、谷歌眼镜、电视、手机和平板电脑的选项。
我得到了 SDK http://developer.samsung.com/samsung-mobile#look但我不确定应该如何集成它来启动应用程序。
我知道在没有尝试什么的情况下提出问题是一件坏事,但我在互联网上查看的文章并不多。
When you unzip the Samsung Look SDK, you should find some .jar files in a folder called libs
. Copy those to your app's libs
directory (which Android Studio automatically creates) and they should be picked up by your gradle build. If not, check that you have this to your build.gradle
file:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// other dependencies here ...
}