About 100 developers at $1+ each to reach for example $100. KickStarter for library developers, I like it 
It is not strange.Dropbox is a bit of a strange example to give for a library. Dropbox provide a REST API so it can be implemented 100% in B4A. No need to resort to Java.
I am not saying its not possible using B4A. It works with a browser but to let you login through the Dropbox app you will need to work a lot harder. You will get a hacky working solution with webiew, but it will not be at par with other apps that use the Dropbox SDK.The Android library is mainly just a wrapper for the REST API. It's perfectly possible to implement OAuth2 using B4A. Once you have a client access token you don't need the user to log in each time.
Just came across your app. The features look promising, but I'm not going to try it until you add OAuth authentication, i.e. entering dropbox credentials in a separate window. I will not give away my dropbox password to a new app.
Forgive me, but getting it working barely and getting it working like it should are two different things. I would like to see your solution before I can agree with your point. Show me.I haven't done much with Dropbox. I did get OAuth2 working and uploading a file working in B4A. I do have Google Drive and Google Fusion table classes which are 100% implemented in B4A. The only non core library used is the WebViewXtended library.
Besides its an example, not an idea.Dropbox is a bit of a strange example to give for a library. Dropbox provide a REST API so it can be implemented 100% in B4A. No need to resort to Java.
Besides its an example, not an idea.
I will remove it if it is bothering you that much.
As I said before, it is not always a developer decision but also a UX decision. Users are more comfortable in native solutions. Jumping out of an app into a web browser and going back in is shitty UX, confusing, disorienting for a user and they will uninstall your app.More a case of I would expect people to want something that isn't natively achievable in B4A already. I get the impression that there are quite a lot of developers on here who don't realize that it's possible to implement a lot of Web API's with B4A alone. In theory that includes the Facebook API ; although I have not looked at it that closely it does say "The Graph API is HTTP based, so works with any language that has an HTTP library"
Admittedly it probably takes longer to write it form scratch in B4A but it does have advantage that you fully understand how the API is put together and that it makes it easier for others to suggest fixes for problems as there are (obviously) far more people on here who understand B4A code than Java.
As I said before, it is not always a developer decision but also a UX decision. Users are more comfortable in native solutions. Jumping out of an app into a web browser and going back in is shitty UX, confusing, disorienting for a user and they will uninstall your app.
Someone already has wrapped this library, not sure if it complies with their latest sdk, but you can check it out here http://www.b4x.com/android/forum/threads/appbrain-another-monetization-option.13197/#contentI like this thread, I wish I had seen this a month ago...
I don't know much about developing libraries but I think that this should be an easy one:
50$ fully functional appbrain applift library (latest SDK)
https://developers.appbrain.com/info/sdk
Send me a message for questions/details.
Also, please provide a working example on how to use it.
Thanks
Someone already has wrapped this library, not sure if it complies with their latest sdk, but you can check it out here http://www.b4x.com/android/forum/threads/appbrain-another-monetization-option.13197/#content
good luck.
As I said before, it is not always a developer decision but also a UX decision. Users are more comfortable in native solutions. Jumping out of an app into a web browser and going back in is shitty UX, confusing, disorienting for a user and they will uninstall your app.
Secondly, the SDKs deal with a lot of other error handling, queueing, QoS issues within the SDK.To take your examples further, when it comes to dropbox, I implemented only the necessary part i.e. the login mechanism as a library, the rest I all used REST in B4A.
For Facebook, we have NJDude's Facebook library based on graph and we have Periklis native library that implements the sign in. You should check the requests from people to judge what people want and require.
I can wrap this library, but 50 dollars to be honest i don't think is worth, specially when there's updates that will need to be done when a new sdk is released.
Think about it and let me know!
#Region Project Attributes
#ApplicationLabel: AppBrain Demo
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#End Region
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim ap As AppBrain
Dim EditText1 As EditText
Dim banner As AppBrainBanner
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Layout1")
ap.Initialize
ap.showInterstitial
' dont call offerWall method without autorization, or you don't get paid.
' via a button, it's Ok
Dim b As Button
b.Initialize("btnOffer")
b.Text=ap.getOfferWallButtonLabel
Activity.AddView(b,0,100%y-50dip,100%x,50dip)
ap.setOfferWallClickListener(b)
banner.Initialize("banner")
Activity.AddView(banner,0,100%y-150dip,100%x,100dip)
banner.Design=2
banner.requestAd
ap.getSetting("news","Hello(from the app)","event_remotesetting")
End Sub
Sub event_RemoteSetting(Setting As String,value As String)
Log(Setting & " " & value)
If Setting="news" Then
EditText1.Text=value
End If
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub banner_onAdRequestDone(result As Boolean)
Log("Banner onAdRequestDone : " & result)
End Sub
Sub banner_onClick
Log("Banner onClick")
End Sub
Thanks... I already saw that.
If you look at post #43, this library no longer works as of June 2013. There's mention that you can use appbrain through MoPub in the following posts, but I don't believe that this is the applift SDK. I think MoPub only supports banners and interstitial ads (from what the post said). I am interested in a library that supports banner, interstitial, remote settings, conversion event tracking, and offerwall without the preceding interstitial and without their approval (fully functional applift SDK).
All those details can be found on the link I provided above.
AppBrain.initApp(this);
Hi John, I am currently using the appbrain sdk but did not include direct offer wall button because my offer wall button includes offer walls from multiple networks not just appbrain. The banners themselves are also like offerwalls buttons, so no need to implement this in mopub.MoPub uses official AppBrain applift SDK , but only one method -
and of course banners and interstitials. If you want to use their another features as Remote Settings , Conversion Event Tracking , Direct Offerwall you can email AppBrain support about implementing these features for MoPub custom event class.B4X:AppBrain.initApp(this);
P.S. In our experience, the use of the interstitial gives up to 10x more revenue than other simple integrations using the offerwall directly (AppBrain official documentation)
update: I have looked into code and it seems that Conversion Tracking and Remote Settings can be implemented but certainly not direct offerwalls.
Regards
John