HELP.. how can i find activity title for apps - Android

hey guys ,i need HELP.on trying to get the . activity title, the package name of the application and the activity itself. for some apps on my SG3
what app can i use to see this

Code:
adb shell cat /data/system/packages.list
Not sure what you are really trying to do.

trying to get an icon pack going but some of my icons are not changing on my galaxy s3
here is an screen
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
https://www.dropbox.com/s/t4eczctv9yrazpe/Screenshot_2012-09-24-14-39-46-picsay.jpg
lithid-cm said:
Code:
adb shell cat /data/system/packages.list
Not sure what you are really trying to do.
Click to expand...
Click to collapse

Neffstarr said:
trying to get an icon pack going but some of my icons are not changing on my galaxy s3
here is an screen
https://www.dropbox.com/s/t4eczctv9yrazpe/Screenshot_2012-09-24-14-39-46-picsay.jpg
Click to expand...
Click to collapse
You will have to use apktool and open the apks, check the AndroidManifest.xml
Find the android:icon element and that will be the activity.
Code:
<activity android:name="SimContacts"
android:label="@string/simContacts_title"
android:theme="@style/SimImportTheme"
android:screenOrientation="portrait"
android:icon="@mipmap/ic_launcher_contacts">
@mipmap/ic_launcher_contacts is the image for the com.android.phone.SimContacts.
hope that helps.
You can also use adb to find the name for an icon. Just start the command from below and watch the screen as you press the icon. The activity will be there.
Code:
[email protected]:~$ adb logcat |grep " START " |grep LAUNCHER
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity bnds=[565,1040][702,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 pkg=org.wordpress.android cmp=org.wordpress.android/.Dashboard bnds=[532,585][704,796] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity bnds=[565,1040][702,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity bnds=[565,1040][702,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.mms/.ui.ConversationList bnds=[428,1040][565,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.mms/.ui.ConversationList bnds=[428,1040][565,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.google.android.apps.currents/com.google.apps.dots.android.app.activity.CurrentsStartActivity bnds=[16,585][188,796] u=0} from pid 29787

thanks i appreciate your time sir
maKE sure u scoop up some free walls on my link
lithid-cm said:
You will have to use apktool and open the apks, check the AndroidManifest.xml
Find the android:icon element and that will be the activity.
Code:
<activity android:name="SimContacts"
android:label="@string/simContacts_title"
android:theme="@style/SimImportTheme"
android:screenOrientation="portrait"
android:icon="@mipmap/ic_launcher_contacts">
@mipmap/ic_launcher_contacts is the image for the com.android.phone.SimContacts.
hope that helps.
You can also use adb to find the name for an icon. Just start the command from below and watch the screen as you press the icon. The activity will be there.
Code:
[email protected]:~$ adb logcat |grep " START " |grep LAUNCHER
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity bnds=[565,1040][702,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 pkg=org.wordpress.android cmp=org.wordpress.android/.Dashboard bnds=[532,585][704,796] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity bnds=[565,1040][702,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.browser/.BrowserActivity bnds=[565,1040][702,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.mms/.ui.ConversationList bnds=[428,1040][565,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.android.mms/.ui.ConversationList bnds=[428,1040][565,1168] u=0} from pid 29787
I/ActivityManager( 337): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.google.android.apps.currents/com.google.apps.dots.android.app.activity.CurrentsStartActivity bnds=[16,585][188,796] u=0} from pid 29787
Click to expand...
Click to collapse

Related

Logcat for Java Developer slove this pls

I posted a Logcat for java.
Don't know what problem.
Solve this problem pls.
Code:
oid.jbed/.ams.AmsActivity }
I/ActivityManager( 1163): Start proc com.esmertec.android.jbed for activity com.
esmertec.android.jbed/.ams.AmsActivity: pid=4942 uid=10118 gids={3003, 1006, 101
5}
I/ActivityThread( 4942): Publishing provider jbed: com.esmertec.android.jbed.Jbe
dProvider
I/ActivityManager( 1163): Start proc com.esmertec.android.jbed:remote for servic
e com.esmertec.android.jbed/.service.JbedService: pid=4949 uid=10118 gids={3003,
1006, 1015}
I/ActivityManager( 1163): Displayed activity com.esmertec.android.jbed/.ams.AmsA
ctivity: 570 ms (total 570 ms)
I/ActivityManager( 1163): Stopping service: com.tni.TasKillerFull/.TasKillerLaun
cher
W/ActivityManager( 1163): Timeout executing service: ServiceRecord{2ff694a8 com.
esmertec.android.jbed/.service.JbedService}
I/ActivityManager( 1163): Process com.esmertec.android.jbed:remote (pid 4949) ha
s died.
W/ActivityManager( 1163): Scheduling restart of crashed service com.esmertec.and
roid.jbed/.service.JbedService in 5000ms
I/ActivityManager( 1163): Start proc com.esmertec.android.jbed:remote for servic
e com.esmertec.android.jbed/.service.JbedService: pid=4970 uid=10118 gids={3003,
1006, 1015}

[Q] Simple Service Force Stopping Package

OS: Ice Cream Sandwich
Device: Motorola Xoom
I am having issues with a simple service not running correctly.
The logcat shows some force stopping on the installed apk. Also the broadcast receiver should listen to android.intent.action.ACTION_POWER_CONNECTED but it is not. Any insight?
This all worked on froyo 2.2 on a samsung galaxy tab.
Here is the snippet from logcat when I do an 'adb install testService.apk:
Code:
D/AndroidRuntime(15251):
D/AndroidRuntime(15251): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime(15251): CheckJNI is OFF
D/AndroidRuntime(15251): Calling main entry com.android.commands.pm.Pm
I/ActivityManager( 153): Start proc com.android.defcontainer for service com.android.defcontainer/.DefaultContainerService: pid=15261 uid=10010 gids={1015, 2001}
W/PackageManager( 153): Couldn't get low memory threshold; no free limit imposed
W/ActivityManager( 153): No content provider found for permission revoke: file:///data/local/tmp/testService.apk
W/ActivityManager( 153): No content provider found for permission revoke: file:///data/local/tmp/testService.apk
I/PackageManager( 153): Running dexopt on: com.example.testservice
D/dalvikvm(15275): DexOpt: load 4ms, verify+opt 1ms
I/ActivityManager( 153): Force stopping package com.example.testservice uid=10014
D/PackageManager( 153): New package installed in /data/app/com.example.testservice-1.apk
D/PackageManager( 153): generateServicesMap(android.accounts.AccountAuthenticator): 3 services unchanged
D/PackageManager( 153): generateServicesMap(android.content.SyncAdapter): 11 services unchanged
I/ActivityManager( 153): Start proc com.android.voicedialer for broadcast com.android.voicedialer/.VoiceDialerReceiver: pid=15276 uid=10037 gids={3002}
W/ResourceType( 153): Failure getting entry for 0x7f060000 (t=5 e=0) in package 0 (error -75)
D/dalvikvm( 153): GC_CONCURRENT freed 1216K, 16% free 9901K/11783K, paused 3ms+7ms
D/dalvikvm(15276): Debugger has detached; object registry had 1 entries
D/BackupManagerService( 153): Received broadcast Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.example.testservice flg=0x10000010 (has extras) }
V/BackupManagerService( 153): addPackageParticipantsLocked: com.example.testservice
I/ActivityManager( 153): Start proc com.android.musicfx for broadcast com.android.musicfx/.Compatibility$Receiver: pid=15289 uid=10022 gids={3003, 3002}
I/ActivityManager( 153): Start proc com.svox.pico for broadcast com.svox.pico/.VoiceDataInstallerReceiver: pid=15303 uid=10025 gids={1015}
I/ActivityThread(15303): Pub com.svox.pico.providers.SettingsProvider: com.svox.pico.providers.SettingsProvider
I/ActivityManager( 153): Start proc com.google.android.partnersetup for broadcast com.google.android.partnersetup/.RlzPingBroadcastReceiver: pid=15318 uid=10049 gids={3003}
I/ActivityManager( 153): No longer want com.google.android.googlequicksearchbox (pid 1229): hidden #16
I/ActivityThread(15318): Pub com.google.android.partnersetup.rlzprovider: com.google.android.partnersetup.RlzProvider
I/ActivityThread(15318): Pub com.google.android.partnersetup.rlzappprovider: com.google.android.partnersetup.RlzAppProvider
D/dalvikvm( 153): GC_EXPLICIT freed 538K, 17% free 9866K/11783K, paused 2ms+11ms
D/AndroidRuntime(15251): Shutting down VM
I/AndroidRuntime(15251): NOTE: attach of thread 'Binder Thread #3' failed
D/dalvikvm(15251): GC_CONCURRENT freed 101K, 83% free 457K/2560K, paused 1ms+0ms
D/jdwp (15251): Got wake-up signal, bailing out of select
D/dalvikvm(15251): Debugger has detached; object registry had 1 entries
I/ActivityManager( 153): Start proc com.google.android.googlequicksearchbox for broadcast com.google.android.googlequicksearchbox/.SourceUpdateReceiver: pid=15333 uid=10048 gids={3003}
I/ActivityManager( 153): No longer want com.android.bluetooth (pid 1661): hidden #16
W/ActivityManager( 153): Scheduling restart of crashed service com.android.bluetooth/.pbap.BluetoothPbapService in 5000ms
W/ActivityManager( 153): Scheduling restart of crashed service com.android.bluetooth/.opp.BluetoothOppService in 14999ms
I/ActivityThread(15333): Pub com.google.android.googlequicksearchbox.shortcuts: com.google.android.googlequicksearchbox.WebHistoryProvider
I/ActivityThread(15333): Pub com.google.android.googlequicksearchbox.google: com.google.android.googlequicksearchbox.google.GoogleSuggestionProvider
I/ActivityManager( 153): No longer want com.google.android.apps.uploader (pid 3836): hidden #16
I/ActivityManager( 153): Start proc com.android.bluetooth for service com.android.bluetooth/.pbap.BluetoothPbapService: pid=15354 uid=10003 gids={3003, 3002, 3001, 1015}
I/ActivityThread(15354): Pub com.android.bluetooth.opp: com.android.bluetooth.opp.BluetoothOppProvider
I/ActivityManager( 153): No longer want com.android.browser (pid 1455): hidden #16
I/BtOppRfcommListener(15354): Accept thread started on channel 12
W/PowerUI ( 225): unknown intent: Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x10000010 }
D/dalvikvm( 225): GC_CONCURRENT freed 384K, 61% free 7755K/19399K, paused 6ms+4ms
W/PowerUI ( 225): unknown intent: Intent { act=android.intent.action.ACTION_POWER_CONNECTED flg=0x10000010 }
D/dalvikvm( 153): GC_CONCURRENT freed 781K, 17% free 9810K/11783K, paused 8ms+5ms
D/Smack ( 298): [[email protected]] create socket connection(mtalk.google.com, 5228)
Here is my broadcastReciever.
Code:
package com.example.testservice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class myApplicationReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Log.i("TESTING-receiver",intent.getAction());
}
}
and here is my manifest:
Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testservice"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="15" />
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme">
<receiver android:name="myApplicationReceiver">
<intent-filter>
<action android:name="android.intent.action.ACTION_POWER_CONNECTED"/>
</intent-filter>
</receiver>
</application>
</manifest>
Questions or Problems Should Not Be Posted in the Development Forum
Please Post in the Correct Forums & Read the Forum Rules
Thanks ✟
Moving to Q&A

SnapChat recording FC

Hi guys,
I have some problems with Snapchat, not taking a picture but making a clip,
When I hold it the app freezes, and then fc and then my camera doesn't work (for all camera apps), until
I reboot. I only get this when I am on a custom Rom. I don't know how to take a logcat.
I tried other kernel, Dorimanx, but still doesn't work
Device info:
Device: Samsung Galaxy S2 GT-i9100
Rom: SlimBean unofficial A.K.A SlimSaber from FusionJack (4.3.1)
Kernel: Stock
anybody?
here is a logcat:
11-04 12:28:37.640 I/SELinuxMMAC(2205): package (com.snapchat.android) installed with seinfo=default
11-04 12:29:00.910 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 12:29:00.945 I/ActivityManager(2205): Start proc com.snapchat.android for activity com.snapchat.android/.LandingPageActivity: pid=3532 uid=10059 gids={50059, 3003, 1015, 1023, 1006, 1028}
11-04 12:45:50.348 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 12:48:32.813 I/ActivityManager(2205): Force stopping package com.snapchat.android appid=10059 user=0
11-04 12:48:32.818 I/ActivityManager(2205): Killing proc 3532:com.snapchat.android/u0a10059: force stop com.snapchat.android
11-04 12:48:32.818 W/ActivityManager(2205): Force removing ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}: app died, no saved state
11-04 12:48:32.933 W/WindowManager(2205): This window was lost: Window{422a0a60 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}
11-04 12:48:32.933 W/WindowManager(2205): mOwnerUid=10059 mShowToOwnerOnly=true package=com.snapchat.android appop=NONE
11-04 12:48:32.933 W/WindowManager(2205): mToken=AppWindowToken{42460ca0 token=Token{42297200 ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}}}
11-04 12:48:32.933 W/WindowManager(2205): mRootToken=AppWindowToken{42460ca0 token=Token{42297200 ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}}}
11-04 12:48:32.933 W/WindowManager(2205): mAppToken=AppWindowToken{42460ca0 token=Token{42297200 ActivityRecord{42289c58 u0 com.snapchat.android/.LandingPageActivity}}}
11-04 12:48:32.933 W/WindowManager(2205): WindowStateAnimator{426e3fe0 com.snapchat.android/com.snapchat.android.LandingPageActivity}:
11-04 12:48:32.933 W/WindowManager(2205): mSurface=Surface(name=com.snapchat.android/com.snapchat.android.LandingPageActivity)
11-04 12:48:32.973 I/WindowState(2205): WIN DEATH: Window{422a0a60 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}
11-04 20:12:21.348 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 20:12:21.568 I/ActivityManager(2205): Start proc com.snapchat.android for activity com.snapchat.android/.LandingPageActivity: pid=10321 uid=10059 gids={50059, 3003, 1015, 1023, 1006, 1028}
11-04 20:12:30.378 D/dalvikvm(10321): Trying to load lib /data/app-lib/com.snapchat.android-1/libphotoeffect.so 0x421b7430
11-04 20:12:30.383 D/dalvikvm(10321): Added shared lib /data/app-lib/com.snapchat.android-1/libphotoeffect.so 0x421b7430
11-04 20:12:59.663 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:33:32.603 I/ActivityManager(2205): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.snapchat.android/.LandingPageActivity bnds=[14,488][97,581]} from pid 2659
11-04 20:33:33.828 I/ActivityManager(2205): Displayed com.snapchat.android/.LandingPageActivity: +1s208ms
11-04 20:34:07.863 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:34:45.113 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:42:49.003 W/GTalkService(2560): [DataMsgMgr] broadcast intent callback: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE pkg=com.snapchat.android (has extras) }
11-04 20:46:44.743 I/InputDispatcher(2205): Application is not responding: Window{4234ace0 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}. It has been 5005.2ms since event, 5004.7ms since wait started. Reason: Waiting because the touched window has not finished processing the input events that were previously delivered to it.
11-04 20:46:44.743 I/WindowManager(2205): Input event dispatching timed out sending to com.snapchat.android/com.snapchat.android.LandingPageActivity
11-04 20:46:46.078 E/ActivityManager(2205): ANR in com.snapchat.android (com.snapchat.android/.LandingPageActivity)
11-04 20:46:46.078 E/ActivityManager(2205): 6.8% 10321/com.snapchat.android: 5.2% user + 1.6% kernel / faults: 197 minor
11-04 20:46:46.078 E/ActivityManager(2205): 1.3% 10321/com.snapchat.android: 0% user + 1.3% kernel
11-04 20:46:46.198 I/DEBUG (1850): pid: 10321, tid: 10321, name: napchat.android >>> com.snapchat.android <<<
11-04 20:46:48.353 W/ActivityManager(2205): Force finishing activity com.snapchat.android/.LandingPageActivity
11-04 20:46:48.378 W/ActivityManager(2205): Force finishing activity com.snapchat.android/.LandingPageActivity
11-04 20:46:48.378 W/ActivityManager(2205): Duplicate finish request for ActivityRecord{422d6ed0 u0 com.snapchat.android/.LandingPageActivity}
11-04 20:46:48.543 W/InputDispatcher(2205): channel '4234ace0 com.snapchat.android/com.snapchat.android.LandingPageActivity (server)' ~ Consumer closed input channel or an error occurred. events=0xd
11-04 20:46:48.543 E/InputDispatcher(2205): channel '4234ace0 com.snapchat.android/com.snapchat.android.LandingPageActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
11-04 20:46:48.548 I/ActivityManager(2205): Process com.snapchat.android (pid 10321) has died.
11-04 20:46:48.553 W/InputDispatcher(2205): Attempted to unregister already unregistered input channel '4234ace0 com.snapchat.android/com.snapchat.android.LandingPageActivity (server)'
11-04 20:46:48.553 I/WindowState(2205): WIN DEATH: Window{4234ace0 u0 com.snapchat.android/com.snapchat.android.LandingPageActivity}
I got the same problem with certain roms, it's got something to do with the navigation bar, if your room allows for you to have one and you have it emabled then that's most likely the problem, you can enable expanded desktop on your power menu and just enable it whenever you use it, another option would be if your rom has settings to do per app dpi then most likely you can do per app enable/disable navigation bar, my current rom does not have that option, I've come to like my rom a lot and that is the only downside, I'm searching for a way to do per app enable/disable navigation bar perhaps thru an exposed module but haven't had any luck finding anything, I like my nav bar but I find it annoying having to switch my expanded desktop on and off whenever I use snapchat, well good luck hope I was of some help
As @gothikzoul said, it seems like a problem that occurs with certain roms, you can try another rom or try the workaround he mentioned, you can also report the bug to the rom dev with your logcat.
Dakura said:
As @gothikzoul said, it seems like a problem that occurs with certain roms, you can try another rom or try the workaround he mentioned, you can also report the bug to the rom dev with your logcat.
Click to expand...
Click to collapse
already did send a logcat, i love SlimSaber by FusionJack I don't want to go a other rom so ya :silly:
anyway thnx for the response guys :highfive: @Dakura why aren't you a Forum admin you are very active and helpfull

Tinder force closing

I'm having issue with my tinder app force closing right away when I open the app. Can someone help me with this issue? Here is my logcat:
build.board: MSM8974
build.bootloader: unknown
build.brand: lge
build.cpu_abi: armeabi-v7a
build.cpu_abi2: armeabi
build.device: g3
build.display: SkyDragon G3 2.0.1 - KVT49L.VS98512B
build.fingerprint: lge/g3_vzw/g3:4.4.2/KVT49L.VS98512B/VS98512B.1414669625:user/release-keys
build.hardware: g3
build.host: SkyDragon
build.id: KVT49L.VS98512B
build.manufacturer: LGE
build.model: VS985 4G
build.product: g3_vzw
build.radio: unknown
build.serial: VS9854G55f08d4f
build.tags: release-keys
build.time: 1414670212000
build.type: user
build.user: HolyAngel
version.codename: REL
version.incremental: VS98512B.1414669625
version.release: 4.4.2
version.sdk_int: 19
02-12 09:33:10.321 I/ActivityManager(1180): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.tinder/.activities.ActivitySplashLoading bnds=[720,1280][720,1280]} from pid 1842
02-12 09:33:10.331 I/ActivityManager(1180): ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t-1} Support Split:true Is ScreenFull:true
02-12 09:33:10.361 I/ActivityManager(1180): nezzimom intent is not null Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.tinder/.activities.ActivitySplashLoading bnds=[720,1280][720,1280] }
02-12 09:33:10.401 D/ActivityManager(1180): resumeTopActivityLocked: Restarting ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28}
02-12 09:33:10.431 I/ActivityManager(1180): Start proc com.tinder for activity com.tinder/.activities.ActivitySplashLoading: pid=26329 uid=10166 gids={50166, 3003, 1028, 1015, 1023, 3002}
02-12 09:33:10.451 V/ActivityManager(1180): Moving to RESUMED: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28} (starting new instance)
02-12 09:33:13.041 I/ActivityManager(1180): START u0 {flg=0x14010000 cmp=com.tinder/.activities.ActivityMain} from pid 26329
02-12 09:33:13.041 I/ActivityManager(1180): ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t-1} Support Split:true Is ScreenFull:true
02-12 09:33:13.051 V/ActivityManager(1180): Moving to PAUSING: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28}
02-12 09:33:13.061 D/ActivityManager(1180): allPausedActivitiesComplete: r=ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28} state=PAUSING
02-12 09:33:13.061 V/ActivityManager(1180): Finishing activity token=Token{449ac3f0 ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28}} r=, result=0, data=null, reason=app-request
02-12 09:33:13.061 V/ActivityManager(1180): r.frontOfTask = true is transferred to ActivityRecord: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28}
02-12 09:33:13.071 V/ActivityManager(1180): Moving to PAUSED: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28 f} (pause complete)
02-12 09:33:13.071 V/ActivityManager(1180): Moving to STOPPING: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28 f} (finish requested)
02-12 09:33:13.081 D/ActivityManager(1180): resumeTopActivityLocked: Restarting ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28}
02-12 09:33:13.081 V/ActivityManager(1180): Moving to RESUMED: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28} (starting new instance)
02-12 09:33:13.571 E/AndroidRuntime(26329): Process: com.tinder, PID: 26329
02-12 09:33:13.571 E/AndroidRuntime(26329): java.lang.RuntimeException: Unable to resume activity {com.tinder/com.tinder.activities.ActivityMain}: java.lang.IllegalArgumentException: Service not registered: [email protected]
02-12 09:33:13.571 E/AndroidRuntime(26329): Caused by: java.lang.IllegalArgumentException: Service not registered: [email protected]
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.iap.util.b.a(SourceFile:342)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.managers.g.b(SourceFile:125)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.activities.ActivityMain.a(SourceFile:143)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.activities.ActivityMain.a(SourceFile:187)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.activities.ActivityMain.onResume(SourceFile:127)
02-12 09:33:13.571 W/ActivityManager(1180): Force finishing activity com.tinder/.activities.ActivityMain
02-12 09:33:13.591 V/ActivityManager(1180): Moving to PAUSING: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f}
02-12 09:33:14.091 W/ActivityManager(1180): Activity pause timeout for ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f}
02-12 09:33:14.091 V/ActivityManager(1180): Moving to PAUSED: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f} (due to timeout)
02-12 09:33:14.091 V/ActivityManager(1180): Moving to FINISHING: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f}
02-12 09:33:14.111 D/ActivityManager(1180): allPausedActivitiesComplete: r=ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f} state=FINISHING
02-12 09:33:14.261 V/ActivityManager(1180): Moving to DESTROYING: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f} (destroy requested)
02-12 09:33:14.711 V/ActivityManager(1180): Moving to FINISHING: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28 f}
02-12 09:33:14.721 V/ActivityManager(1180): Moving to DESTROYING: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28 f} (destroy requested)
02-12 09:33:19.141 I/ActivityManager(1180): Process com.tinder (pid 26329) has died.
02-12 09:33:19.141 V/ActivityManager(1180): Moving to DESTROYED: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f} (removed from history)
02-12 09:33:19.151 I/WindowState(1180): WIN DEATH: Window{447fe478 u0 com.tinder/com.tinder.activities.ActivityMain}
02-12 09:33:19.161 I/WindowState(1180): WIN DEATH: Window{4466c610 u0 com.tinder/com.tinder.activities.ActivitySplashLoading}
02-12 09:33:19.171 V/ActivityManager(1180): Moving to DESTROYED: ActivityRecord{4472c0d0 u0 com.tinder/.activities.ActivityMain t28 f} (cleaning up)
02-12 09:33:19.181 V/ActivityManager(1180): Moving to DESTROYED: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28 f} (removed from history)
02-12 09:33:19.181 V/ActivityManager(1180): Moving to DESTROYED: ActivityRecord{44696888 u0 com.tinder/.activities.ActivitySplashLoading t28 f} (cleaning up)
02-12 09:36:02.131 I/ActivityManager(1842): Timeline: Activity_launch_request id:com.tinder time:2091263
02-12 09:36:02.131 I/SplitWindowPolicyService(1416): checkScreen: orgIntent=Intent { act=androi.....MAIN cat=[androi.....LAUNCHER] flg=.... cmp=com.tinder/.activities.ActivitySplashLoading bnds=[110,1205][360,1533] } /sourceIntent=Intent { act=androi.....MAIN cat=[androi.....HOME] flg=.... cmp=co..../co.....Launcher }
02-12 09:36:02.131 V/SplitWindowPolicyService(1416): launch: ComponentInfo{com.tinder/co.....ActivitySplashLoading}, from: ComponentInfo{co..../co.....Launcher}
02-12 09:36:02.131 I/ActivityManager(1180): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.tinder/.activities.ActivitySplashLoading bnds=[110,1205][360,1533]} from pid 1842
02-12 09:36:02.131 I/ActivityManager(1180): ActivityRecord{44affcc0 u0 com.tinder/.activities.ActivitySplashLoading t-1} Support Split:true Is ScreenFull:true
02-12 09:36:02.151 I/ActivityManager(1180): nezzimom intent is not null Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.tinder/.activities.ActivitySplashLoading bnds=[110,1205][360,1533] }
02-12 09:36:02.171 D/WiFiOffloadingManager(1180): isOffloadingAvailable com.tinder
02-12 09:36:02.171 D/WiFiOffloadingManager(1180): checkPermissionGranted com.tinder
02-12 09:36:02.171 D/WiFiOffloadingManager(1180): mPackageName com.tinder
02-12 09:36:02.211 D/ActivityManager(1180): resumeTopActivityLocked: Restarting ActivityRecord{44affcc0 u0 com.tinder/.activities.ActivitySplashLoading t37}
02-12 09:36:02.221 I/ActivityManager(1180): Start proc com.tinder for activity com.tinder/.activities.ActivitySplashLoading: pid=28918 uid=10166 gids={50166, 3003, 1028, 1015, 1023, 3002}
02-12 09:36:02.251 V/ActivityManager(1180): Moving to RESUMED: ActivityRecord{44affcc0 u0 com.tinder/.activities.ActivitySplashLoading t37} (starting new instance)
02-12 09:36:02.281 I/SystemUI[Framework](1180): PhoneWindowManager.updateSystemUiVisibilityLw() :visibility=0x0, pkg=com.tinder
02-12 09:36:03.141 I/ActivityManager(1180): Displayed com.tinder/.activities.ActivitySplashLoading: +932ms
02-12 09:36:03.141 I/ActivityManager(1180): Timeline: Activity_windows_visible id: ActivityRecord{44affcc0 u0 com.tinder/.activities.ActivitySplashLoading t37} time:2092274
02-12 09:36:03.741 E/Crashlytics(28918): Failed to retrieve settings from https://settings.crashlytics.com/spi/v2/platforms/android/apps/com.tinder/settings
02-12 09:36:03.821 E/Crashlytics(28918): Failed to retrieve settings from https://settings.crashlytics.com/spi/v2/platforms/android/apps/com.tinder/settings
02-12 09:36:04.641 I/ActivityManager(28918): Timeline: Activity_launch_request id:com.tinder time:2093772
02-12 09:36:04.641 I/SplitWindowPolicyService(1416): checkScreen: orgIntent=Intent { flg=.... cmp=com.tinder/.activities.ActivityMain } /sourceIntent=Intent { act=androi.....MAIN cat=[androi.....LAUNCHER] flg=.... cmp=com.tinder/.activities.ActivitySplashLoading bnds=[110,1205][360,1533] }
02-12 09:36:04.641 V/SplitWindowPolicyService(1416): launch: ComponentInfo{com.tinder/co.....ActivityMain}, from: ComponentInfo{com.tinder/co.....ActivitySplashLoading}
02-12 09:36:04.641 I/ActivityManager(1180): START u0 {flg=0x14010000 cmp=com.tinder/.activities.ActivityMain} from pid 28918
02-12 09:36:04.641 I/ActivityManager(1180): ActivityRecord{44be9c48 u0 com.tinder/.activities.ActivityMain t-1} Support Split:true Is ScreenFull:true
02-12 09:36:04.641 V/ActivityManager(1180): Moving to PAUSING: ActivityRecord{44affcc0 u0 com.tinder/.activities.ActivitySplashLoading t37}
02-12 09:36:04.651 D/ActivityManager(1180
Sent from my VS985 4G using Tapatalk 2
I think it's fixed after uninsralling tablet metrics not sure why it cause fc...
Sent from my VS985 4G using Tapatalk 2
Use a diff kernel go to stock and try again
Sent from my LG-VS985 using XDA Free mobile app
Code:
02-12 09:33:13.571 E/AndroidRuntime(26329): Process: com.tinder, PID: 26329
02-12 09:33:13.571 E/AndroidRuntime(26329): java.lang.RuntimeException: Unable to resume activity {com.tinder/com.tinder.activities.ActivityMain}: java.lang.IllegalArgumentException: Service not registered: [email protected]
02-12 09:33:13.571 E/AndroidRuntime(26329): Caused by: java.lang.IllegalArgumentException: Service not registered: [email protected]
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.iap.util.b.a(SourceFile:342)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.managers.g.b(SourceFile:125)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.activities.ActivityMain.a(SourceFile:14 3)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.activities.ActivityMain.a(SourceFile:18 7)
02-12 09:33:13.571 E/AndroidRuntime(26329): at com.tinder.activities.ActivityMain.onResume(Source File:127)
This would be where your error is at. Coding error with their app?
I found the problem to be with lucky patcher. I only used it for TiBu but it somehow messed up with the Google play store as well.
Sent from my VS985 4G using Tapatalk 2
dreamjaeil said:
I found the problem to be with lucky patcher. I only used it for TiBu but it somehow messed up with the Google play store as well.
Sent from my VS985 4G using Tapatalk 2
Click to expand...
Click to collapse
How did you fix it? I am having the same issue with the current version 4.0.5 on my stock rooted Galaxy S3 after trying to patch it with lucky patcher. I have since uninstalled lucky patcher. Tinder keeps force closing almost right away. I have tried everything from clearing dalvik cache to uninstalling and reinstalling. Even installed an old version and tried upgrading via play store. No dice.
Getting the same error, what to do?
Diglett said:
Getting the same error, what to do?
Click to expand...
Click to collapse
I had the same error too.. Nexus 5 running on 5.1. I just opened Lucky Patcher, opened menu of patches for tinder, and ran the In-app purchase.LVL emulator fix, and it worked.
ckrishnakanthc said:
I had the same error too.. Nexus 5 running on 5.1. I just opened Lucky Patcher, opened menu of patches for tinder, and ran the In-app purchase.LVL emulator fix, and it worked.
Click to expand...
Click to collapse
Thanks, this fixes it.
Fix should be posted in Google Play xD
I'll buy you a coffee !! I knew something was wrong and I suspected Lucky patcher. I wasn't able to use Tinder for more than a month because of this. Even uninstalling Lucky patcher wouldn't solve the problem, but the In-app and LVL patch fixed it. THANKS A MILLION !!!
aswath1991 said:
I'll buy you a coffee !! I knew something was wrong and I suspected Lucky patcher. I wasn't able to use Tinder for more than a month because of this. Even uninstalling Lucky patcher wouldn't solve the problem, but the In-app and LVL patch fixed it. THANKS A MILLION !!!
Click to expand...
Click to collapse
It's not Lucky Patcher that's "wrong". I had it freezed, and Tinder still started crashing on startup.
It *did*, however, fix the crashes.

automatic app execution

Can i please get some help with understanding this.
im trying to run a activity from the app 'brilliant smart' using Automate block flow.
i have managed to extract this data using logcat when i press the function on the app.
can i get help in finding the intent or broadcast and what data i should input into automate flow.
Thank you
""
"W/AudioTrack( 1816): AUDIO_OUTPUT_FLAG_FAST denied by client
V/WindowManager( 1816): not Base app: Adding window Window{27c76ff3 u0 com.brilliantlighting.brain/com.tuya.smart.hometab.activity.FamilyHomeActivity} at 4 of 8
I/ActivityManager( 1816): START u0 {cmp=com.brilliantlighting.brain/com.tuya.smart.scene.ui.MatrixSceneExecuteActivity (has extras)} from uid 10042 on display 0
V/WindowManager( 1816): addAppToken: AppWindowToken{26e3c2ae token=Token{1bc72f29 ActivityRecord{3cf8e4b0 u0 com.brilliantlighting.brain/com.tuya.smart.scene.ui.MatrixSceneExecuteActivity t5}}} to stack=1 task=5 at 1
V/WindowManager( 1816): Adding window Window{187f9bdc u0 com.brilliantlighting.brain/com.tuya.smart.scene.ui.MatrixSceneExecuteActivity} at 5 of 9 (after Window{27c76ff3 u0 com.brilliantlighting.brain/com.tuya.smart.hometab.activity.FamilyHomeActivity EXITING})
I/ActivityManager( 1816): Displayed com.brilliantlighting.brain/com.tuya.smart.scene.ui.MatrixSceneExecuteActivity: +57ms""

Categories

Resources