logcat

send a broadcast from logcat

喜欢而已 提交于 2019-12-11 20:23:52
问题 how can i send broadcast from logcat result like send broadcast if activity start (it taged with activity manager) like if browser start the logcat will display that : 09-10 09:47:04.020: I/ActivityManager(2707): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity } from pid 2880 there are app in market do like what is ask for which called LogCatNotifier https://play.google.com/store/apps/details?id

OSGI Bundle using Android API is showing “java.lang.RuntimeException: Stub! at android.util.Log.d”

安稳与你 提交于 2019-12-11 19:34:25
问题 In my eclipse plugin project, I am trying to use the Android API. I am only showing a message on the LogCat. In addition to adding Android.jar to my class path, I prepared Android.jar as a bundle by follwing this link. So I did the following: 1- Writing the MANIFEST.txt which contains the following: Manifest-Version: 1.0 Created-By: myself Bundle-ManifestVersion: 2 Bundle-Name: android Bundle-Description: Package android in an OSGi bundle Bundle-Version: 4.4.0 Bundle-ClassPath: .,android.jar

Android/Eclipse: assistance with LogCat

五迷三道 提交于 2019-12-11 17:40:01
问题 I am building an Android app at the moment, but it keeps crashing. I am attempting to start an activity from an options menu. I have tried many different methods of starting the activity, but I get the same result each time at the startActivity. I have defined the activity in my Manifest file, and I can run the activity from a button, just not from onOptionsItemSelected. The error I am receiving is an ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord,Intent) error, so I went

FATAL EXCEPTION: GLThread 84: FileNotFoundException Android logcat errors [duplicate]

我与影子孤独终老i 提交于 2019-12-11 14:27:34
问题 This question already has answers here : FileNotFoundException Android logcat errors (3 answers) Closed 5 years ago . My game runs correctly when I test the desktop version, but when I launch an android emulator and and try to run the game on the emulator the game closes and I get the logcat errors: 10-28 08:00:53.528: E/AndroidRuntime(1203): FATAL EXCEPTION: GLThread 84 10-28 08:00:53.528: E/AndroidRuntime(1203): Process: com.mkgame.game1.android, PID: 1203 10-28 08:00:53.528: E

logcat error when running application in AndroidStudio

↘锁芯ラ 提交于 2019-12-11 13:48:42
问题 For some reason when I run the application and check logcat, it gives me this really long log. Is anything here really important that I should fix? This log starts to show as soon as I start the application. 09-23 12:15:56.742 0-939/? E/Netd﹕ Failed to open /proc/sys/net/ipv6/conf/default/optimistic_dad: No such file or directory 09-23 12:15:56.742 0-939/? E/Netd﹕ Failed to open /proc/sys/net/ipv6/conf/eth0/optimistic_dad: No such file or directory 09-23 12:15:56.742 0-939/? E/Netd﹕ Failed to

android.content.ActivityNotFoundException: Unable to find explicit activity class in Android

我的未来我决定 提交于 2019-12-11 12:24:39
问题 In MainActivity class , I have the following code to go to settings.class . Intent intent1 = new Intent(MainActivity.this,Settings.class); startActivity(intent1); But I have got exception . THe logcat shows the following error . 11-17 12:31:50.245: E/AndroidRuntime(11166): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.commlink.messaging/com.commlink.messaging.Settings}; have you declared this activity in your AndroidManifest.xml? 11-17 12:31:50.245: E

Filtering LogCat in ACRA by application and not using TAG

为君一笑 提交于 2019-12-11 10:16:52
问题 I am currently using ACRA for capturing errors and improving my application. I would like to filter in Logcat all logs generated due to my application running which includes not only those that my app generates, but also those that are generated by libraries used by app (like GooglePlay). Usually what I have seen suggested is filtering by TAG, but that will not allow me to see logs that I have not tagged (like, for instance, ACRA... ) There is a solution in eclipse where I can filter both

Android Logcat error

半城伤御伤魂 提交于 2019-12-11 09:55:36
问题 Anyone can tell me what's the reason behind this run-time error? java.lang.RuntimeException: Unable to instantiate activity ComponentInfo Caused by: java.lang.InstantiationException i'm trying to make a PDF reader app following Joe Blough's Android PDF Viewer library at GitHub: https://github.com/jblough/Android-Pdf-Viewer-Library. I followed everything and I end up with this error. 12-20 03:43:14.037: E/AndroidRuntime(29822): java.lang.RuntimeException: Unable to instantiate activity

What does this logcat error message mean?

Deadly 提交于 2019-12-11 09:46:21
问题 Hello stackoverflow Community, I'm new to android and i wonder what this error message means: 11-11 16:18:41.909 110-259/? E/SurfaceFlinger﹕ SurfaceFlinger translucent=0 isOpaque=1 isExternalDisplayLayer=0 isExternalBlockLayer0 11-11 16:18:41.909 110-259/? E/SurfaceFlinger﹕ SurfaceFlinger translucent=0 isOpaque=1 isExternalDisplayLayer=0 isExternalBlockLayer0 11-11 16:18:41.925 110-259/? E/SurfaceFlinger﹕ SurfaceFlinger translucent=1 isOpaque=0 isExternalDisplayLayer=0 isExternalBlockLayer0

Using Logcat to find where the line of code originates from

杀马特。学长 韩版系。学妹 提交于 2019-12-11 07:51:32
问题 Eclipse Kepler Service Release 2 Hello, This is using the Linphone source code that has been imported into Eclipse. I am trying find where the Push notification received line of code is. However, I can't find it anywhere in the Linphone source code. As I didn't write that log statement myself I don't know where it is. I would like to debug where the push notification is first received. Is there anyway finding this line of code from logcat? Many thanks for any suggestions, 回答1: It is on line