Proximity Sensor Problem - HTC Aria General

Hi all,
Like many of us, I managed to kill a digitizer on my HTC Aria. Replaced the blasted thing, and now I find my proximity sensor is really sensitive. It's locked in proximity mode (Z-devicetest shows distance 0) in normal conditions.
If I pull off the digitizer, so the prox sensor has a clear path in front of it, it goes out of proximity state and Z-devicetest shows the distance as 1 (and the display works properly during calls, speakerphone works, etc) ...
If I slowly move the tip of my finger towards the prox. sensor, digitizer still removed, Z-devicetest shows it flip from 1 to 0 (out of prox to in prox) as my finger gets within ~2 inches.
So it seems the prox. sensor is working but is too sensitive.
Is this the normal failure mode of a CM3602 prox sensor (read: i dropped it, and not only broke the digizer, but took out the prox sensor too!) .. or, is there some sort of calibration i need to do?
Anyone have a USA source of the CM3602? My usual suppliers digikey and mouser don't carry this component..
*curses self* shoulda listened to my friend who warned me this phone is real easy to bust

There is a guy in the accessories board that is selling parts of his aria. I'd link ya but I don't know how from this app.
Sent from my Liberty using XDA App

Right on.
I didn't want to butcher this poor little POS more so I figured out how to turn the bloody sensor off in software.
append
gsm.proximity.enable=false
to /system/build.prop
or just uncomment the line if you have an editor.. but you can just cat >> build.prop in the shell and type in the line. No editor needed.
Must do this via adb shell with phone in clockwork, otherwise nand is lokt. boo. dev eng hardware doesn't have that problem... stupid consumer devices!

So do you just start Android sdk and then type the following.
append (enter)
gsm.proximity.enable=false (enter)
or is there more to it. I really need to get this disabled.

I tried to do it with ASTRO but it doesnt save my changes.

/system/build.prop is a standard text file.
Remember that stuff in /system is protected, I find the best way to deal with the /system partition is through clockworkmod recovery.
a. Disconnect USB, reboot into clockworkmod recovery
b. Mount the /system partition from the partitions menu
c. Connect USB to a system with adb
d. adb pull /system/build.prop
e. Edit file with your favorite text editor to append gsm.proximity.enable=false
f. adb push build.prop /system/build.prop
g. unmount /system from clockworkmod recovery partition menu
h. reboot phone, receive bacon
If you don't have clockworkmod recovery, just use unrevoked to install it

Oh, i should also say CM6 (and maybe all of Froyo images?) do not honor this setting.

Thank you I will try this when I get home..
I may have an issue because if I open build.prop with root explorer it says...
# try to disable proximity sensor in call by default
# gsm.proximity.enable=false
This is located almost at the bottom of the page does this mean I am sol. It is the liberated Rom and I haven't done anything to it.
Sent from my HTC Liberty using XDA App

Just remove the # ...
# gsm.proximity.enable=false
..to
gsm.proximity.enable=false

thank you so much..... you may be oh wait you are the FN man.
ok so if froyo images dont honor this does that mean when we get froyo I shouldn't upgrade.
anyway thank you so much now I can use my phone again, I didn't realize how much my Pure was dated till I had to use it for a few days.

Glad that helped
I didn't find a property in Froyo that disabled the proximity sensor. Maybe there is one, maybe there is not. I went another method..
Code:
# hexdump -C /system/lib/hw/sensors.liberty.so | grep -C3 dev/cm
00001b10 54 5f 54 46 4c 41 47 20 65 72 72 6f 72 20 28 25 |T_TFLAG error (%|
00001b20 73 29 00 45 43 53 5f 49 4f 43 54 4c 5f 41 50 50 |s).ECS_IOCTL_APP|
00001b30 5f 53 45 54 5f 4d 56 46 4c 41 47 20 65 72 72 6f |_SET_MVFLAG erro|
00001b40 72 20 28 25 73 29 00 2f 64 65 76 2f 63 6d 66 75 |r (%s)./dev/cmfu|
00001b50 6b 74 00 43 41 50 45 4c 4c 41 5f 43 4d 33 36 30 |kt.CAPELLA_CM360|
00001b60 32 5f 49 4f 43 54 4c 5f 45 4e 41 42 4c 45 20 65 |2_IOCTL_ENABLE e|
00001b70 72 72 6f 72 20 28 25 73 29 00 2f 64 65 76 2f 6c |rror (%s)./dev/l|
Offset 1b48 in /system/lib/hw/sensors.liberty.so defines the device name of the proximity sensor, normally /dev/cm3602.
Hexedit the file to change the name of the device to something that doesn't exist, and you will no longer use the proximity sensor.
Nasty and totally the wrong way to do this, but it worked for me. I suppose I could have dug through source code to check for a flag to disable the sensor, but that takes more time and is far less hacking fun than hex editing a system library If I didn't want to live dangerously I'd stick with the stock ROM lol.

Thanks again I will check back when group comes out if I can't figure it out. I am going to stick with the liberated Rom till we get the official Rom and it gets liberated.
Sent from my HTC Liberty using XDA App

Not a bad idea if you're happy with 2.1 and Sense

Yeah I really like the sense UI so I will stay with 2.1 until a 2.2 with sense is available.
Sent from my HTC Liberty using XDA App

Thanks for this info. Just changed CM3602 to XM3602 and it stopped.

I just upgraded to the new attn1 2.2 Rom with sense and I used the same fix you gave me for the 2.1 Rom and it worked so I guess that fix will work on all sence roms.
Sent from my HTC Liberty using XDA App

I just used hexeditor on my phone ( fr 2.2) and went to the location you noted 00001b48 but nothing there. I went on looking and found it on a few lines starting at 00002090. but which value do I change to get it to disable. If you could look at this for me it would help alot.

nrvate said:
/system/build.prop is a standard text file.
Remember that stuff in /system is protected, I find the best way to deal with the /system partition is through clockworkmod recovery.
a. Disconnect USB, reboot into clockworkmod recovery
b. Mount the /system partition from the partitions menu
c. Connect USB to a system with adb
d. adb pull /system/build.prop
e. Edit file with your favorite text editor to append gsm.proximity.enable=false
f. adb push build.prop /system/build.prop
g. unmount /system from clockworkmod recovery partition menu
h. reboot phone, receive bacon
If you don't have clockworkmod recovery, just use unrevoked to install it
Click to expand...
Click to collapse
I am trying to use these steps to disable the sensor, but I am having issues pulling build.prop.
In the command prompt, I enter in:
adb pull /system/build.prop c:\
And receive:
264 Kb/s (4695 bytes in .012s)
The issue I am having is that I cannot find where adb stores the file on my computer. It's not in the c:\ directory. It's not in platform-tools folder. I did a search, and nothing came up
Any suggests would be really appreciated.
Thanks!

I'm confused - why are you guys disabling the proximity sensor???
Is it because you improperly installed a new screen?
Might as well use duct tape to hold the new screen on and then JB Weld the back case. Seriously guys, do things right and take the screen back off and install it the right way.

kaschenberg,
I dropped my phone, shattering the screen; resulting in a lot of fractures in the glass where the sensor is located. The phone and screen works when I add pressure to the upper right corner, leaving me to believe the sensor is being interrupted by the fractures. I am hopeful, as a temporary fix, that if I can disable the sensor, the phone will work more optimally until I replace the screen.
- Thoughts?

Related

Cannot resolve symbol "charSequence"

Hi first time here and first time trying to write android code. Ive done java in eclipse earlier. anyway i follow some guide on utube and he writes charSequence. however I dont seem to have that cause it get red, do i need to import some library?
Well if you don't capitalize the first letter it will be a variable name instead of a data type...
CharSequence charSequence = ....
This should work better
But hey, this is a really really basic thing about java and coding in general, always check if you did the capitalization right!
---------------------------------
Phone : Nexus 4
OS :
- KitKat 4.4.4 stock
- Xposed: 58(app_process); 54(bridge)
- SU: SuperSU
- no custom recovery
---------------------------------
4d 61 73 72 65 70 75 73 20 66 74 77
Gesendet von Tapatalk
As said Masrepus, CharSequence is a class. And all class begin with a capitalize letter.
all other words are variable (if not keyword like if, switch, case, try, etc...) or function name

Trying to get files from ftp server

Hello all
i'm trying to make a button that connects to an ftp server and download a bunch of files
i have everything figured out , but i'm wondering how to execute it , should i use asynctask ?
i want to also update progress and such ...
the files will be around 60MB so i don't know how long it will take , a few minutes i guess depends on the connection .
is there a more suitable answer than asynctask ?
thanks to all helpers !
I think asynctask would be a nice solution, progress updating is included as well (publishProgress(int progress) and then by overriding onProgressUpdate(...) you can access ui elements)
---------------------------------
Phone : Nexus 4
OS :
- KitKat 4.4.4 stock
- Xposed: 58(app_process); 54(bridge)
- SU: SuperSU
- no custom recovery
---------------------------------
4d 61 73 72 65 70 75 73 20 66 74 77
Gesendet von Tapatalk

[Q] Proper way to use SQLite?

So I created an app long ago, and back then to read from a SQLite DB was to use a managed cursor with startManagingCursor().
Now, that is not only depreciated, but also not available in fragments. They say use a Loader, which requires CursorLoader, which apparently generally requires a ContentProvider. But if you look in the Content Provider documentation, it says "You don't need a provider to use an SQLite database if the use is entirely within your own application."
So, I can't use a managed cursor, but then I also shouldn't use a ContentProvider. I don't need to share this data with any other apps. This is a small app, with small databases, only for my app. Do I need to write my own Loader? It seems crazy that managing data in a database has become complex for some pretty basic data storing/managing.
Am I missing something? Is there a better way to get data from an SQLite database on Android? What does everyone else do?
http://www.vogella.com/tutorials/AndroidSQLite/article.html
---------------------------------
Phone : Nexus 4
OS :
- KitKat 4.4.4 stock
- Xposed: 58(app_process); 54(bridge)
- SU: SuperSU
- no custom recovery
---------------------------------
4d 61 73 72 65 70 75 73 20 66 74 77
Gesendet von Tapatalk

TA Backup for G814x only

If someone interested, just try this small tool:
Run from cmdline (according to sample image), connect device in flash mode, and wait a bit.
*binary* comes from device directly, *config* is in infile format if you want to know what is inside.
No virus / other foreign legionary inside :
https://www.virustotal.com/#/file/8...f13e2099bc9b5a1ddb487ad41cb3948144d/detection
Works on G814x, may work on other devices, but not before (and including) Z5 Premium.
How to fix DRM on XZP:
Step one: Collect Underpants.
Step two: Backup TA.
Step three: Profit.
But seriously, good luck to all testing this. Please report back!
No matter how unstable or chancy this may be (haven't tested, don't wanna risk it haha) it''s progress in this right direction and to the idiots that gave up in the bounty thread, having patience can pay off
Its working. If you don't want to try, don't do that. This is not violence, this only an option To make a drm fix, this could be a step forward.
It's NOT write anything to the device, so safe to try. I have only one G8142, tested, read working fine. On weekend, I'll work on full/partial restore.
Anyway, its not for personal profit, I just want to speed up a complete lossless root solution
Just tested, files have been created, and phone is working without any problem.
Hope someone could get DRM fix soon or at least a point to start with this tool.
Thanks a lot for the effort
Mine just hangs on Checking S1 devices
{
"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"
}
Edit: Sorry Didn't read the part that need to connect FLASH MODE It backed up stuff.
does it work with sony xz1 or should wait for next update
karrouma said:
does it work with sony xz1 or should wait for next update
Click to expand...
Click to collapse
You can test is. It cannot write anything, at most cannot read anything.
BTW, this is NOT A RAW TA BACKUP, it backup what the phone give us. But I hope it contains any DRM related stuff
I hope someone will try it out who can understand what it read out, and can give us some feedback.
Anyway, unlocked my one, I love new green shots, but now I can attack from another way too. Looks like dd raw backup
a bit bigger, even its not fully filled
Very good work. It's because people like you that things get done.
HELLO !!! @Macs1209 PERFECT WORK BRO !!!
MY PHONE IS G8141 with windows 7 x64
E:\SONY\XPERIA XZ PREMIUM>dmsSonyTABackup.exe
Checking S1 devices
S1 interface found: \\?\USB#VID_0FCE&PID_B00B#5&1dd2df13&0&2#{a5dcbf10-6530-11d2
-901f-00c04fb951ed}
TA1 binary read ok, size: 139096, saved to E:\SONY\XPERIA XZ PREMIUM\MY IMEI_TA_1.binary.tab
- TA binary parsed, saved to E:\SONY\XPERIA XZ PREMIUM\MY IMEI_TA_1.confi
g.tab
TA2 binary read ok, size: 179230, saved to E:\SONY\XPERIA XZ PREMIUM\MY IMEI_TA_2.binary.tab
- TA binary parsed, saved to E:\SONY\XPERIA XZ PREMIUM\MY IMEI_TA_2.confi
g.tab
THANK YOU VERY VERY SO MUCH GOOD WORK
ps it 's possible change in TA.img or add restore ?
please help bro @munjeni
LukeyWolf said:
No matter how unstable or chancy this may be (haven't tested, don't wanna risk it haha) it''s progress in this right direction and to the idiots that gave up in the bounty thread, having patience can pay off
Click to expand...
Click to collapse
There's a quote in Urdu "sabar ka phal meetha hota he" means that the fruit of patience is always sweet.
kudos to this guy. since S8 Snapdragon 835 version is now rooted. i hope we can get Root and Drm keys together sooner on our XZP
Saadkhalid786 said:
There's a quote in Urdu "sabar ka phal meetha hota he" means that the fruit of patience is always sweet.
kudos to this guy. since S8 Snapdragon 835 version is now rooted. i hope we can get Root and Drm keys together sooner on our XZP
Click to expand...
Click to collapse
Yep, a grest step in the correct direction, also I have to wait anyway haha as I only got my XZP 1 month ago with EE locked haha
I can help reconstruct real TA.img!
Edit:
This tool doesn't backup drm key, I didn't see unit 66667. Without shake authentification I'm believing you can't backup secured units including that drm key unit. I'm still believing that drm key or unlock key is outside trim area, I even didn't see unit 0x8b2 from unlocked device trim area. https://github.com/munjeni/newflasher , can you show your's?
@the_laser , how that is possible that his tool reads some units like:
Code:
[67320]
size=2
data=9A 02
text=
[67321]
size=2
data=FA 01
text=
[67322]
size=2
data=3A 01
text=:
[67323]
size=2
data=1A 01
text=
This works on XZ1 Compact.
It produced 4 files:
[IMEI]_TA_1.binary.tab (146036 bytes)
[IMEI]_TA_1.config.tab (Text display of above)
[IMEI]_TA_2.binary.tab (183728 bytes)
[IMEI]_TA_2.config.tab (Text display of above)
EDIT: For reference, the XZ1c's TA partition is 2MB, so this tool is pulling < 1/4th of that partition.
I don't see 66667 or 8B2 either.
Thanks for responses. So now I need to focus on 66667 abnd 0x8B2.
BTW, "text=" lines for info only, to see is there any text inside, like imei, any sw part version, or log data.
Another question: is there any way to create a modem interface for this device? In the modem firmware part, there's
lot of AT commands, but without interface, I can't communicate with the baseband. On Samsung qualcomm devices,
I could reach lot of things via modem, same logs what are in the partial TA backup binaries. (also I killed one exynos
g925f by wrote something wrong to RF calibration.... )
pbarrette said:
This works on XZ1 Compact.
It produced 4 files:
[IMEI]_TA_1.binary.tab (146036 bytes)
[IMEI]_TA_1.config.tab (Text display of above)
[IMEI]_TA_2.binary.tab (183728 bytes)
[IMEI]_TA_2.config.tab (Text display of above)
EDIT: For reference, the XZ1c's TA partition is 2MB, so this tool is pulling < 1/4th of that partition.
I don't see 66667 or 8B2 either.
Click to expand...
Click to collapse
The tool didn't find my XZ1c, tough I probably need some special drivers that I missed.
Those files are s1 dump for Sony repair services
That provide device info, last Boot logs, installed firmware versions, baseband info, etc
Small parts of TA nothing important
pbarrette said:
This works on XZ1 Compact.
It produced 4 files:
[IMEI]_TA_1.binary.tab (146036 bytes)
[IMEI]_TA_1.config.tab (Text display of above)
[IMEI]_TA_2.binary.tab (183728 bytes)
[IMEI]_TA_2.config.tab (Text display of above)
EDIT: For reference, the XZ1c's TA partition is 2MB, so this tool is pulling < 1/4th of that partition.
I don't see 66667 or 8B2 either.
Click to expand...
Click to collapse
@Macs1209
it is wirking in xz1 also
i got same 4 files
xzp xzc xz1 same drm and same oreo firmware family like xz and xzs
pbarrette said:
EDIT: For reference, the XZ1c's TA partition is 2MB, so this tool is pulling < 1/4th of that partition.
Click to expand...
Click to collapse
Yes partition is 2mb but that not mean that it have 2mb of the data inside! So thats expected.
---------- Post added at 09:39 AM ---------- Previous post was at 09:38 AM ----------
munjeni said:
https://github.com/munjeni/newflasher , can you show your's?
Click to expand...
Click to collapse
Macs1209 said:
Another question: is there any way to create a modem interface for this device?
Click to expand...
Click to collapse
Yes, but waiting your reaply to my question first.
munjeni said:
Yes partition is 2mb but that not mean that it have 2mb of the data inside! So thats expected.
---------- Post added at 09:39 AM ---------- Previous post was at 09:38 AM ----------
Yes, but waiting your reaply to my question first.
Click to expand...
Click to collapse
Code:
Checking S1 devices
S1 interface found: \\?\USB#VID_0FCE&PID_B00B#6&f44bfc6&0&4#{a5dcbf10-6530-11d2-901f-00c04fb951ed}
Response(BIN): SUCCESS: 104857600
Response(HEX): SUCCESS: 31 30 34 38 35 37 36 30 30
Reading TA 1 / 2226
Response(BIN): FAILED: Unable to read TA unit 2226, error=-22
Response(HEX): FAILED: 55 6E 61 62 6C 65 20 74 6F 20 72 65 61 64 20 54 41 20 75 6E 69 74 20 32 32 32 36 2C 20 65 72 72 6F 72 3D 2D 32 32
Reading TA 2 / 2226
Response(BIN): FAILED: Unable to read TA unit 2226, error=-22
Response(HEX): FAILED: 55 6E 61 62 6C 65 20 74 6F 20 72 65 61 64 20 54 41 20 75 6E 69 74 20 32 32 32 36 2C 20 65 72 72 6F 72 3D 2D 32 32
Reading TA 1 / 66667
Response(BIN): FAILED: Unable to read TA unit 66667, error=-22
Response(HEX): FAILED: 55 6E 61 62 6C 65 20 74 6F 20 72 65 61 64 20 54 41 20 75 6E 69 74 20 36 36 36 36 37 2C 20 65 72 72 6F 72 3D 2D 32 32
Reading TA 2 / 66667
Response(BIN): FAILED: Command not authenticated
Response(HEX): FAILED: 43 6F 6D 6D 61 6E 64 20 6E 6F 74 20 61 75 74 68 65 6E 74 69 63 61 74 65 64
Done
Sadly not. 2/66667 looks like needs some authentication, but after it possible to read
(I already unlocked this device, so error-22 can mean TA ID not exists (anymore) too)

Fire10 HD rooted - Launcher Crashes

Hello,
I rooted the Fire10 and disabled some services from Amazon (I read a tutorial from this forum).
Everythink worked fine so far - except for this crash problem.
youtube.com/watch?v=PqRRFyZfCgM
Do you have a idea how to fix that?
Noone? I tried Google Launcher and Nova Launcher - same problem.
Do you need more information?
maddash1337 said:
Noone? I tried Google Launcher and Nova Launcher - same problem.
Do you need more information?
Click to expand...
Click to collapse
Delete folder com.amazon.firelauncher and make sure nova is a system app. Otherwise I've not had a problem.
DragonFire1024 said:
Delete folder com.amazon.firelauncher and make sure nova is a system app. Otherwise I've not had a problem.
Click to expand...
Click to collapse
Sadly it's not working. I removed the foler and copyed the novalauncher.apk in /system/apps/
Still crashing
maddash1337 said:
Sadly it's not working. I removed the foler and copyed the novalauncher.apk in /system/apps/
Still crashing
Click to expand...
Click to collapse
Do you have launcher hijack installed?
No - not on this device. I thought I just need that if I have no root?! right?
maddash1337 said:
No - not on this device. I thought I just need that if I have no root?! right?
Click to expand...
Click to collapse
Was just wondering. My next advice would be to clear all the data of Nova launcher and reinstall it. Install a back up launcher temporarily and go to /system/priv-app and delete nova launcher folder and the contents. Then go to /data/app and delete any nova related folders and the contents. Reboot. Reinstall nova.
DragonFire1024 said:
Was just wondering. My next advice would be to clear all the data of Nova launcher and reinstall it. Install a back up launcher temporarily and go to /system/priv-app and delete nova launcher folder and the contents. Then go to /data/app and delete any nova related folders and the contents. Reboot. Reinstall nova.
Click to expand...
Click to collapse
I tried MS Lauchner - same problem. I think it's still trying to use FireLauchner. But it shouldn't be there - I think.
Maybe the firelauncher is not fully removed?
maddash1337 said:
I tried MS Lauchner - same problem. I think it's still trying to use FireLauchner. But it shouldn't be there - I think.
Maybe the firelauncher is not fully removed?
Click to expand...
Click to collapse
if you deleted the folder and contents at /system/priv-app/com.amazon.firelauncher then fire launcher is no more. I am stumped on this one.
DragonFire1024 said:
if you deleted the folder and contents at /system/priv-app/com.amazon.firelauncher then fire launcher is no more. I am stumped on this one.
Click to expand...
Click to collapse
Yeah it's fully removed. I triedthe Microsoft Launcher and it show's me an error. "Unable to set as default launcher". So I tried another launcher - same.
What's required to overwrite this setting? Did I dissabled something wrong by mistake?
maddash1337 said:
Yeah it's fully removed. I triedthe Microsoft Launcher and it show's me an error. "Unable to set as default launcher". So I tried another launcher - same.
What's required to overwrite this setting? Did I dissabled something wrong by mistake?
Click to expand...
Click to collapse
Honestly I don't know what is causing this.
DragonFire1024 said:
Honestly I don't know what is causing this.
Click to expand...
Click to collapse
hmm maybe the service list helps ?
because you're my last hope I think
Found 121 services:
0 imms: [com.android.internal.telephony.IMms]
1 media_projection: [android.media.projection.IMediaProjectionManager]
2 eve: [com.fireos.eve.IEveService]
3 amazonusermanagerservice: [amazon.os.IAmazonUserManager]
4 amazondropbox: [com.amazon.android.server.db.IAmazonDropBoxManagerService]
5 fosdebug: [amazon.fireos.debug.IFireOSDebugManager]
6 excessivepowerusagesettings: []
7 amazonusagestatsservice: [com.amazon.UsageStats.IAmazonUsageStatsService]
8 thermalservice: [com.amazon.android.service.thermal.IThermalManager]
9 SmartSuspend: [com.amazon.android.service.smartsuspend.ISmartSuspendManager]
10 amazonpackagemanager: [com.amazon.android.service.pm.IAmazonPackageManager]
11 AmazonMtpObserverService: [com.amazon.android.service.mtp.IAmazonMtpObserverManager]
12 AmazonMoonlightService: []
13 AmazonWifiService: [com.amazon.android.service.net.IAmazonWifiManager]
14 faxservice: [com.amazon.android.server.faxservice.IFaxService]
15 marketplace: [com.amazon.android.internal.marketplace.IMarketplaceService]
16 deviceinfo: [com.amazon.android.service.device.IDeviceInfoManager]
17 chronos: [com.amazon.android.internal.chronos.IChronosService]
18 arcusservice: [com.amazon.android.server.arcusservice.IArcusService]
19 amazonwindowmanager: [com.amazon.android.server.wm.IAmazonWindowManager]
20 amazonaudioservice: [com.amazon.android.server.media.IAmazonAudioManager]
21 amazondevicepolicymanager: [com.amazon.android.server.devicepolicy.IAmazonDevicePolicyManager]
22 amazonactivitymanager: [com.amazon.android.server.am.IAmazonActivityManager]
23 AdvertisingIdManagerService: [amazon.app.ads.IAdvertisingIdManager]
24 filelinkerservice: [com.amazon.android.os.IFileLinkerManager]
25 amazon_input: [com.amazon.android.internal.hardware.input.IAmazonInputManager]
26 PackageRecencyFilterConfigService: [com.amazon.android.packagerecency.IPackageRecencyFilterConfig]
27 amazonlibrary: [com.amazon.android.internal.library.IAmazonLibraryManager]
28 crlsetmanager: [com.amazon.android.crl.ICRLSetManager]
29 launcherapps: [android.content.pm.ILauncherApps]
30 fingerprint: [android.service.fingerprint.IFingerprintService]
31 trust: [android.app.trust.ITrustManager]
32 media_router: [android.media.IMediaRouterService]
33 media_session: [android.media.session.ISessionManager]
34 restrictions: [android.content.IRestrictionsManager]
35 print: [android.print.IPrintManager]
36 assetatlas: [android.view.IAssetAtlas]
37 dreams: [android.service.dreams.IDreamManager]
38 commontime_management: []
39 samplingprofiler: []
40 diskstats: []
41 voiceinteraction: [com.android.internal.app.IVoiceInteractionManagerService]
42 appwidget: [com.android.internal.appwidget.IAppWidgetService]
43 backup: [android.app.backup.IBackupManager]
44 jobscheduler: [android.app.job.IJobScheduler]
45 uimode: [android.app.IUiModeManager]
46 serial: [android.hardware.ISerialManager]
47 usb: [android.hardware.usb.IUsbManager]
48 DockObserver: []
49 audio: [android.media.IAudioService]
50 wallpaper: [android.app.IWallpaperManager]
51 dropbox: [com.android.internal.os.IDropBoxManagerService]
52 search: [android.app.ISearchManager]
53 country_detector: [android.location.ICountryDetector]
54 location: [android.location.ILocationManager]
55 devicestoragemonitor: []
56 notification: [android.app.INotificationManager]
57 updatelock: [android.os.IUpdateLock]
58 servicediscovery: [android.net.nsd.INsdManager]
59 connectivity: [android.net.IConnectivityManager]
60 ethernet: [android.net.IEthernetManager]
61 rttmanager: [android.net.wifi.IRttManager]
62 wifiscanner: [android.net.wifi.IWifiScanner]
63 wifi: [android.net.wifi.IWifiManager]
64 media.sound_trigger_hw: [android.hardware.ISoundTriggerHwService]
65 media.audio_policy: [android.media.IAudioPolicyService]
66 wifip2p: [android.net.wifi.p2p.IWifiP2pManager]
67 netpolicy: [android.net.INetworkPolicyManager]
68 netstats: [android.net.INetworkStatsService]
69 network_score: [android.net.INetworkScoreService]
70 textservices: [com.android.internal.textservice.ITextServicesManager]
71 network_management: [android.os.INetworkManagementService]
72 clipboard: [android.content.IClipboard]
73 statusbar: [com.android.internal.statusbar.IStatusBarService]
74 device_policy: [android.app.admin.IDevicePolicyManager]
75 lock_settings: [com.android.internal.widget.ILockSettings]
76 mount: [IMountService]
77 accessibility: [android.view.accessibility.IAccessibilityManager]
78 input_method: [com.android.internal.view.IInputMethodManager]
79 bluetooth_manager: [android.bluetooth.IBluetoothManager]
80 input: [android.hardware.input.IInputManager]
81 window: [android.view.IWindowManager]
82 alarm: [android.app.IAlarmManager]
83 consumer_ir: [android.hardware.IConsumerIrService]
84 vibrator: [android.os.IVibratorService]
85 content: [android.content.IContentService]
86 account: [android.accounts.IAccountManager]
87 entropy: []
88 telephony.registry: [com.android.internal.telephony.ITelephonyRegistry]
89 scheduling_policy: [android.os.ISchedulingPolicyService]
90 amazontracingservice: [com.amazon.android.internal.profile.IProfileManager]
91 webviewupdate: [android.webkit.IWebViewUpdateService]
92 usagestats: [android.app.usage.IUsageStatsManager]
93 battery: []
94 hardware: [android.os.IHardwareService]
95 processinfo: [android.os.IProcessInfoService]
96 permission: [android.os.IPermissionController]
97 cpuinfo: []
98 dbinfo: []
99 gfxinfo: []
100 meminfo: []
101 procstats: [com.android.internal.app.IProcessStats]
102 activity: [android.app.IActivityManager]
103 user: [android.os.IUserManager]
104 package: [android.content.pm.IPackageManager]
105 audiosignalprocessor: [com.amazon.asp.IAudioSignalProcessor]
106 media.camera: [android.hardware.ICameraService]
107 media.player: [android.media.IMediaPlayerService]
108 display: [android.hardware.display.IDisplayManager]
109 power: [android.os.IPowerManager]
110 appops: [com.android.internal.app.IAppOpsService]
111 batterystats: [com.android.internal.app.IBatteryStats]
112 sensorservice: [android.gui.SensorServer]
113 drm.drmManager: [drm.IDrmManagerService]
114 batteryproperties: [android.os.IBatteryPropertiesRegistrar]
115 SurfaceFlinger: [android.ui.ISurfaceComposer]
116 media_codec.logger: [android.media.IMediaCodecLoggerService]
117 media.audio_flinger: [android.media.IAudioFlinger]
118 amazon.security.keystore: [android.security.keystore]
119 GuiExtService: [GuiExtService]
120 android.security.keystore: [android.security.keystore]
and my processes....
1|[email protected]:/ # pm -l
package:com.amazon.platform
package:com.amazon.mw.sdk
package:com.google.android.youtube
package:com.amazon.photos
package:com.amazon.precog
package:com.amazon.dp.contacts
package:com.ebay.kleinanzeigen
package:com.amazon.unifiedsharegoodreads
package:com.amazon.recess
package:com.amazon.platform.fdrw
package:com.google.android.googlequicksearchbox
package:com.android.providers.calendar
package:com.google.android.apps.googleassistant
package:com.amazon.whisperplay.contracts
package:com.android.providers.media
package:com.amazon.venezia
package:com.amazon.webapp
package:com.amazon.dcp.contracts.library
package:com.android.wallpapercropper
package:com.teslacoilsw.launcher
package:com.android.protips
package:com.ivona.orchestrator
package:com.amazon.device.sync
package:amazon.fireos
package:com.amazon.device.logmanager
package:com.android.documentsui
package:com.android.externalstorage
package:com.android.htmlviewer
package:com.amazon.media.session.monitor
package:com.amazon.alta.h2clientservice
package:com.amazon.advertisingidsettings
package:com.android.providers.downloads
package:com.amazon.socialplatform
package:com.amazon.dp.fbcontacts
package:com.cyberlink.powerdirector.DRA140225_01
package:com.amazon.calculator
package:com.amazon.cloud9.systembrowserprovider
package:com.amazon.dp.logger
package:com.amazon.ods.kindleconnect
package:com.android.defcontainer
package:com.amazon.accessorynotifier
package:com.amazon.cloud9.contentservice
package:com.android.providers.downloads.ui
package:com.android.vending
package:com.android.pacprocessor
package:com.amazon.sharingservice.android.client.proxy
package:com.amazon.webview
package:com.amazon.android.marketplace
package:com.amazon.storagemanager
package:com.amazon.vans.alexatabletshopping.app
package:com.stupeflix.replay
package:com.android.certinstaller
package:amazon.speech.wakewordservice
package:com.reddit.frontpage
package:com.amazon.device.backup.sdk.internal.library
package:android
package:com.amazon.readynowcore
package:com.amazon.client.metrics.api
package:com.amazon.dcp
package:com.amazon.imp
package:com.amazon.unifiedsharesinaweibo
package:com.amazon.sync.service
package:com.amazon.frameworksettings
package:com.amazon.fireinputdevices
package:com.microsoft.launcher
package:com.android.stk
package:com.android.backupconfirm
package:com.instagram.android
package:com.amazon.logan
package:com.amazon.tcomm
package:com.amazon.redstone
package:amazon.speech.sim
package:com.amazon.identity.auth.device.authorization
package:com.amazon.kcp.tutorial
package:com.amazon.kindle.cms
package:com.android.providers.settings
package:com.amazon.kindleautomatictimezone
package:com.android.sharedstoragebackup
package:com.android.printspooler
package:com.amazon.device.backup
package:com.amazon.geo.mapsv2.services
package:com.estrongs.android.pop
packagerg.mopria.printplugin
package:com.amazon.securitysyncclient
package:com.amazon.unifiedshare.actionchooser
package:com.amazon.whisperlink.activityview.android
package:com.amazon.device.messaging
package:com.amazon.digital.asset.ownership.app
package:com.amazon.device.messaging.sdk.internal.library
package:com.amazon.providers
package:com.google.android.apps.maps
package:com.amazon.tv.ottssocompanionapp
package:com.amazon.settings.systemupdates
package:com.android.onetimeinitializer
package:com.amazon.geo.mapsv2
package:com.android.keychain
package:com.amazon.unifiedsharetwitter
package:com.amazon.knight.speechui
package:com.android.chrome
package:com.google.android.gms
package:com.google.android.gsf
package:com.android.packageinstaller
package:com.svox.pico
package:com.amazon.tcomm.client
package:com.amazon.client.metrics
package:com.amazon.device.settings.sdk.internal.library
package:com.android.proxyhandler
package:com.amazon.acos.providers.UnifiedSettingsProvider
package:com.gopro.smarty
package:com.netflix.mediaclient
package:com.amazon.firepowersettings
packagerg.videolan.vlc
package:amazon.jackson19
package:com.android.managedprovisioning
package:com.spotify.music
package:com.mediatek.atci.service
package:com.amazon.mw
package:com.amazon.pm
package:com.amazon.wifilocker
package:com.amazon.dcp.contracts.framework.library
package:com.amazon.device.bluetoothdfu
package:com.google.android.gsf.login
package:com.amazon.whisperlink.core.android
package:com.amazon.kor.demo
package:com.amazon.device.messaging.sdk.library
package:com.howie.gserverinstall
package:jp.co.omronsoft.iwnnime.mlaz
package:com.dolby
package:com.amazon.ags.app
package:jp.co.omronsoft.iwnnime.languagepack.zhcn_az
package:com.amazon.kindle.unifiedSearch
package:com.amazon.sync.provider.ipc
package:com.android.settings
package:com.google.android.apps.youtube.creator
package:android.amazon.perm
package:com.nexstreaming.app.kinemasterfree
package:com.amazon.providers.contentsupport
package:com.amazon.platformsettings
package:com.android.vpndialogs
package:com.kingsoft.office.amz
package:com.amazon.device.crashmanager
package:com.amazon.application.compatibility.enforcer
package:eu.chainfire.supersu
package:com.ivona.tts.oem
package:com.android.shell
package:com.android.providers.userdictionary
package:com.amazon.kindle.rdmdeviceadmin
package:com.android.location.fused
package:com.android.deskclock
package:com.android.systemui
package:amazon.speech.audiostreamproviderservice
package:com.here.odnp.service
package:com.ebay.mobile
package:com.amazon.avod
package:com.amazon.shpm
package:com.amazon.communication.discovery
package:com.amazon.bluetoothinternals
package:com.amazon.legalsettings
package:com.amazon.camera
package:com.amazon.device.settings
package:com.amazon.cloud9
package:com.amazon.cloud9.kids
package:com.amazon.device.sync.sdk.internal
package:com.amazon.unifiedsharefacebook
package:com.amazon.connectivitydiag
package:com.amazon.dynamicupdationservice
package:com.android.bluetooth
package:com.android.providers.contacts
package:com.android.captiveportallogin
package:com.amazon.webview.chromium
package:com.amazon.webview.metrics.service
package:com.amazon.kindle.devicecontrols
package:com.google.android.inputmethod.latin
package:com.amazon.application.compatibility.enforcer.sdk.library
maddash1337 said:
hmm maybe the service list helps ?
because you're my last hope I think
Found 121 services:
29 launcherapps: [android.content.pm.ILauncherApps]
Click to expand...
Click to collapse
This is the only one I don't recognize. Aside from that, nothing else looks out of place. Believe it or not, that's a standard length for FireOS processes.
Could this help me? https://forum.xda-developers.com/hd8-hd10/general/hd-10-2017-prerooted-xposed-image-t3772022
If I get it right this is a normal rooted image without the amazon services?!
Or is there a better image - clean android like?
maddash1337 said:
Could this help me? https://forum.xda-developers.com/hd8-hd10/general/hd-10-2017-prerooted-xposed-image-t3772022
If I get it right this is a normal rooted image without the amazon services?!
Or is there a better image - clean android like?
Click to expand...
Click to collapse
The system image just includes root and xposed. Nothing more.

Categories

Resources