ASNE


Source link: https://github.com/gorbin/ASNE

Unfreeze project - merge all puls for master branch - current version was not tested - NOT STABLE

Sorry, but I freeze work on project for some time(I hope not long, nearly month) - too busy. I saw all Issues and will resolve them as soon as I can.

I checked project - current maven libs mostly works fine. For now I need help with Issues and open for pull requests - will check them and merge on weekends.

ASNE

ASNE library created for simple integration of social setworks to android applications. If you want to integrate your application with multiple social networks just choose ASNE modules and add them to your project. You just need to: add module, build SocialNetworkManager and configure your AndroidManiferst. ASNE contains common interface for most popular social networks, but you can easily make module for another.

ASNE contains modules for social networks:

  • Twitter
  • LinkedIn
  • Facebook
  • Google Plus
  • Instagram
  • Vkontakte
  • Odnoklassniki

Table of contents

Features
Documentation
Demo app
Getting started
Important
Developed By
License

Features

ASNE got almost all necessary requests to social networks

  • Login
  • Configure necessary permissions
  • Get Access Token
  • Get current person social profile
  • Get social profile of user by id
  • Get social profile for array of users
  • Get detailed user profile
  • Share message
  • Share photo
  • Share link
  • Request Share dialog with message/photo/link
  • Check is user(by id) is friend of current
  • Get list of Friends
  • Adding friends by id
  • Remove friend from friend list
  • Any request to chosen social network - you got full SDK/API

Documentation

Javadoc

Tutorial project on GitHub

Tutorial article on CodeProject

Demo app

Link for releases

Getting started

Adding library

1) Using Maven Central

Add dependency for chosen module, here example for all modules, you can choose one or two

dependencies {
 ...
  compile 'com.github.asne:asne-facebook:0.3.3'
  compile 'com.github.asne:asne-twitter:0.3.3'
  compile 'com.github.asne:asne-googleplus:0.3.3'
  compile 'com.github.asne:asne-linkedin:0.3.3'
  compile 'com.github.asne:asne-instagram:0.3.3'
  compile 'com.github.asne:asne-vk:0.3.3'
  compile 'com.github.asne:asne-odnoklassniki:0.3.3' ... 
}
 

2) Import module to your project

For example, in AndroidStudio you can add modules via Gradle:

  1. Copy social module to your project.
  2. In settings.gradle include ':ASNECore', ':socialNetworkModuleName'
  3. In build.gradle of your app (YOUR_PROJECT/app/build.gradle) add new dependencies: compile project(':socialNetworkModuleName')

Without Gradle, add ASNE like:

  1. Open Project Settings and choose Modules.
  2. Find button "Add" (+), and choose Import module
  3. Find ASNECore and socialNetworkModuleName directories - «Add».
  4. Choose Create module from existing sources, then click "Next" rename module from "main" to "ASNECore".
  5. Add new asne-module in dependencies to your app.

Using library

Firstly, you need to create app in social network. You can read about main steps:

Second, we need to catch response after login via social network login dialog:

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) {

  super.onActivityResult(requestCode, resultCode, data);

Fragment fragment = getSupportFragmentManager().findFragmentByTag(BaseDemoFragment.SOCIAL_NETWORK_TAG);

  if (fragment != null) {

 fragment.onActivityResult(requestCode, resultCode, data);

}

  
}

Then, you need to initialize mSocialNetworkManager, it contain common interface for all ASNE social network modules. Initialize chosen social network and add social network to SocialNetworkManager(example: FacebookSocialNetwork):

mSocialNetworkManager = (SocialNetworkManager) getFragmentManager().findFragmentByTag(SOCIAL_NETWORK_TAG);
  if (mSocialNetworkManager == null) {

mSocialNetworkManager = new SocialNetworkManager();

FacebookSocialNetwork fbNetwork = new FacebookSocialNetwork(this, fbScope);

//or from an activity
//FacebookSocialNetwork fbNetwork = new FacebookSocialNetwork(mSocialNetworkManager, this, fbScope);


mSocialNetworkManager.addSocialNetwork(fbNetwork);

getFragmentManager().beginTransaction().add(mSocialNetworkManager, SOCIAL_NETWORK_TAG).commit();
  
}

where fbScope is permissions for your app, for example I used:

ArrayList<String> fbScope = new ArrayList<String>();
 fbScope.addAll(Arrays.asList("public_profile, email, user_friends, user_location, user_birthday"));

Then you can send requests to social network like:

mSocialNetworkManager.getVKSocialNetwork().requestLogin(new OnLoginCompleteListener() {

  @Override

  public void onLoginSuccess(int socialNetworkID) {

}

@Override

  public void onError(int socialNetworkID, String requestID, String errorMessage, Object data) {

}

 
}
);

Or get Social network directly like:

 Session session = Session.getActiveSession();

Important

Facebook Upgrades

Facebook some permissions you can get only after Facebook submission, so my demo app wasn't submitted due low functionality. So if you want to use it with all functionality send me your facebook id and I add you as tester - this is easy way to to fully use demo app email: [email protected]

Apps are no longer able to retrieve the full list of a user's friends (only those friends who have specifically authorized your app using the user_friends permission) but if you add me as friend you will see me in friendlist( profile)

Developed By

ASNE developed on the basis of ( Android Social Networks) mostly redone and add new features(some features are pulled to Android Social Networks)

Evgeny Gorbin - [email protected]

License ===================== ASNE is made available under the MIT license: [MIT license]( http://opensource.org/licenses/MIT):
The MIT License (MIT)  Copyright (c) 2014 Evgrny Gorbin  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Resources

Nibo is a collection of useful widgets and drop in UIs for interacting with Google Places API.

Just another custom Android Toast.

A fully "functional" and easy to use android utility library.

CosmoCalendar is a fully customizable calendar with a wide variety of features and displaying modes.

Simple Android library for permissions request.

Why NoPermission:

  • Not a framework. It's just one class
  • Never ask again feature
  • Automatic check whether the permission is granted or not (don't need to check api version)
  • Fragments support

How to use

A Reactive Bus library.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes