本文介绍了添加pebblekit库到Android工作室的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我是pretty新到Android工作室,所以我真的不知道如何将一个库(不是一个jar文件,只是一个普通的目录)添加到我的Android项目。更确切地说它是我试图添加pebblekit库。
I'm pretty new to Android Studio so I don't really know how to add a library (not a jar file, just a normal directory) to my android project. More exactly it's the pebblekit library I'm trying to add.
我一直在努力,而现在该做的我自己一个良好的和各地的互联网搜索W / O什么好结果。我使用Android的工作室0.4.2。
I've been trying to do this myself for a good while now and searching around internet w/o any good results. I'm using 0.4.2 of Android Studio.
也许有人能告诉我该怎么办?
Maybe someone can tell me what to do?
推荐答案
想通了基于关闭的this这里问题
- 从卵石SDK集成到Android Studio中导入了Android PebbleKit项目。
- 关闭导入的项目,然后打开您正在使用的人。
- 在您的项目中创建了库文件夹
- 对于进口PebbleKit复制目录复制到库文件夹中,并将其重命名为PebbleKit
- 添加
包括':库:PebbleKit。
来YOUT settings.gradle文件| - 打开你的模块设置,为您的应用
- 在添加一个模块依赖的库:PebbleKit
- Import the Android PebbleKit project from the pebble sdk into Android Studio.
- Close the imported project and open the one you were working on.
- Create a libraries folder in your project
- Copy the directory for the imported PebbleKit into the libraries folder and rename it to PebbleKit
- Add
include ':libraries:PebbleKit'
to yout settings.gradle file.| - Open your module settings for your application
- Under add a module dependency for the libraries:PebbleKit
这篇关于添加pebblekit库到Android工作室的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!