Questions tagged [rate]

A measure, quantity, or frequency, typically one measured against some other quantity or measure.

A certain quantity or amount of one thing considered in relation to a unit of another thing and used as a standard or measure (e.g at the rate of 60 miles an hour).

489 questions
55
votes
9 answers

Android approach for "Rate my application"

Is there a best practice approach to prompt Android users to rate your application? Considering they could acquire it from Amazon.com or Google Marketplace what is the best route to handle this in a way that allows users to vote?
Keith Adler
  • 20,880
  • 28
  • 119
  • 189
54
votes
10 answers

Rate Google Play application directly in app

I need to make rate option in my android app. I found this link but I'm not sure that want I search. I want to just provide ability for users to rate my app on Google Play.
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
20
votes
4 answers

Use application to rate it on market

I am currently developing an application in Android Where I want to give some functionality to user to rate the current application. Their will be a button on it's click it will ask ask whether user want to rate the application or not? If yes…
Sandip Jadhav
  • 7,377
  • 8
  • 44
  • 76
20
votes
4 answers

Understanding histogram_quantile based on rate in Prometheus

According to Prometheus documentation in order to have a 95th percentile using histogram metric I can use following query: histogram_quantile(0.95, sum(rate(http_request_duration_seconds_bucket[5m])) by (le)) Source:…
evgeniy44
  • 2,862
  • 7
  • 28
  • 51
20
votes
2 answers

How to know if a specific user has rated a Android App?

In my android app i need implement a functionality that allow ask the user if he wish rate this app, if the response is "yes" i am going to redirect to androidmarket app, when the user already rated the app, the app shouldn't ask him for rate again.…
Jhon
  • 201
  • 1
  • 2
  • 3
20
votes
6 answers

Realtime currency webservice

Anyone know of a real-time currency rate webservice with frequent update (multiple pr. min.). Needed for a small android app I'm building, so needs to be free.
jaspernygaard
  • 3,098
  • 5
  • 35
  • 52
14
votes
3 answers

iOS HealthKit how to save Heart Rate (bpm) values? Swift

How to use : HKUnit Sample type Unit type Unit name Unit string Heart Rate count/time Beats per Minute "count/min”
Vinod Joshi
  • 7,696
  • 1
  • 50
  • 51
12
votes
1 answer

getting the highest GPS update rate from the GPS Hardware in my Android

I got to program Android from other platforms I used with GPS . on the other platfroms I had access to the GPS HW (I had a low level GPS driver) and by that I could get GPS updates 5 times per second and even more Now I work with Samsung Galaxy S2…
user2610687
  • 121
  • 1
  • 1
  • 3
11
votes
1 answer

Android How to get Google Play Store Link before release

I would like to release my app in a few days. In my app there is a rate-button where the user should be linked to the google play store. Is there an opportunity to add this function before releasing the app? Or do I have to release it and add an…
XxGoliathusxX
  • 922
  • 13
  • 34
10
votes
0 answers

Datadog: METRIC.as_rate() vs. per_second(METRIC)

I'm trying to figure out the difference between the in-application modifier as_rate() and the rollup function per_second(). I want a table with two columns: the left column shows the total number of events submitted to a Distribution (in…
10
votes
1 answer

In app review(FakeReviewManager) dialog not showing in android

There is a simple app in android studio written in kotlin.This is the following code in onCreate val manager = FakeReviewManager(baseContext) val request = manager.requestReviewFlow() request.addOnCompleteListener{ request -> if…
Brutal
  • 798
  • 1
  • 14
  • 37
10
votes
2 answers

Prometheus: how to rate a sum of the same counter from different machines?

I have a Prometheus counter, for which I want to get its rate on a time range (the real target is to sum the rate, and sometimes use histogram_quantile on that for histogram metric). However, I've got multiple machines running that kind of job, each…
Amir
  • 391
  • 2
  • 3
  • 10
10
votes
3 answers

Rate-Limit an API (spring MVC)

I'm looking the best more efficient way to implement (or use an already setup) rate limiter that would protect all my rest api url. the protection I'm looking at is a "call per second per user limiter" I had a look on the net and what comes out was…
Johny19
  • 5,364
  • 14
  • 61
  • 99
9
votes
1 answer

Android: Mixing multiple AudioTrack instances?

I need to run two instances of AudioTrack at the same time. They must run separately because I'm playing them at different, variable sample rates. I found that if I run them in the same thread, they "take turns". I'm running them each in their…
BTR
  • 4,880
  • 4
  • 24
  • 21
9
votes
1 answer

How to limit an Akka Stream to execute and send down one message only once per second?

I have an Akka Stream and I want the stream to send messages down stream approximately every second. I tried two ways to solve this problem, the first way was to make the producer at the start of the stream only send messages once every second when…
Phil
  • 46,436
  • 33
  • 110
  • 175
1
2 3
32 33