android-api-levels Questions
3
I increased the target API level of the project from 33 to 34. The build process was successful. When I ran it with the emulator in Visual Studio Xcode, it did not throw any errors. However, when t...
Extended asked 9/7 at 13:38
1
Solved
After upgrading to Android API level 34, our Android app's push notifications are blocked by default. I know this is in line with the newest changes from Android to use an "opt in" vs &qu...
Mall asked 19/10, 2023 at 12:45
1
Google recently announced that they are going to start restricting publishing Android apps that do not target recent API level versions. I support this change, but I need some special case exceptio...
Parnell asked 5/1, 2018 at 22:36
17
Solved
I want to change the minimum SDK version in Android Studio from API 12 to API 14. I have tried changing it in the manifest file, i.e.,
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVe...
Nutritious asked 19/10, 2013 at 10:31
1
Solved
I can run my Android app on AVDs with API levels below 29, but I cannot run my app on API levels 29 and above (e.g. Q, S, R, Tirasumi etc.).Error:
logs:
2023-07-01 21:50:20,520 [2416819] INFO - #c...
Lynseylynus asked 1/7, 2023 at 16:21
4
I got the following error while upload my app to google:
Your app currently targets API level 30 and must target at least API level 31 to ensure it is built on the latest APIs optimized for securit...
Loanloanda asked 3/10, 2022 at 13:49
0
We recently migrated my apps target SDK to 33, from that app links are not working fine in emulator but not working in real device
I googled about it and manually opted for web address in my device...
Danziger asked 11/1, 2023 at 14:3
3
Solved
I have various implementations of a partial class DeviceServices to provide platform specific implementations of certain device or OS specific features for Android, iOS and so on. My app is targeti...
Octangular asked 22/10, 2022 at 17:4
4
I implemented the text to speech in language "Hindi" Its an Indian language my application which is working fine till the API level 29.
Its working fine for English but not for the Hindi....
Electro asked 19/9, 2020 at 9:49
5
Solved
Every method I came across to hide status bar of my Android app is deprecated in Android 11.
Does anyone know about any current acceptable method?
Also I use Kotlin to develop my apps.
Replay asked 6/2, 2021 at 9:35
0
I created a new project use API 33 but some field is not found. While API 32 also finds it without issue. It gives a warning when I open it with API 33.
buid.gradle(My Application):
plugins {
id '...
Carnarvon asked 19/6, 2022 at 16:0
13
Solved
Working on android Java, recently updated SDK to API level 29 now there is a warning shown which states that
Environment.getExternalStorageDirectory() is deprecated in API level 29
My code is
pr...
Arnaud asked 19/7, 2019 at 16:23
4
Solved
I'm not able to access storage when building for targetSdkVersion v29.
Here is my gradle configuration:
compileSdkVersion 29
buildToolsVersion "29.0.2"
...
minSdkVersion 15
targetSdkVersion ...
Varioloid asked 17/10, 2019 at 10:8
4
Solved
ConnectivityManager.TYPE_WIFI is deprecated in Android P API 28. Also, NetworkInfo#getType and ConnectivityManager.TYPE_MOBILE's are also deprecated.
So, what are the alternatives for them? I unde...
Tolle asked 15/10, 2018 at 12:8
4
By code, I can make a button that inserts these 3 emojis into the text: ⚽️😈🐺
On many phones when the user clicks the button, though, the problem is that ⚽️😈🐺 displays as [X][X][X]. Or even wo...
Matrix asked 28/8, 2016 at 18:42
3
Solved
I used the getSize() method to get the screen sizes:
override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
val fragmentActivity = requireActivity()
...
val wm = fragmentActivity.get...
Undis asked 3/9, 2020 at 7:52
2
I’ve got a project in which I get the following Android lint warning:
Obsolete custom lint check
../../../../../../../.gradle/caches/transforms-2/files-2.1/fc4398fa701898f50fcec85691d33578/appcomp...
Templin asked 28/12, 2020 at 14:52
11
Is there any way to get the API version that the phone is currently running?
Dendriform asked 6/8, 2010 at 12:32
4
I have an app that functions exactly as desired on an actual device Nexus 6P running API 23 and an emulated 6P, 5 & 4 running API 24, but is showing odd behaviour wrt GridLayout on emulated Nex...
Towner asked 22/12, 2016 at 3:26
0
Just received an email from google play update that contains informations about the new target sdk requirements starting August 2021. it also mention this :
Apps that target Android 11 (API level ...
Anchor asked 23/11, 2020 at 8:39
2
Solved
I just tried updating the target and compile API level of our app to 29 (Android 10) and noticed that I cannot compile any more because LocationManager.addNmeaListener only accepts OnNmeaMessageLis...
Dichroscope asked 17/9, 2019 at 14:1
1
I have been trying to share one image from external storage and it is not working in API 29. the error message is: Permission denial, the file requires the provider be exported, or grantUriPermissi...
Gwendagwendolen asked 11/6, 2020 at 19:42
6
I have a problem when i try to upload my app to google play console and it is the API level that is must be 26 and my app is just developped with 23 version and now i don't know how to change this ...
Convenance asked 18/5, 2018 at 5:48
6
Solved
Android Studio doesn't redirect me to API sources correctly. When I hit any function it decompiles .class file bytecode instead of accessing the right file from sdk/sources tree.
Hitting "downloa...
Vaporescence asked 23/4, 2016 at 18:25
1
evaluatejavascript is available API-level 19 and later. It has a callback. I know that I can use loadUrl instead of evaluatejavascript for before API-level 19. But how can I handle return value fro...
Geminius asked 11/7, 2017 at 7:25
1 Next >
© 2022 - 2024 — McMap. All rights reserved.