我发现这个库https://code.google.com/p/libphonenumber/并希望在我的项目中使用它,但是如何在Eclipse中安装/下载这个库以及如何在我自己的项目中使用它?
答案 0 :(得分:1)
我认为你应该从这个链接下载它。 http://repo1.maven.org/maven2/com/googlecode/libphonenumber/libphonenumber/
将代码放入您的应用程序中。在活动程序中导入此包并使用它。
答案 1 :(得分:1)
与@stephen一样,您可以直接从this链接
下载最新版本的jar或强>
如果您想避免下载和导入包的麻烦,只需检查同一链接中的latest version number
并在build.gradle中将x.y.z
替换为
compile 'com.googlecode.libphonenumber:libphonenumber:x.y.z'
示例:截至今天(2017年4月12日),链接中的最新版本号为8.4.1,因此上面的行看起来像这样 -
compile 'com.googlecode.libphonenumber:libphonenumber:8.4.1'