Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have an app where there is a login page, and after logging in there is an activity where it shows the Username, a profile picture, and some other strings related to the user, that I get from a firebase database. Should the process of downloading that information be done using AsyncTask?
No. If you use firebase SDK they delegate job to background thread, so AsyncTask is not necessary.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
**I have implement in app purchase in to my app and I want to get details of already purchase subscription's sku data and currant status.
with this data I want to use for proration and cancel
is there any way to find this**
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
how can I create a simple app that retrieve any data from server, I am stuck I don't know how I can start if anyone can help me?
You can use ktor, which is a networking library from Jetbrains. See an example here:
https://github.com/touchlab/KaMPKit/blob/kpg/ktor_hack/shared/src/commonMain/kotlin/co/touchlab/kampkit/ktor/DogApiImpl.kt#L38
The request needs to be made on the main thread in native, just FYI.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am creating an application, I want to add internet permissions in my app I have also added in build.gradle, But my application also opening without internet I want to add firebase like data should be loaded from firebase
How can I Achieve that ?
Sorry for bad English
Without context for your use case, it is probably best you look at the docs for Realtime Database offline support and Firestore offline support
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
There are two app
1) database app
2) contact app
I want to use database of database app in contact app.how will it be done.
I would suggest to use a content provider. Take a look here:
http://developer.android.com/guide/topics/providers/content-providers.html
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to retrieve application details like category, price, ratings etc information and display in my list view. How can I get these details of an app? or Is there any way to retrieve all these info of an app depending on package name programmability
Don't think that Google has officially API for that.
But you can try this.
Or you can write your own parser of html page.