Subscribe to library updates

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
SocialApi
http://www.b4x.com/android/forum/threads/socialapi-social-connect-using-multiple-providers.42532/

Update: 2.3
  • Restructured again into a single package after finding out how to properly use the #AdditionalRes directive to avoid conflict with other b4a libraries (ie AdMob)
  • Added: InstagramProvider
Provider specific changes

TwitterProvider
  • Added: TweetWithMedia method. You can now tweet with an attached file!
  • Added: Search method.
InstagramProvider
  • Added: Search method.
Important notes
  • Please update the sdks and the wrapper from the socialapi package and delete FacebookProvider, GooglePlusProvider, TwitterProvider and InstagramProvider jar+xml from your B4A libs folder.
  • GooglePlusProvider users should update the #AdditionalRes directive as shown below:
    B4X:
    #AdditionalRes: C:\b4a-dev\socialapi\googleplus\sdk\res,com.google.android.gms
 
Last edited:

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
SocialApi
http://www.b4x.com/android/forum/threads/socialapi-social-connect-using-multiple-providers.42532/

Update: 2.4

Most of the changes have overall minimized the code needed and made the application logic more b4a compliant.
  • [SocialApi] Added: BaseResult
  • [SocialApi] Changed: All provider results are now derived from BaseResult
  • [SocialApiProvider] Renamed: GetWithEvent to Initialize and BindWithEvent to InitializeAndBind
  • [SocialApiProvider] Removed: JustConnected, JustDisconnected, Failed properties
  • [SocialApiProvider] Added: Provider_Connected,Provider_Disconnected, Provider_Failed events and Ready property
  • [SocialApiProvider] Added: Upload method
  • [GooglePlusProvider] Changed: All calls return GoogleResult instead of Map which is derived from BaseResult
  • Added sample2 in socialapi\multiple\samples
  • Updated all samples with the new events
Download the precompiled sample1 APK
Download the precompiled sample2 APK




 
Last edited:

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
SocialApi
http://www.b4x.com/android/fo...ocial-connect-using-multiple-providers.42532/

Update: 2.51
  • [SocialApi] Fixed: Map object fixes that prevented proper access to Result.Map
  • [VkProvider] Added: Login permissions scopes: VkProvider.Login(Array as String(VkProvider.Constants.Permissions.FRIENDS))
  • [TwitterProvider] Added: Force always ask credentials parameter (boolean) in method TwitterProvider.Login
 

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
Last edited:

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
Last edited:

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User

corwin42

Expert
Licensed User
Longtime User
StdActionBarHelper library is updated to version 1.10

New Features:
- ActionMode for contextual ActionBar
- PopupMenu which will be a replacement to the AHQuickAction library.

With this new version of the library and a dirty hack it will be possible to create a modifiable menu for your Activities. I will write a tutorial for this in the next weeks.
 

MaFu

Well-Known Member
Licensed User
Longtime User
New MFLib version 1.05
http://www.b4x.com/android/forum/threads/mflib-functions-compilation-for-b4a.40172/

Enhancements in the parser lib.
The parser knows the following functions:
deg, rad, abs, acos, asin, atan, atan2, cbrt, ceil, constrain, cos, cosh, exp, floor, hypot, log, log10, map, max, min, pow, round, sin, sinh, sqrt, tan, tanh​
Variables can be set in formula and formulas can be combined:
x=2*2;y=sqrt(4);25/x+y​
User defined functions can be created, this functions raises an event on call (see example).
 

Informatix

Expert
Licensed User
Longtime User
Masked EditText

This version fixes a major bug on all Samsung devices. On these devices, the setting to enable/disable the dictionary-based candidates above the virtual keyboard is ignored by the Samsung code so I had to find a workaround to make it work. That was a bit tricky but, now, your password fields should display no suggestions.

v1.3:
- WithSuggestions works now as expected on Samsung devices.
- Suggestions are automatically disabled in password mode.
 

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
XtraViews

http://www.b4x.com/android/forum/threads/xtraviews.42827/

Update: 2.3
  • Added: DialogViewViews object with all known ViewWrapper members
  • Changed: DialogLayoutView.GetView and DialogView.GetView changed to DialogLayoutView.Views.Get and DialogView.Views.Get
Now you can get direct reference to a layout view without the need of casting:

Before:
B4X:
Dim Label1 as Label = DialogLayout.Views.Get("Label1")
Label1.Text = "hello!"

Now:
B4X:
DialogLayout.Views.Label("Label1").Text = "hello!"
 
Last edited:

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User

Periklis Koutsogiannis

Active Member
Licensed User
Longtime User
Cookies are required to use this site. You must accept them to continue using the site. Learn more…