Questions tagged [android-developer-api]

API for android developers to access various settings

This tag mainly used to separate android developers API related.

Such as user setting and other APIs

List of APIs and classes for android developers :

Related Tags :

439 questions
0
votes
0 answers

Services class with specific time and Media Projection

I am preparing app that will continuously run in the background and send data at a specific time interval to MySQL database. App user should be able to set the time interval from the app. Option#1 - With Media Projection and using Services class -…
0
votes
0 answers

Able to log in Google Play Games, but not showing Leaderboard

We are developing a smartphone game with my team on Unity, and I'm currently trying to implement Google Play Games in our game, without success. Right now, the user can log in without issues (popup showing, and logcat says it's ok), but I can't…
0
votes
1 answer

Unable to Unpublish App

I am getting the following error when i try to unpublish my app from play store: Your app has an apk with version code 1427982169 that requests the following permission(s): android.permission.READ_PHONE_STATE. Apps using these permissions in an APK…
0
votes
5 answers

Failed to find:com.android.support:design:26.0.1

I want to use AppBarLayout and CoordinateLayout for my Android project so, I added compile 'com.android.support:design:26.0.1' to the gradle dependencies. But I'm getting an error all the time as Failed to find:com.android.support:design:26.0.1. and…
Mr. X
  • 19
  • 3
0
votes
1 answer

At onResume() how to identify if onPause() was called because of screen lock or app minimised

I have a binder service which binds at onResume. At onResume I want to check if the previous onPause was called because of app minimised or screen was lock by lock button. I have tried with ACTION_SCREEN_ON and ACTION_SCREEN_OFF and setting a…
0
votes
2 answers

How to run 2 intents in android at the same time?

I want to set two alarms in my app through intent.This is how the app should work, it should get time form the user and set alarm for that time +3 minutes.For instance, if the user wants to set an alarm for 8:30 it should set alarm for 8:30, and…
anjani
  • 45
  • 11
0
votes
2 answers

how to set color to share windows in android

My code : Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_SUBJECT,"TEXT DEMO"); sendIntent.putExtra(Intent.EXTRA_TEXT, "TEXT…
5ec20ab0
  • 742
  • 6
  • 15
0
votes
0 answers

When I release an android app in another country for a beta test, do the comments and reviews of the app follow to my app store?

Title pretty much says it all. I was hoping to release an android app in a low-risk environment where I could beta test in one country and then release in my home country. Do the ratings and reviews of the app transfer from one Google play store to…
0
votes
1 answer

Building Workspace has encountered an error in Eclipse

I'm using eclipse android version. It is Neon.3 and whenever I create a new android project, I get this error: Building Workspace has encountered a problem I searched everywhere on the internet but could not find a fix to this problem
Ashutosh
  • 1
  • 1
  • 1
0
votes
1 answer

Android: In App Billing returns only 1 purchase

I have added all of the products as managed products.When I'm querying getPurchases it returns only 1 items but when I'm querying getHistory than it returns 3 items I'm confused why it is happening? get purchases Code : Bundle ownedItems =…
Robin Royal
  • 1,788
  • 1
  • 18
  • 29
0
votes
1 answer

How to access the all key value?

All "long_name" value for all index of "address_Components" is not display. When using the path: path("results[0].address_components[].long_name") then test case is failed. I want to display all "long_name" value given in response. Please suggest…
0
votes
1 answer

Cannot upload apk to lg g5 through Android SDK

Previously I would just attach my Samsung Note 4 to my computer, have it in developer mode, APK uploaded from the SDK, no problem. I got a LG G5, developer mode on, allow installation from apps from sources other than Google Play Store, on,…
Never Nor
  • 377
  • 2
  • 16
0
votes
1 answer

How do I jump from Activity my google+login to Activity my custom homepage

I am using google+ login in my android app google+ login is working but want to navigate on my custom made homepage my google+ login code is on MainActivity.java. How do I navigate to my homepage(i.e Main_tab.java) after login. Here is my code for…
0
votes
3 answers

How to remove title bar in android api 22 and api 25?

I am using android studio 2.2.3. How can i remove title bar from my application? I am tried by putting
0
votes
1 answer

Android - External Memory Card is not writeable from my app

I need help in getting the attached memory card writable from my app. The android version I'm using is Marshmellow. I requested for runtime permission using the below code. if (ContextCompat.checkSelfPermission(this,…
Dipesh
  • 223
  • 1
  • 4
  • 11