我想开始为Android开发一个社交网络应用程序,我想知道你是否知道任何能使开发这种应用程序变得更容易的软件开发工具包或框架。如果有人能帮我做这件事,我将不胜感激谢谢
最佳答案
模块化,比SocialAuth Android更简单
您只需添加所选网络的依赖项并设置一点应用程序,而不必使用公共接口。
dependencies {
...
compile 'com.github.asne:asne-facebook:0.2.1'
compile 'com.github.asne:asne-twitter:0.2.1'
compile 'com.github.asne:asne-googleplus:0.2.1'
compile 'com.github.asne:asne-linkedin:0.2.1'
compile 'com.github.asne:asne-instagram:0.2.1'
compile 'com.github.asne:asne-vk:0.2.1'
compile 'com.github.asne:asne-odnoklassniki:0.2.1'
...
}
只需要从maven central中选择任何依赖项-这很简单
顺便说一下,它使用本地libs作为社交网络,因此您可以与安装的社交网络应用程序联系
关于android - Android社交网络sdk或框架,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23262716/