I wanted to start to develop a social network app for android , I wanted to know if you know any sdk or framework which make it easier to build such app.
I'll appreciate if anyone can help me with this
thanks
我想开始为Android开发一个社交网络应用程序,我想知道你是否知道任何sdk或框架,这使得构建这样的应用程序更容易。如果有人能帮助我,我将不胜感激
3 个解决方案
#1
5
Modular and more simple than socialauth-android is ASNE
模块化,比socialauth-android更简单是ASNE
You can just add dependency of chosen networks and setup a bit your application than use common interface.
您可以添加所选网络的依赖关系并设置您的应用程序,而不是使用通用接口。
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'
...
}
Just really choose any dependency from maven central - it's easy
真的从maven中心选择任何依赖 - 这很容易
By the way it uses native libs for social network, so you can contact with installed social networks apps
顺便说一下,它使用原生的libs进行社交网络,因此您可以联系已安装的社交网络应用程序
#2
2
Android library for authenticating, updating status and getting contacts with social networks
用于验证,更新状态和与社交网络建立联系的Android库
This link will help you. https://code.google.com/p/socialauth-android/
此链接将帮助您。 https://code.google.com/p/socialauth-android/
#3
0
Or you can try getsocialize.com, it provides pretty much everything you can ask for in social features for your apps.
或者您可以尝试使用getsocialize.com,它可以为您的应用提供社交功能所需的一切。
#1
5
Modular and more simple than socialauth-android is ASNE
模块化,比socialauth-android更简单是ASNE
You can just add dependency of chosen networks and setup a bit your application than use common interface.
您可以添加所选网络的依赖关系并设置您的应用程序,而不是使用通用接口。
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'
...
}
Just really choose any dependency from maven central - it's easy
真的从maven中心选择任何依赖 - 这很容易
By the way it uses native libs for social network, so you can contact with installed social networks apps
顺便说一下,它使用原生的libs进行社交网络,因此您可以联系已安装的社交网络应用程序
#2
2
Android library for authenticating, updating status and getting contacts with social networks
用于验证,更新状态和与社交网络建立联系的Android库
This link will help you. https://code.google.com/p/socialauth-android/
此链接将帮助您。 https://code.google.com/p/socialauth-android/
#3
0
Or you can try getsocialize.com, it provides pretty much everything you can ask for in social features for your apps.
或者您可以尝试使用getsocialize.com,它可以为您的应用提供社交功能所需的一切。