如何下载和使用PhonenumberUtil

时间:2014-10-21 01:33:36

标签: android eclipse eclipse-plugin libphonenumber

我发现这个库https://code.google.com/p/libphonenumber/并希望在我的项目中使用它,但是如何在Eclipse中安装/下载这个库以及如何在我自己的项目中使用它?

2 个答案:

答案 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'