JP Ventura

Results 18 comments of JP Ventura

@BillBosiolis, I try to follow the approach presented at [Google I/O 2010 talk "Android REST client applications"](https://www.youtube.com/watch?v=xHXn3Kg2IQE), which is the same approach used by [Udacity Android Nanodegree course](https://www.youtube.com/watch?v=xHXn3Kg2IQE). Basically you...

Google made available a [sample application](https://github.com/googlesamples/android-architecture) that compares MVP implemented using different approaches, including [content providers](https://github.com/googlesamples/android-architecture/tree/todo-mvp-contentproviders), [dagger](https://github.com/googlesamples/android-architecture/tree/todo-mvp-dagger) and [clean architecture](https://github.com/googlesamples/android-architecture/tree/todo-mvp-clean). It may be a good place to get some insights...

@BillBosiolis, after many months, I would dare to say that content provider is the framework implementation of repository pattern (issue #229 and [Stack Overflow](http://stackoverflow.com/questions/43258773/is-content-provider-an-implementation-of-repository-pattern) post). @joaocsousa, content provider uses the...

@Joy-Whale, according to [_ECB Pattern_](http://epf.eclipse.org/wikis/openuppt/openup_basic/guidances/concepts/entity_control_boundary_pattern,_uF-QYEAhEdq_UJTvM1DM2Q.html), _the boundary is related to **one and only one use case**_ (or control object, as originally named by [Jacobson](https://amzn.com/0201544350)) that consume other use cases. ![image011](http://www.cs.unb.ca/~wdu/cs2013f05/a7ans_files/image011.gif)...

@Zireck During [Clean Architecture and Design](https://www.youtube.com/watch?v=Nsjsiz2A9mg&feature=youtu.be&t=15m45s) presentation, Robert Marting states: _You could take that use case (or interactor) and put it into an object (... that) encodes the processing rules._...

@IonutNegru87 this text was originally published at [Five Agency](http://five.agency/android-architecture-part-4-applying-clean-architecture-on-android-hands-on/) series about Clean Architecture. ![Modules Organization](http://five.agency/wp-content/uploads/2017/06/graf_2_B-1.png) ### Presentation This module is already created for you by the Android studio when you...

@bpappin https://github.com/jpventura/FirebaseAccountAuthenticator. I refactored @udinic app to Firebase 3.

@samtstern, @bpappin I am still trying to solve the password store issue. Even calling [`AccountManager.peekAuthToken`](https://developer.android.com/reference/android/accounts/AccountManager.htm) immediatly after the token be saved, it returns `null`.

@bpappin TL; DR --------- - I have sent a [PR](https://github.com/Udinic/AccountAuthenticator/pull/14) to @udinic migrating his app from Parse to Firebase. - [`AccountAuthenticatorActivity`](https://github.com/jpventura/FirebaseAccountAuthenticator/blob/master/accountAuthenticator/src/main/java/com/udinic/accounts_authenticator_example/authentication/AccountAuthenticatorActivity.java) inherits from [`AppCompatActivity`](https://developer.android.com/reference/android/support/v7/app/AppCompatActivity.html) - The example no longer stores...

@seratch I tried exactly this call and the icon and name change does not happen. The permission was added to the bot, but it does not seems to work on...