DJI Mimo - removing title from default templates - Android Q&A, Help & Troubleshooting

Hi guys,
In DJI Mimo app there is assets folder in the apk, where inside it there is DJI-Assets.zip, in which there is a list of templates, where each template has title.mp4.
Unfortunately through the app these titles cannot be disabled. Instead i have created empty video with ffmpeg to replace it.
Now when trying to replace it, application fails to install. I was able to solve it by resigning, but then it failed to open.
Please help, do you know how to resign it so the application will install and start normally?
Thanks.

Related

[Q] Quick way to register new file types?

Hi there!
Have searched all over and found zilch about NON PROGRAMATICALLY adding file types to Android that actually works.
Does anybody know about an app that can do it?
The most logical to me was that File Expert or ES version could do it, but couldn't find it. And some links said that Astros could do it, but haven't found the feature in their latest version at least.
I just want to be able to click on the file and have it open the app without having to open the app first.
For example if I have an attached file in another apps storage space (outside normal file space) I can't open the main app first. And I don't want to have to download/import the file. Takes too long.
Thanks!
BTW-The app in question is SimpleMind, which unfortunately haven't had the good grace to register their file type for their own creation..

How to stop the automatic creation of ".nomedia" file in a specific folder ?

How to stop the automatic creation of ".nomedia" file in a specific folder ?
Can you please let me know the steps to stop the creation of ".nomedia "file in a specific folder( Ex : Abcd album) so that i am able to the pictures of it in the gallery.Every now and then it gets created and i had to delete it manually. I am using Whatsremoved App which stores the deleted files and statuses from WhatsApp in a folder but in the folder .nomedia files gets created, thus that folder did not come in the gallery and gets hidden, no matter how many times i delete that file it keeps coming.
Also, i had used this same app on my old Moto G4 Plus and i did not face the same issue on that phone.
Please suggest a solution

Problems with Wolf Launcher

I am encountering issues with Wolf Launcher. 1. I had to uninstall and reinstall a movie app, but the launcher displayed multiple copies of the app. I could not remove the copies, even after verifying that there was only one copy on my firestick and then restarting the firestick. My only recourse was to move the copies to hidden apps. 2. The delete folder option does not work. After deleting a folder that I created it still remains in my home section. Is there a new release of the launcher that has addressed my issues, or is there a step that I have missed?
What is the name of this movie app? I'm using version 0.1.9.
Nathaniel9 said:
What is the name of this movie app? I'm using version 0.1.9.
Click to expand...
Click to collapse
Cinema HD, v2
I could not reproduce both of these points on my Fire TV Stick 4K and version 0.1.9 of Wolf Launcher. See Video in file attachment.
PS: However, a folder can actually no longer be deleted after a long period of time. Unfortunately, the only thing that helps is to delete the data of the app in the app info so that the created folder disappears again.
Nathaniel9 said:
I could not reproduce both of these points on my Fire TV Stick 4K and version 0.1.9 of Wolf Launcher. See Video in file attachment.
PS: However, a folder can actually no longer be deleted after a long period of time. Unfortunately, the only thing that helps is to delete the data of the app in the app info so that the created folder disappears again.
Click to expand...
Click to collapse
I will make the necessary changes based on your advice. Thank you for your assistance!
Easy install for newest version of wolf launcher on my fire tv cube. Loving widget space and the grid guide button on the newest remote gets me back to linear tv. I would pay Amazon $40 a year to replace the ads with a space for widgets!!!
I can confirm the folder deletion bug in the 0.1.9-wolf launcher, but the fix is easy:
1. Unhide all apps.
2. Open the folder.
3. Move all items in the folder to the built-in Applications Section.
4. Delete the folder.
5. Rehide duplicate apps while they are in the Applications Section.
dajhorn said:
I can confirm the folder deletion bug in the 0.1.9-wolf launcher, but the fix is easy:
1. Unhide all apps.
2. Open the folder.
3. Move all items in the folder to the built-in Applications Section.
4. Delete the folder.
5. Rehide duplicate apps while they are in the Applications Section.
Click to expand...
Click to collapse
Thanks for the advice, this solved my issue!

Sign In with google on modified APK file

Hi every1,
Important threads:
- https://www.thecobraden.com/posts/unblocking_firebase_ids/
Explanation:
I've been messing, for some time now, with android tampering/reverse engineering. But, there is a problem that I can't seem to overcome, neither find any solution for it on any foruns, that is "Signing In with Google" on the app after modifying it (decompiling/recompiling).
The process I follow is as simple as:
Pulling the APK file from my android using adb;
Opening the APK file using jadx-gui to see the contents and search for what I want to change;
Decompiling the APK using APKEasyTool and searching for the .smali file I previously wanted to change;
Changing the file and recompiling the APK with APKEasyTool;
(optional) In case the APK file is splitted, installing it on my device using SAI.
Results:
After this process the app works fine, but as mentioned, I can't no longer sign in on the app with Google. As far as I know, when you click the sign-in button, an HTTP request is made to Google Servers, asking for a token, than can later be used to sign-in on the app (this is made by integrating Firebase in the android project). And, it's in this process that it fails, because on this request it is also sent the SHA-1 fingerprint as a Request Header, which was changed when signing the APK file.
Using a tool like MITMProxy I was able to repeat this request with the APK original SHA-1 (retrieved with keytool -printcert -jarfile <original.apk>), but this requires moving traffic through, for instance, my computer - as a proxy server. (And for some reason it didn't always worked).
Question:
Does anyone have any thoughts on this, or have successfully been able to decompile/recompile an apk and still be able to use Google Sign In option? How can I modify an apk file and still be able to sign in on it with my Google account?
i mean if your device is rooter, you can login in origin apk and use lucky patcher backup data ,install modified apk then do a restore data in to app
Play Services will not allow it unless the apk is signed by Google. The solution is to set the public key for the modified apk and patch Android Framework's signature check to make the system think it's valid.
The yellow smiley face app mentioned above does this, as well as microg.

Modify apk

Is theres a way to modify and run this apks without unlocking secrecy or auth token? i pulled it from my oppo and when i run the app it'll update the existing app
norimee said:
Is theres a way to modify and run this apks without unlocking secrecy or auth token? i pulled it from my oppo and when i run the app it'll update the existing app
Click to expand...
Click to collapse
You can't modify an APK, as it's in binary. You could remove it though - Let me know if you need help.
An APK ( read: Android Application Package ) file by nature is a ZIP file - not a binray - what can get extracted with any zip utility (e.g. 7zip), you can view all resources correctly but all java files are not correctly decompiled.
Content of an APK file looks like
You can also see the contents of an APK file within the Android device itself, which helps a lot in debugging, using
https://play.google.com/store/apps/details?id=com.dasmic.android.apkpeek
All files including the manifest of an app can be viewed and also shared using email, cloud etc., no rooting required.

Categories

Resources