Android 8 (Oreo) has a major behavior change on how device ID is manipulated, this tool helps you Query / Modify the IDs on Oreo in a programmatic way.
- For further information about the behavior changes of device ID in Oreo, see the page: https://developer.android.com/about/versions/oreo/android-8.0-changes.html#privacy-all
Looking for the App?
- See This New Threadhttps://forum.xda-developers.com/android/general/app-device-id-changer-oreo-13-aprv0-9-2-t3777299
How to use it:
- Root privilege is NEEDED.
- Download the proper version for your phone - if not sure, armv7 is **[pretty much]** working on most phones.
- You might need adb tools / Terminal Emulator.
- Copy the executable binary downloaded to /cache or other ext filesystems.
- Give 0755 permission to the executable.
- Assign/Query IDs.
Command Usage:
Step By Step Querying/Assigning IDs:
- Have the downloaded exctuable placed at the root of your SD card.
- Use either adb/Terminal Emulator to run the commands below.
Code:
su # Gain root permission if available
cp /sdcard/[EXECUTABLE] /cache/ # Copy executable from /sdcard to /cache
chmod 0755 /cache/[EXECUTABLE] # Set permission
- Query current device ID for package [PACKAGE].
Code:
/cache/[EXECUTABLE] -q -p [PACKAGE]
- Query the default device ID for package [PACKAGE].
Code:
/cache/[EXECUTABLE] -Q -p [PACKAGE]
- Make a backup first using this command.
Code:
/cache/[EXECUTABLE] -b /sdcard/settings-ssaid.xml.bak
- Preview changes. (This is not changing anything, just previewing the modification(s).)
Code:
/cache/[EXECUTABLE] -a [ID] -p [PACKAGE]
- If satisfied with the result given from the command above, run the following command to make the changes.
- Assign the ID [ID] to the package [PACKAGE] directly.
Code:
/cache/[EXECUTABLE] -i -a [ID] -p [PACKAGE]
Do not forget to REBOOT your phone after changing IDs.
- New IDs go into effect only after a reboot is performed.
Downloads:
------------------------------------------------------------------------------------------------------------------------------------------------------
I'll update this thread soon, heading out for food now
Last edited: