The Android Runtime, or ART for short, is an Android runtime which was made available in Android 4.4 and is the default runtime in Android from 5.0 onward, superseding the Dalvik runtime. ART compiles app's bytecode to native code using the dex2oat on-device compiler suite and executes them.
Questions tagged [android-runtime]
175 questions
-1
votes
1 answer
Songs doesn't display instantly as soon as runtime permission is given
I'm a making a music app and I have created a function to load songs from the external storage. I have given the runtime permission for marshmallow but the problem is as soon as I grant the permission the songs are not displayed. But when i stop the…

Sebin Paul
- 169
- 1
- 15
-1
votes
1 answer
I'm trying to use GridView but the Android Studio notifies this error
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.admin.myapp_withgridview, PID: 2856
android.content.res.Resources$NotFoundException: String resource ID #0x5d75c80
at…

NUK
- 11
- 3
-1
votes
1 answer
SMS_Sending Blackberry 10 Android runtime?
I tried to repackage my Android App for Blackberry 10. It worked pretty well, but the app is unable to send a SMS.
my android code:
private void sendSMS(String phoneNumber, String message)
{
String SENT = "SMS_SENT";
String…

kartheeki j
- 2,206
- 5
- 27
- 51
-1
votes
2 answers
Null pointer exception on delete_btn
I am getting a null pointer exception at delete_btn.I am =mentioned the error line in below codes and I am posted the related coded to that.
Stacktrace:
12-22 10:03:59.897: E/AndroidRuntime(1505): FATAL EXCEPTION: main
12-22 10:03:59.897:…

User 10
- 129
- 5
- 11
-1
votes
2 answers
App crashes when launch can't get what happen and i also add all activity in manifest.xml
this is my layout file

Jainam Mehta
- 9
- 3
-2
votes
1 answer
Android App running fine via debugging installation but crashes in case of created app(android-debug.apk)
Application is crashing when apk is created and installed in my phone. But works fine when is run with usb debugging.
java.lang.RuntimeException: java.lang.NoSuchMethodException: [class android.view.View]
at…

learner
- 3
- 2
-2
votes
2 answers
onReqestPermissionResult not being called in android dynamic permission
i am trying to invoke the user to enable their write external storage permission at run time. i have used the below code. it shows the run time permission dialog. when i click allow or deny, it will doesn't call the onReqestPermissionResult (call…

Happy
- 1,031
- 10
- 26
-2
votes
2 answers
Android Marshmallow permissions?
I want to show permission prompt where user can accept the access of that permission,Like i want to access users contacts so i want to show prompt with two option allow and deny any example and source code.

Nishant Gupta
- 457
- 3
- 16
-3
votes
2 answers
Android Runtime and Android Native Interface
According to wiki (http://en.wikipedia.org/wiki/Android_Runtime) Dalvik gets entirely replaced by ART in Lollipop i.e. from that release onwards any app will be compiled to native code upon installation. This begs the question, is there a point in…

spc16670
- 504
- 6
- 15
-5
votes
2 answers
Android M runtime permission
Am developing android runtime permissions. I have done all parts. But am frustrated with one thing.
I want to know the specific permission was already denied with never ask again or not.
Surely we can get the result once we calling this below API
…

Naveen Kumar Kuppan
- 1,424
- 1
- 10
- 12