APK (Game) Modder v1.0 Beta - HTC One X

Please Avoid Quoting This Post Into This Thread
Lets hope you can all put it into good use.
This App Will Read A Mod Configuration File & Patch Your Game's APK to increase/decrease graphics Quality to make the game more playable.
{
"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"
}
Download Link V1.0b
Download Link V1.0c
Requirement​Java
.Net Framework 3.5(Only need this if you get .NET framework initialization error)
System.Xml.Linq.DLL (This should be part of .Net 3.5)
Ionic.Zip.DLL (This is embedded in the exe itself)
^^While the 2 DLL are essential you SHOULDN'T need to download them, unless you're getting an error regarding missing "Blah assembly" or something to that extent^^
^^If you needed to download the DLLs place them in the same folder as the exe^^​
Instructions​
Run The App
If You Don't Have The Mod Downloaded, Download Them Below & PLACE them into the Mods Folder
Choose The Mod In The App
Browse For The APK & Patch
Once patched you can find the new apk inside the signed folder
Install Tt Over Your Game & Enjoy
Notes​This Thread Is For The App & Not Mods Discussions, Please Keep Those In The Games Mods Thread
As I'm Extremely Busy, PM'ing Me Isn't Wise, As I Check XDA Once Or Twice A Day,
Posting Your Problem Here Or The Mods Thread Is Better For You.... As More People Will See It, Thus More Can Help You.
Unless It's Something You Can't Post On The Thread For Some Reason.​
Check Out The Next Few Posts For​
Mods
How To Create Mods
How To Extract Your APK For Patching Non/Rooted
Feature Updates​I Hope To Make The Process Of Creating Mods Much Easier
1) By Creating An Archive That Would Contain All Of The Patch Details, Author, Cover Picture
2) By Making The Creating A Method To Create The Archive For You​

Download & Place These Archives(Zip) into the Mods Folder Without Extracting Them
Please, Keep All Mods discussions (it's Working/Not Working) on the Mods Thread
Need For Speed Most Wanted v1.0.28 - Gamer Modder Pack By Hamdir
Need For Speed Most Wanted v1.0.46 - Gamer Modder Pack By Hamdir
Modern Combat 4 v1.0.1 - Gamer Modder Pack By Hamdir

Please Don't Quote This Entire Post
Ok So You're Hooked And Want To Mod Your APK but can't get it....
well it should be simple enough,
Method 1,
Get ES File Explorer File Manager & Run It
Click On The AppMgr Which Is The 2nd Icon To The Right Top Hand,
Look For The App You Want To Retrieve,
Long Click On It & Choose Backup,
That Would Cause The APK to be copied to /sdcard/backups/apps/
Find It There And Copy It To Your Pc.
Method 2,
Let Take Modern Combat 4: Zero Hour As an Example;
Open The Play Store Through Your PC
Look At The Link https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftM4HM&feature=featured-apps
that Highlighted part should be the name of the APK...
So Try This
Code:
adb pull /data/app/com.gameloft.android.ANMP.GloftM4HM-1.apk com.gameloft.android.ANMP.GloftM4HM-1.apk
Should That Fail try replacing the -1.apk with -2.apk and that should do the trick
Method 3,
If You're Rooted, Use Any File Explorer And Navigate To /data/app/
Locate The APK and copy it to the SDcard then onto your computer,
Even faster Still Once You Know The Exact Name Use
Code:
adb pull /data/app/gamename.apk gamename.apk

Quick Run Down of how this works
Mode1, will decompile the APK, Copy The Modded Smali Code, Recompile, Sign & ZipAlign
Mode2,will decompile the APK, Find & Replace A Section Of The Smali Code, Recompile, Sign & ZipAlign
To Create Your Own Mods, Use One Of The Mods In The Mods List As A Sample For The Structure,
And Due Note that the MC4.XML can be called whateveryoulike.xml and it will still work
Samples Based On MC4, Mode1
Code:
<?xml version="1.0"?>
<Game>
<Name>Modern Combat 4 v1.0.1 Mode 1</Name>
<Description>This Mod Increases Effects
Tested on Version: 1.0.1
Mod Credit: Hamdir
Patch Mode: 1
</Description>
<Cover>mc4_cover.jpg</Cover>
<Patch ID="1">
<Mode>1</Mode>
<OldF>com/gameloft/android/ANMP/GloftM4HM/MC4.smali</OldF>
<NewF>MC4/MC4.smali</NewF>
</Patch>
</Game>
OldF= File To Be Replaced
NewF=Modded File Found in App Directory (Smali/MC4/MC4.smali)
Mode2
Code:
<?xml version="1.0"?>
<Game>
<Name>Modern Combat 4 v1.0.1 Mode 2</Name>
<Description>This Mod Increases Effects
Tested on Version: 1.0.1
Mod Credit: Hamdir
Patch Mode: 2
</Description>
<Cover>mc4_cover.jpg</Cover>
<Patch ID="1">
<Mode>2</Mode>
<SmaliF>com/gameloft/android/ANMP/GloftM4HM/MC4.smali</SmaliF>
<Find>.method public static getGeneration()I
.registers 7
const/4 v2, 0x1
const/4 v1, 0x0</Find>
<Replace>.method public static getGeneration()I
.registers 7
const/4 v0, 0x2
move-result v0
const/4 v2, 0x1
const/4 v1, 0x0</Replace>
</Patch>
</Game>
SmaliF, Smali File To Be Edited
Find, Line To Be Replaced
Repace, Line To Be Replaced With
OFC, You Can Have Multiple Patches With Multiple Modes Applying To the Same/Difference Smali Files
Once You Run The App, it will create the necessary Folders which you'll extract the mods into

it dont want to work -.-

My mod packs for both MC4 and NFS are tested and working

This might be one of the best tool for HOX user. Thank for make it happen. Gonna test it when I have free time..
Sent from my HTC One X using Tapatalk 2

Great initiative mate! I'm glad you have decided to make this application. I'm sure this will help a lot of HOX users.

Thx,
Nice app

hamdir said:
My mod packs for both MC4 and NFS are tested and working
Click to expand...
Click to collapse
Could you please make a how to Setup Video ?
Sent from my HTC One X using xda premium

hamdir said:
My mod packs for both MC4 and NFS are tested and working
Click to expand...
Click to collapse
This makes me want to take up gaming on the HOX full time Thanks Thunder07!!!! Slightly ot but when this gets up and running are you thinking of doing anything for GTA vice city Hamdir?

Thunder you are the man another wicked tool thanks carnt wait to try when I get back from work thanks again man
skydragon team

Do the patched .apk files work for other phones too? I would really like to try upping the graphics to max on my Nexus 4.
Sent from my Nexus 4 using Tapatalk 2

alwaysbboy said:
Do the patched .apk files work for other phones too? I would really like to try upping the graphics to max on my Nexus 4.
Sent from my Nexus 4 using Tapatalk 2
Click to expand...
Click to collapse
yes it might work for other devices

Awesome, thanks thunder. I have tried many ways to getfull effects on MC4 on my EVO 3D but everything failed. Chanifire, file edits etc none worked. But this tool did the job. My MC4 graphics mode was 1 by default. I changed it to 3 ( yes 3) and its working great. Thank you.
But most wanted didnt change for me . Do you know any fix? i have the same version as you.
---------- Post added at 08:24 PM ---------- Previous post was at 08:22 PM ----------
hamdir said:
yes it might work for other devices
Click to expand...
Click to collapse
hey hamdir, do you know of any fix for NFS MW ? You had helped me on evo 3d section, but your app didnt changed nything . Thank you.

Hey guys
tried the app with 2 computers and always getting the same error.

@Everyone,
Thanks For The Support, I Didn't expect so many people would be interested in this app
@tessut,
Telling me it doesn't work wont make it work,
if you're getting an error, report it,
the mod list is empty, download them from the mod post,
if the new apk is no different, could be because you're reinstalling the same APK and not the new one in the "signed" folder,
if the new APK is not working, well let hope it does because i can't think of anything else at this moment.
also making a video would take time.... i really dont have any,
i want to make few updates to the app but still dont have time to do that aswell.
@MeLViN-oNe,
i can see Ionic.Zip in the error, try downloading that DLL from the 1st post.

thunder07 said:
@MeLViN-oNe,
i can see Ionic.Zip in the error, try downloading that DLL from the 1st post.
Click to expand...
Click to collapse
Thanks, that did the job
Next time i should read the entire OP

waiting for NFSMW v1.0.46 Gamer Modder Pack :fingers-crossed:

Not working.
File not found error.
Win 7 64bit
on win 7 32 bit it worked.

Related

[Tutorial][App-mod] ICS styled Tapatalk 2

When I heard Tapatalk 2 is coming I hoped they finally will add support for Holo and make app look nice on ICS. Unfortunately I was wrong - Tapatalk still don't have Holo. Moreover they added even more ugly orange. Maybe it looks good on Gingerbread, but on ICS it is horrible. So I decided to fix the app myself and now it looks much better IMO.
This will be a tutorial how to theme Tapatalk to ICS (it is a paid app, so I can't post complete apk).
Warning: After modification you will lose the ability to auto update app from Play store - modded app must be resigned and your sign will be another than one from the original app. To update you will have to uninstall your modded app, install original one from Play Store and mod it again.
Warning 2: Theme is optimized for Tapatalk dark skin. There will be many bugs on light skin, so don't use it.
Before you start install the Full ICS mod from BlackDino: http://forum.xda-developers.com/showthread.php?p=24689619 It will enable most of the Holo theme in Tapatalk and other non-Holo apps.
Some screens:
{
"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"
}
Known bug:
- Letter color issue in threads and section menu (where you can subscribe, etc.). I don't know how to fix it.:
Let's start.
1. Download ICSTapatalk_Resources.zip from attachment. It contains all needed files. It includes apktool and signing tools. To run this tools you must have Java Development Kit. If you don't have it install it from here: http://www.oracle.com/technetwork/java/javase/downloads/jdk-7u3-download-1501626.html
2. Pull framework-res.apk from your device (/system/framework), put it in apktool folder, open a command prompt window and run command:
Code:
apktool if framework-res.apk
3. Pull your Tapatalk apk from /data/app on your device and rename it to, for example "tapatalk.apk". Then put it in apktool folder.
4. Decompile the apk using command:
Code:
apktool d tapatalk.apk
5. After that put all files from the "res" folder in my zip to the corresponding folders in decompiled apk.
6. Compile apk using command:
Code:
apktool b tapatalk TapatalkICS.apk
7. Move the compiled apk to folder with signing tool and run command:
Code:
java -jar signapk.jar testkey.x509.pem testkey.pk8 TapatalkICS.apk TapatalkICS-signed.apk
8. Copy the signed apk to your device, uninstall original app, install your apk and enjoy the new appearance of Tapatalk.
Special thanks go to BlackDino for creating a full ICS theme. Great work.
Sir you have my eternal thanks. I really dislike the orange in this app.
Sent from my Galaxy Nexus using Tapatalk 2
Hi. Thank you for sharing, that looks great. Yet, I think the zip is corrupted.
Wow! Will u be able to make an apk for us nonrooted?
Beautiful theme. I wish they would implement something like this and get rid of the hideous orange.
blackbearblanc said:
Wow! Will u be able to make an apk for us nonrooted?
Click to expand...
Click to collapse
He can't upload apk because tapatalk isn't free app.
the resources zip doesnt work
Can you re-up the res folder? The attached ZIP is corrupt. Thanks!
Yup, zip file is corrupt.
While we're waiting on this. I've been doing some playing around and a lot of the coloring can be solved by editing styles.xml and colors.xml .
As a side note, if you have tapatalk from the Amazon store, you will not be able to use this mod. Amazon DRM prevents any tampering.
I hope this is the right res.rar. Found it in another post.
For me it looks like a problem with attachments - it downloads only first 554 bytes. I tried to download attachment from another thread and had same problem. I don't have the zip - I accidentally deleted it.
Sent from my Galaxy Nexus using Tapatalk 2
I did email the guy who makes the themes for the various themed tapatalk apps from the play store suggesting about making an ICS themed styled one and he said;
" Thank you for your email, and your support Stephen, we really appreciate it! When the next update is released, an ICS (Ice Cream Sandwich) version will also be available. Keep your eyes open!
Regards,
Ryan Buckner Droid DOES!!"
So maybe its just easier to wait and get this in a legit way that can be updated through play store
Sent from my Galaxy Nexus using Tapatalk 2
Btw tapatalk has been updated again so you might as well start from fresh
Sent from my Galaxy Nexus using Tapatalk 2
Pawbrotm said:
For me it looks like a problem with attachments - it downloads only first 554 bytes. I tried to download attachment from another thread and had same problem. I don't have the zip - I accidentally deleted it.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
Can't you just pull your res folder from Tapatalk?
double post
artvandelay440 said:
This. Happy theming.
Click to expand...
Click to collapse
that zip is faulty just like the OP. I'd suggest making another zip with the folder and just use default archiving settings
posted working zip below
Still corrupt. Are you guys uploading from behind a corporate firewall or something?
Pawbrotm said:
For me it looks like a problem with attachments - it downloads only first 554 bytes. I tried to download attachment from another thread and had same problem. I don't have the zip - I accidentally deleted it.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
do you know where you got it from? the creator such be notified for today's update from the market
MrSmith317 said:
Still corrupt. Are you guys uploading from behind a corporate firewall or something?
Click to expand...
Click to collapse
Nah- this is odd. I've uploaded zillions of zip files without issue. I'll host it myself and see if it's just xda...
---------- Post added at 02:45 PM ---------- Previous post was at 02:43 PM ----------
Try this one, privately hosted:
That one worked. XDA must be having some server issues.

Remove Recent Apps

I use the RCMixS rom (with Htc Sense 2.1 + 3.0) and I'm trying to remove the Recent Apps' bar from the SystemUI menu.
I have been following 3 or 4 different guides, but no one worked for me...
Can anyone please help me removing the Recent Apps?
This is my SystemUI.apk
I hope that someone can help me
Thank you in advance,
Sbarabau
Sbarabau said:
I use the RCMixS rom (with Htc Sense 2.1 + 3.0) and I'm trying to remove the Recent Apps' bar from the SystemUI menu.
I have been following 3 or 4 different guides, but no one worked for me...
Can anyone please help me removing the Recent Apps?
This is my SystemUI.apk
I hope that someone can help me
Thank you in advance,
Sbarabau
Click to expand...
Click to collapse
Do u have the RCMix tweaks in settings? Coz u can disable the recent app in notifications there.
(requires reboot)
Sent from my HTC Desire
jmcclue said:
Do u have the RCMix tweaks in settings? Coz u can disable the recent app in notifications there.
(requires reboot)
Sent from my HTC Desire
Click to expand...
Click to collapse
No, I don't have RCMix Tweaks... In my case the only way to remove the recent apps is to modify the SystemUI.apk
I've followed several guides, but unfortunately no one worked for me...
Up....
Up...
Post a screen shot of what u have, then clearly state what u want to remove? Draw on the screen shot if u need to
Sent from my Galaxy Nexus using Tapatalk 2
{
"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"
}
Yeah same problem .. but I found some nice step by step tutorial to remove it using apktool, i did exactly what it said but i could'nt edit some framework files and now i lost the link to the tutorial ...
Sbarabau said:
Click to expand...
Click to collapse
O I thought you were talking about something else, is your from deodex that your running? And what android version are you one?
Also upload your framework-res.apk
And com.htc.resources.apk
Sent from my Galaxy Nexus using Tapatalk 2
The way to do it,
Deconpile the syatemui.apk
At SystemUI\smali\com\android\systemui\statusbar - open the file StatusBarFlag.smali with
Find
Code:
sput-boolean v0, Lcom/android/systemui/statusbar/StatusBarFlag;->HTC_RECENT_APP:Z
Change to
Code:
sput-boolean v2, Lcom/android/systemui/statusbar/StatusBarFlag;->HTC_RECENT_APP:Z
runandhide05 said:
The way to do it,
Deconpile the syatemui.apk
At SystemUI\smali\com\android\systemui\statusbar - open the file StatusBarFlag.smali with
Find
Code:
sput-boolean v0, Lcom/android/systemui/statusbar/StatusBarFlag;->HTC_RECENT_APP:Z
Change to
Code:
sput-boolean v2, Lcom/android/systemui/statusbar/StatusBarFlag;->HTC_RECENT_APP:Z
Click to expand...
Click to collapse
I've already tried this but it force closes. Now i upload the framework and the com.htc.resources apks
SystemUI.apk is deodexed and I'm running Gingerbread 2.3.3
This is the link to download framework-res.apk and com.htc.resources.apk
com.htc.resources.apk: https://rapidshare.com/files/4035992333/com.htc.resources.apk
framework-res.apk: https://rapidshare.com/files/646835451/framework-res.apk
Thank you for the help you're giving to me
Let me ask u this, you say it causes force close,
Have you tried to decompule the systemui and DO NOT make any changes and simply recompile the apk, then push to your phone? Try this and see if the systemui still force closes, I have seen APKTOOL mess up a LOT of HTC apks when recompiling , try that and report back
Sent from my Galaxy Nexus using Tapatalk 2
runandhide05 said:
Let me ask u this, you say it causes force close,
Have you tried to decompule the systemui and DO NOT make any changes and simply recompile the apk, then push to your phone? Try this and see if the systemui still force closes, I have seen APKTOOL mess up a LOT of HTC apks when recompiling , try that and report back
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
I've tried as you said, and it doesn't work
First I tried to decompile, recompile and pushing the file... I rebooted and SystemUI didn't start...
Then I tried to recompile with his META-INF datas... the result is the same...
Can you please try to edit the SystemUI.apk and give me it back, to see if I am doing something wrong or not?
Thank you in advance
Sbarabau said:
I've tried as you said, and it doesn't work
First I tried to decompile, recompile and pushing the file... I rebooted and SystemUI didn't start...
Then I tried to recompile with his META-INF datas... the result is the same...
Can you please try to edit the SystemUI.apk and give me it back, to see if I am doing something wrong or not?
Thank you in advance
Click to expand...
Click to collapse
Okay,
in this zip is four SystemUI.apk
each one is in its own folder, there are two sets, one set i made NO changes to the smalis, just decompiled and then rebuilt, one is a distro, and one is a little bit of a different way to use apk (but i have noticed it to work best when dealing with HTC)
try both, remember to set your permissions correctly on the apk after you move it to /system/app then reboot.
if one of the ones that i did not change the smalis on works, use the corresponding files in the remove recent apps folder
for example
if the no changes distro build works and does not casue force close, go straight to the removed recent apps folder labels disrto and use that one.
hope this helps you out,
by the way, what part of Italy are you from?
zip
https://www.box.com/s/80233766e0e29235614f
runandhide05 said:
Okay,
in this zip is four SystemUI.apk
each one is in its own folder, there are two sets, one set i made NO changes to the smalis, just decompiled and then rebuilt, one is a distro, and one is a little bit of a different way to use apk (but i have noticed it to work best when dealing with HTC)
try both, remember to set your permissions correctly on the apk after you move it to /system/app then reboot.
if one of the ones that i did not change the smalis on works, use the corresponding files in the remove recent apps folder
for example
if the no changes distro build works and does not casue force close, go straight to the removed recent apps folder labels disrto and use that one.
hope this helps you out,
by the way, what part of Italy are you from?
zip
https://www.box.com/s/80233766e0e29235614f
Click to expand...
Click to collapse
I've tried them all and the only one who worked for me is the one under "/decomp then rebuilt/no changes build/SystemUI.apk"
P.s: I'm from northern Italy
Sbarabau said:
I've tried them all and the only one who worked for me is the one under "/decomp then rebuilt/no changes build/SystemUI.apk"
P.s: I'm from northern Italy
Click to expand...
Click to collapse
did all the others cause force close?
PS i ask cause my family is from Bari
edit:
try this one
runandhide05 said:
did all the others cause force close?
PS i ask cause my family is from Bari
edit:
try this one
Click to expand...
Click to collapse
Force close again...
-------------------------------------------------------
Build not modified: worked xD
Distro not modified: no force close, but it didn't start
Build modified: force close
Distro modified: force close
-------------------------------------------------------
P.S: I'm from Mantova
Sbarabau said:
Force close again...
-------------------------------------------------------
Build not modified: worked xD
Distro not modified: no force close, but it didn't start
Build modified: force close
Distro modified: force close
-------------------------------------------------------
P.S: I'm from Mantova
Click to expand...
Click to collapse
ok, then clearly the same mod does not work as it use to.
but atleast the recompile works(kinda)
once u build the apk, open the original apk in 7zip and open the file directory in apktool /systemui/build/apk and copy everything but the AndroidManifest into the archive of the orginal apk.
see pic
runandhide05 said:
ok, then clearly the same mod does not work as it use to.
but atleast the recompile works(kinda)
once u build the apk, open the original apk in 7zip and open the file directory in apktool /systemui/build/apk and copy everything but the AndroidManifest into the archive of the orginal apk.
see pic
Click to expand...
Click to collapse
Still force close

RUJELUS22's AIO script (Updated 2-16-13)

The Goods​
About My Script:
I have been using and working on this script for sometime now, I started back when ICS first came out and we where no longer able to decompile apks in 1 step. All of the mods and things that I have posted on xda in the last year, have been made with this script. This script allows for editing those apks with a few buttons clicks. It can edit apks from any version of android. It has been posted on the Team Venum Forum and has been working for many of the Team Venum members.
With this script you will be able to:
Compile/decompile (Odexed and Deodexed) apks and jars
Make CWM zips of your projects
Flash and Push things to the phone
Make and install signed apk projects
Search decompiled apks
and much much more...
Sections:
Header bar: This displays the script info and current project.
AIO Tool: These are all options that you can use to mod. They will all be highlighted if they are available, otherwise they will be grayed out and have a short description why it’s not available.
Mid Section: 11 and 100 will always available. 11 allows you to choose your project from the “place-here-for-modding” folder. 100 will refresh the menu (usually for connecting/dis your phone).
Odex Section: These options will only be enabled if a phone is plugged in. The phone you are working with is needed for odexing and deodexing.
- 20 Deodex the entire ROM on your phone
- 21 Deodex just one apk or jar file
- 22 Odex the entire ROM on your phone
- 23 Odex a single file
Special Items section: These are portable apps and options.
- 91 Open Color edit. Allows you to visually view and change the color.xml file
- 92 Compile all .9 images inside the dot9 folder
- 93 MD5 Checker – Seldom used, handy to double-check MD5 to verify good file downloads.
- 94 Phone/Emulator – menu for phone and emulator choices.
- 95 Search tools – app to search inside smali or res files (ie textColor="#ffc0c0c0"). (Must have C++ runtime or PRGrep installed)
- 96 Open Notepad++ – best Windows/Android editor that has smali and log syntax highlighting tweek.
- 97 Color Wheel – color wheel with cool color drag and drop from anything feature.
- 98 Color Change – for smali only. Converts from hex to smali.
- 99 Options & Misc – set Header Bar options, clean folders and check logs, Sounds, and color theme for the Script.
- ** Exit the App – usually a better option for closing the Script because it closes the ADB running in the background.
I tried to designed this to make editing apks and doing things with your phone as easy as possible.
{
"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"
}
So here you go. If you have any questions or would like to see something added just let me know.
To Install: (For Windows Only)
1. Extract the zip file to a folder on your computer that does not have spaces in the name Ex. C:\apk\
2. Run the Start_AIO script (When this is opened it will check for updates and make sure adb and java are installed. Will also make all of the needed folders in the AIO dir)
3. Place an apk or jar in the place-here-for-moddding folder and have fun.
To Update: (For Windows Only)
1. Extract the new zip into you previous AIO folder.
2. Let it overwrite the current version files
3. Have Fun.
Requirements:
1. Java JDK must be installed
2. Android SDK must be installed and up to date
Downloads:
Downloads on TeamVenum.com
ChangeLog:
Version 2.0.0.3
-Added New chgcolor that is smaller
-Added New hex to smali script from Allockse and removed xUltimates colorchange.exe
Version 2.0.0.2
-Added Updated apktool 1.5.2
Version 2.0.0.1
-Added Updated apktool 1.5.1
-Updated aapt
-Updated notepad++
-Fixed a few bugs in the script
Setting up your PC for success!
1. Download and install the Java JDK from here
http://www.oracle.com/technetwork/java/javase/downloads/index.html
2. Download and install the Android SDK
http://developer.android.com/sdk/index.html
3. After the SDK is installed open it and check and install these boxes
Android SDK Tools
Android SDK Platform-tools
Check the whole folder for any version you want to work on (You can check multiple, I have from 4.1 to 2.3.3)
When installing if any ask for a password just click cancel on those
4. Set your windows environment path
Follow this guide until step 3 - http://www.itechtalk.com/thread3595.html
In the image in step 4 find the Path Variable in the bottom section (Double Click to edit it)
Add your android sdk platform-tools folder (Usually C:\Program Files (x86)\Android\android-sdk\platform-tools or C:\Program Files\Android\android-sdk\platform-tools
So at the end of what is already there in Path put this ;C:\Program Files (x86)\Android\android-sdk\platform-tools (Make sure to add the ; before the whole string)
Click ok and save all of that
5. Open my script and setup your framework files
Choose option 99, hit enter
Choose option 4, hit enter
Choose your phone, or choose the last option to put the files in manually.
Choose option 11, select your apk and have fun modding.
6. At this point you should be all setup and should be able to decompile and compile apks and jars successfully.
Please let me know if I forgot something, it has been a minute since I set it up.
Nice work :good:
Sent from my SPH-D710 using Tapatalk 2
You are a beast, thanks for the awesome script!
DarkJelly Gnex on JellyBro sent this from the app.
Thanks! Awesome work!
This will be in Android Development for all phones very soon. This is real development. Congrats and thanks to my friend Rujelus. If a noob like me is starting to understand it, this is going to make themers lives so much easier.
Sent from my Galaxy Nexus using Xparent SkyBlue Tapatalk 2
This is an awesome time-saving tool. Thanks for sharing.
Sent from my SPH-D710
thank you for this. tyvm.
So please forgive the noobish question, but I've been doing some reading in preparation of trying to learn how to theme.
Could I literally create a theme for a TW Rom using this tool? I say SystemUI mentioned but not Framework, so I wasn't sure if I could create an entire theme using this tool or not.
You sir are the man! Thank you for such a great tool. :thumbup::beer:
Sent from my SPH-D710 using xda premium
Thanks for all your work to make it easier for us. Great Tools. :victory:
Working on a new version the last few days that will have the ability to, work with odexed ROMs. It will be able to make a flashable zip to deodex and odex the ROM. It will also be able to pull a file deodex it, then you can mod it. Then it will compile it, reodex it and push it back to the phone.
Still got a bit of work to do on it, but I wanted to see if there was interest in this, or if there was something else in regards to odexing that you would like to see added.
mjs2011 said:
So please forgive the noobish question, but I've been doing some reading in preparation of trying to learn how to theme.
Could I literally create a theme for a TW Rom using this tool? I say SystemUI mentioned but not Framework, so I wasn't sure if I could create an entire theme using this tool or not.
Click to expand...
Click to collapse
Yes you can mod any apk or jar with this. The only other thing you would need is some sort of image editor. Like photoshop or paint.net
rujelus22 said:
Working on a new version the last few days that will have the ability to, work with odexed ROMs. It will be able to make a flashable zip to deodex and odex the ROM. It will also be able to pull a file deodex it, then you can mod it. Then it will compile it, reodex it and push it back to the phone.
Still got a bit of work to do on it, but I wanted to see if there was interest in this, or if there was something else in regards to odexing that you would like to see added.
Click to expand...
Click to collapse
Great concept. Are you sticking strictly with the apk's or will this script be able to deal the jar files as well for odex/deodexing?
tdunham said:
Great concept. Are you sticking strictly with the apk's or will this script be able to deal the jar files as well for odex/deodexing?
Click to expand...
Click to collapse
It does apks and jars
Sent from my SPH-D710 using Tapatalk 2
rujelus22 said:
Yes you can mod any apk or jar with this. The only other thing you would need is some sort of image editor. Like photoshop or paint.net
Click to expand...
Click to collapse
Thanks, I'm going to use this as my starting point for making themes!
So the new AIO is almost ready. I have some people testing it out. What is everyone's thoughts about a free and a pro version for $1. The pro version would allow for batch odexing and deodexing of a rom in minutes with one click. The free version would still allow for editing and modding odexed files the same way we do deodexed now.
With this it will make it so there is no reason to have a deodexed ROM.
New things that have been added are
-odexing full ROMs
-deodexing full ROMs
-odexing and deodexing single files
-editing of odexed apks and jars with no extra steps
-making/restoring/deleting/and fixing md5 mismatch for nands
-Tons of optimized code
-Redone most menus for easier viewing
-More I am sure I am forgetting
Let mess know what you think. I would definitely like some opinions.
Sent from my SPH-D710 using Tapatalk 2
You do so much for us that I think giving back is always good. I am up for it.
Sent from my SPH-D710 using Tapatalk 2
A dollar for the project version..?
I say go for it..a dollar is not much and some devs would charge way more for those types of options
-TeaM VeNuM Like A Boss
-Galaxy Note II Edition

How to Convert games from ARMv7 to ARMv6

INFORMATIONS:
This tutorial is only for educational needs,
I'm not responsible for using it for other purposes U can convert only Unity 3D games.
For now We don't know how convert GLU games (based on unity) cuz libs are in .obb files.
Not all games work after convert, for example shadowgun,asphalt7,amazing spiderman.
REQUIREMENTS:
Zip signer (for android device) [DOWNLOAD] or
This tool (for pc) >>> AndroidTools Package by kondzio911 <<<
Libs from unity engine [DOWNLOAD]
Any file manager suggestn.:- winrar,winzip...
How to Convert
STEPS:
1. Check to see if game is based on unity.
Open APK file (winrar etc.) and go to :
Apk->Libs->Armeabi-v7/ and check this 2 files:
-Libmono.so
-Libunity.so
If game has this two libs is based on unity so we try convert.
2. Check the versions of the unity 3D.
Open your apk WITH winrar OR winzip and go to:
Apk->assets->bin->Data here - you can open so much file to get info, but we try with file mainData - Open with some txt editor(notepad or notepad++).
now look at ths image for conforming which i hav attached:
{
"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"
}
At first line u get info about version of libs, just see this: 3.5.6f4 (every game has different versions)
Now delete both armv7 libs from game folder by opening in winrar:
from:- (1)Apk->lib-> here (armeabi-v7)
And from:- (2)Apk->assets->libs-> here
3. Replace with Armv6 libs
Just open file libs.zip which i hav given links on the top and get libs with your version (we have here 3.5.6f4)
And copy to both (1)apk->lib and
(2)Apk->assets->libs(by opening in winrar)
4.Now close everything nd copy tht apk to your sdcard
FINISHING STEP:
If u finish everything remember to sign apk which u hav to install in ur android device from above given link, you can use zipsigner for android or tools by kondzio for PC
CREDITS:
PSYCHO-DARSH
______________________________________THE-END__________________________________________________
written by,
pshyo-DARSH
Convert ARMv7 to ARMv6(easiest way)
FIRST:
place your apk in 'AndroidTools' folder, and change it's name (apk) to any simple like I've got .apk of subway surfer 1.5, I'm changing it to 'subway_15.apk', that you can remember.
OPEN: START.bat [it opens cmd.exe with proper location]
DECOMPILE:
-type this:
Code:
apktool d -r subway_15.apk
-now you can edit your apk, apktool will create folder with name of your apk, in my case it's 'subway_15'
COMPILE:
-type this:
Code:
apktool b subway_15
if you get error, you've done something wrong while editing.
SIGN:
-type this:
Code:
java -jar signapk.jar testkey.x509.pem testkey.pk8 subway_15\dist\subway_15.apk subway_15_signed.apk
It will create subway_15_signed.apk in folder 'AndroidTools'
If you have trouble with this just change your name of apk to 'subway_15' and write lines I wrote here.
CREDITS:
PSYCHO-DARSH
______________________________________THE-END__________________________________________________
written by,
pshyo-DARSH
PRESS THANKS IF YOU NEED MORE​
can u port nfsmw for our ace. plz
Sent from my GT-S5830 using Tapatalk 2
oops
immy28 said:
can u port nfsmw for our ace. plz
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
a big no because the games have different libs starting with 4.0 so this libs hv nt come yet so its immpossible
for games like nfsmw,asphalt7,amzing spiderman,etc.........:crying:
______________________________________________________________________________________________________________________________
PSYCHO-DARSH
PRESS THANKS IF i helped you​
darshcracker said:
a big no because the games have different libs starting with 4.0 so this libs hv nt come yet so its immpossible
for games like nfsmw,asphalt7,amzing spiderman,etc.........:crying:
______________________________________________________________________________________________________________________________
PSYCHO-DARSH
PRESS THANKS IF i helped you​
Click to expand...
Click to collapse
temple run 1 or 2??
vaibhavx said:
temple run 1 or 2??
Click to expand...
Click to collapse
armv6 versions of both are available. check themes and apps section.
vaibhavx said:
temple run 1 or 2??
Click to expand...
Click to collapse
temple run 2,subway surfer ===links.....
http://forum.xda-developers.com/showthread.php?t=2116522
http://forum.xda-developers.com/showthread.php?t=2080045
other games:----
http://forum.xda-developers.com/showthread.php?t=1961791
_________________________________________________________________________________________________________________________PSYCHO-DARSH
please PRESS THANKS if i helped you​
thanks
Thanks.I downloaded your libs and converted many games to armv6 by myself .But I have a problem,your libs contain the unity versions of 3.x.x fx,.But some games dont use these unity versions you gave,and i know that unity published 4.0.1,i searched many times,but i cant find the updating libs for armv6.Whats worse,i am a chinese,many websites abroad i cant go in my country without VPN .So what should i do?
hcnhcn012 said:
Thanks.I downloaded your libs and converted many games to armv6 by myself .But I have a problem,your libs contain the unity versions of 3.x.x fx,.But some games dont use these unity versions you gave,and i know that unity published 4.0.1,i searched many times,but i cant find the updating libs for armv6.Whats worse,i am a chinese,many websites abroad i cant go in my country without VPN .So what should i do?
Click to expand...
Click to collapse
no man 4.0 is not publised yet.............
PRESS THANKS IF i helped you​
darshcracker said:
no man 4.0 is not publised yet.............
PRESS THANKS IF i helped you​
Click to expand...
Click to collapse
Unity 4.0 published man are you on earth?
Manoj The Gamer said:
Unity 4.0 published man are you on earth?
Click to expand...
Click to collapse
oh really thn convert asphalt mostwanted,new subway 1.7.3 :laugh::silly:
Manoj The Gamer said:
Unity 4.0 published man are you on earth?
Click to expand...
Click to collapse
give me the link of libs 4.0:silly:
darshcracker said:
give me the link of libs 4.0:silly:
Click to expand...
Click to collapse
Unity 4.0 doesn't support ARMv6.
well dude i tried ur method the apk recompiled the apk installed but i get force close error man :/ just help me out dude i believe the probs is with the library files coz it didnt run on arm v7 devices too :/
yeshwanthvshenoy said:
well dude i tried ur method the apk recompiled the apk installed but i get force close error man :/ just help me out dude i believe the probs is with the library files coz it didnt run on arm v7 devices too :/
Click to expand...
Click to collapse
try doing the second method given exactly below tht attachment easiest way it will work
darshcracker said:
try doing the second method given exactly below tht attachment easiest way it will work
Click to expand...
Click to collapse
no dude it didnt work man i get force close error when i tried with temple run and as of subway surfers the same thing man
yeshwanthvshenoy said:
no dude it didnt work man i get force close error when i tried with temple run and as of subway surfers the same thing man
Click to expand...
Click to collapse
thn ur doing somethng wrong
Hey mate can you upload the libs of unity engine to mediafire or somewhere else.
Turbobit says my country is unavailable...
Sent from my ST18i
Bro Please can u upload the libs on another host?? This one isnt allowing me plz put on zippyshare or anything. Thanks in advance :thumbup:
Sent from my GT-S5830i using xda app-developers app
---------- Post added at 09:58 AM ---------- Previous post was at 09:27 AM ----------
Guyz its ok i managed to dowload
Use premiumleech.eu
Sent from my GT-S5830i using xda app-developers app
Assem Sherif said:
Bro Please can u upload the libs on another host?? This one isnt allowing me plz put on zippyshare or anything. Thanks in advance :thumbup:
Sent from my GT-S5830i using xda app-developers app
---------- Post added at 09:58 AM ---------- Previous post was at 09:27 AM ----------
Guyz its ok i managed to dowload
Use premiumleech.eu
Sent from my GT-S5830i using xda app-developers app
Click to expand...
Click to collapse
Can u share the link?
Sent from my ST18i

[DEV RESOURCES][AMDL] P-ROM, Dump, Tools, Resources & Tips [5/18]

I have gathered pretty much all the things useful in modding our system.
I ask other developers to post their findings here also.
My aim is to allow people to learn how make their own edits and mods.
Happy modding,
As of now our only option for recovery from a screw up is flashing the stock image via Odin, so be careful.
Developer Tools:
AIO Tool Pack - The main tools I used in creating this deodexed package (Includes the following)
APK Manager with the compatible ApkTool and AAPT (Took me a while to find compatible versions of both due to strange qualifiers in resource APKs)
Dex2Jar with JD-Gui (Useful for checking out JavaCode in order to apply to ByteCode) (If you've got an extra Kilo-Dollar to spare check out Jeb)
Baksmali/Smali Manager for editting jar files
Odin 3.07 for flashing stock firmwares (available in dev thread)
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Psuedo-ROM
Deodexed System Installer With Listed Mods
(Mirror) (MD5:108a5553c6ae82af9b0a3319ceffc8b8)
All Responsibility Are Belongs To You
Entire deodexed system with some mods already installed. Based on the AMDL ota update.
You must be rooted and updated to build number I337UCUAMDL.
I recommend a factory reset, fresh wipe via Odin, updating ota, rooting, then installing this package.
After installing it is recommended that you freeze the OTA apps in order to block OTA updates.
- LocalFOTA, AT&T Software Update, FWUpgrade
- Mod list:
5/18/13 -
Removed struck-out items from 5/8/13 change log for NottachXposed compatiblity
Integrated debloater into installer
Added extended power menu (scrosler)
Added init.d support (scrosler)
-Added zipAlign init.d script
Added 1% battery support for SystemUI
Click to expand...
Click to collapse
5/9/13 -
Tethering enabled via framework-res.apk, includes Bluetooth tethering (romracer)
Removed WiFi connected notification via SecSettings.apk
Enabled accessibility widgets via SecSettings.apk
Removed carrier label in status bar via SystemUI.apk
Removed full battery notification via SystemUI.apk
Removed loud volume warning via framework.jar
Option to unlock all AT&T APNs (In installer)
Unhid broadband APNs
Enabled scrolling wallpaper
Removed launcher help text
Removed multi-window help button
Removed boot sound
Redeodexed entire AMDL update
Fixed APKs for de/recompiling
More...
Click to expand...
Click to collapse
-Installation:
Copy "copy_to_sdcard" folder to internal sdcard
With USB debugging enabled run the Windows BAT file in the package.
Answer questions.
Profit...
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Tutorials:
Framework installation using ApkTool
Modding using Apk Manager
Reading source using Dex2Jar
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Tips & How-Tos:
Exposed framework installer - Use this version of the exposed installer which is compatible with the S4
More tips & mods
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Extra Downloads:
Debloater bat file - Removes AT&T, Google, and Samsung bloat (Open in any text editor to inspect/edit the files that will be removed)
I337UCUAMDL_RAW_SYSTEM_DUMP - The base from which this deodexed installer is created from
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Framework installation using ApkTool
In order to use Apk_Manager on System APKs you will first need to install the System Frameworks to your ApkTool.
Assuming you have downloaded both zips from the first post unzip the tools folder to a location of your choosing.
Next, extract the frameworks zip to your newly created Apk_Manager folder and place them in the 'other' folder so they are in scope of apktool.jar, also in the 'other' folder.
Now, with no files selected in the 'other' folder, Shift+RightClick an empty area of the folder and choose "Open command window here".
Do:
Code:
apktool if framework-res.apk
&&
Code:
apktool if twframework-res.apk
The frameworks should be installed as 1.apk and 2.apk respectively. Confirm by navigating to C:/Users/<YOU>/apktool/framework.
Example output:
{
"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"
}
You should see 1.apk and 2.apk, they will be a different file size of the res APK, this is because they only contain info pertaining to APKs that may utilize their resources.
Now you have your frameworks installed correctly and can continue using Apk-Manager to Mod your other, deodexed, APKs, such as SystemUI.apk.
I hope this will be helpful to some, if there are any additional steps I can add to make it clearer please let me know.
Modding using Apk Manager
Apk-Manager examples coming soon...
Reading source using Dex2Jar
Dex2Jar is a useful tool for generating Java source from APK/JAR dex files.
In order to use Dex2Jar first open your APK/JAR with WinRar or similar and extract the dex file to the Dex2Jar root directory.
Next drag-n-drop the dex file onto dex2jar.bat. This will create a jar archive in the same directory.
Next drag-n-drop that newly created jar onto jd-gui.exe.
This will open a tree view of the Java source.
Note that it is not always possible for Dex2Jar to reconstruct the source code and some classes may have errors.
Also, structure of the source may be in somewhat ByteCode format, still having gotos and labels...
For more information on Dalvik opcodes see here.
Another tool useful in reconstructing Java code is Virtuous Ten Studio.
Did you know?
A few additional places to look at are...
Disable WiFi Connected Notification -
http://forum.xda-developers.com/showpost.php?p=40865546&postcount=6
Click to expand...
Click to collapse
Disable Loud Volume Warnings -
http://forum.xda-developers.com/showpost.php?p=40970794&postcount=10
Click to expand...
Click to collapse
Enable "Find My Mobile" in Settings -
system/csc/feature.xml { CscFeature_Setting_DisableMenuFindMyMobile="false", CscFeature_Setting_FindMyMobile="true" }
Click to expand...
Click to collapse
Unhide 'broadband' APNs in Network Settings -
system/csc/feature.xml { CscFeature_Setting_HideApnList="" }
Click to expand...
Click to collapse
Enable APN edits -
SQL Editor - data/data/com.android.providers.telephony/databases/nwk_info.db_carriers - Δ editable to '1'
Click to expand...
Click to collapse
Nottach said:
A few additional places to look at are...
Click to expand...
Click to collapse
That tip about enabling Find My Mobile is quite nice. After changing that, the option does show up in Settings -> More Tab -> Security; however it doesn't appear to work correctly. The phone never shows up as registered on my Samsung Account. I even tried creating a new Samsung account to test with and by enabling remote control when over wifi and cell data.
captawsm said:
That tip about enabling Find My Mobile is quite nice. After changing that, the option does show up in Settings -> More Tab -> Security; however it doesn't appear to work correctly. The phone never shows up as registered on my Samsung Account. I even tried creating a new Samsung account to test with and by enabling remote control when over wifi and cell data.
Click to expand...
Click to collapse
Hmm, just checked it out and it seems they haven't added the S4 to the list of devices? Maybe in the future they will.
I saw that the S III shows up in the list of devices on the Samsung Dive website. I still have my "stock" rooted S III so I might check to see if this trick works on there and if it will register on the site. I can post results if anyone is interested which may let us know if we just need to wait till the S4 shows up on the site.
Edit: if anyone wanted to know: Tried on a stock rooted AT&T S3 w/ 4.1.1 and ran into same issue - I can enable remote controls but device never registers on the samsungdive.com website so maybe there is something more to getting Find My Phone working that just editing features.xml
If someone else tries this, I'd be interested in hearing if you run into the same problem.
I do a lot of decompiling/recompiling and minor smali/xml edits, I just want your general opinion here.. Do you or have you ever used Chainfires Fast AAPT?
http://forum.xda-developers.com/showthread.php?t=1907281
So I'm trying to disable the Media Volume Alert by modifying android\media\AudioManager of framework.jar, as shown below, and I'm unable to get the device to fully boot after replacing the original file. It just hangs on the AT&T logo. I can get ADB so I can replace the original and then it boots.
Does my mod look like it should break it? All I did was change the level at which the dialog appears to 16 (0x10) instead of 10 (0xa). I would think that would be OK. I don't get any error recompiling either. I've tried wiping dalvik-cache between replacements, no luck. I've also tried returning false at the beginning of the 'isEarProtectLimitOn' method, no luck. I'm stuck, any ideas?
line 483
Code:
# direct methods
.method static constructor <clinit>()V
.registers 1
.prologue
.line 60
const-string v0, "AudioManager"
sput-object v0, Landroid/media/AudioManager;->TAG:Ljava/lang/String;
.line 269
const/16 v0, 0xd
new-array v0, v0, [I
fill-array-data v0, :array_16
sput-object v0, Landroid/media/AudioManager;->DEFAULT_STREAM_VOLUME:[I
.line 2971
const/16 v0, 0x10
sput v0, Landroid/media/AudioManager;->EAR_PROTECT_LIMIT_INDEX_DISABLE:I
.line 2972
[COLOR="Red"]-- const/16 v0, 0xa[/COLOR]
[COLOR="Green"]++ const/16 v0, 0x11[/COLOR]
sput v0, Landroid/media/AudioManager;->EAR_PROTECT_LIMIT_INDEX_NORMAL:I
EDIT: This is the correct edit to disable the Loud Volume Notification. I guess my tools were out of date. After updating baksmali it worked.
Basically instead of at level 10 it triggers only at the max volume, which I think is triggered someplace else. I'll keep looking for the root.
EDIT2: In addition to the above edit the 'EAR_PROTECT_DEFAULT_INDEX' needs to be changed so it doesn't trigger at Max Volume.
Same file, line 109:
Code:
.field public static final EAR_PROTECT_DEFAULT_INDEX:I = [COLOR="Red"]0x11[/COLOR]
No moar Loudness warnings!!
Nottach said:
A few additional places to look at are...
Click to expand...
Click to collapse
Thanks for this!
This was my first time editing SQL db's, so I didn't want to do anything I wasn't sure about. After making the APN's editable, the APN protocol is still grayed out. Is there a way to change the default value of the APN protocol itself (specifically to "iPv4/iPv6") within the database?
Hey man i see ur postinf mods. I removed the ongoing wifi on s3 and same exact method works on s4 but needs to be using a deodex system which i will push this weekend however i can get u a guide if u wanna try?
sgh-i747(d2att)(sgs3) on latest cm10.1 or ultimatum
howtomen said:
Hey man i see ur postinf mods. I removed the ongoing wifi on s3 and same exact method works on s4 but needs to be using a deodex system which i will push this weekend however i can get u a guide if u wanna try?
sgh-i747(d2att)(sgs3) on latest cm10.1 or ultimatum
Click to expand...
Click to collapse
You mean the WiFi Connected notification?
I found this method. Is yours different?
Mine seems to work well but I'm curious as to what you found too.
Nottach said:
You mean the WiFi Connected notification?
I found this method. Is yours different?
Mine seems to work well but I'm curious as to what you found too.
Click to expand...
Click to collapse
in the s3 we used this method which still works and only requires the secsettings http://forum.xda-developers.com/showpost.php?p=29047026&postcount=1
howtomen said:
in the s3 we used this method which still works and only requires the secsettings http://forum.xda-developers.com/showpost.php?p=29047026&postcount=1
Click to expand...
Click to collapse
I see, I think my method never calls the NotificationManager because it returns doNotShowNotification while yours still creates the notification but never calls show() on it. which may lead to memory leaks. I think mines cleaner?
Nottach said:
I see, I think my method never calls the NotificationManager because it returns doNotShowNotification while yours still creates the notification but never calls show() on it. which may lead to memory leaks. I think mines cleaner?
Click to expand...
Click to collapse
i see makes good sense thanks for the work
@howtomen You have experience making all apps multi-window? I was abe to get the all to show in the drawer but their indexes are messed up and the wrong app gets added when dragging.
I think I have to fix or create the adapter?
Why not linking directly to the tools? dex2jar and smali are udpated often, and the current APKTool fails to properly decode some resources in stock firmware of this device.
Nottach said:
I have gathered pretty much all the things useful in modding our system.
I ask other developers to post their findings here also.
My aim is to allow people to learn how make their own edits and mods.
Let's fill this Thread with detailed how-tos instead of this Section with crappy themed ROMs.
Happy modding,
As of now our only option for recovery from a screw up is flashing the stock image via Odin, so be careful.
Downloads:
Tool Pack
APK Manager with the newest ApkTool and AAPT (Took me a while to find compatible versions of both due to strange qualifiers in resource APKs)
Dex2Jar with JD-Gui (Useful for checking out JavaCode in order to apply to ByteCode)
Baksmali/Samli Manager for editting jar files
Odin 3.07 for flashing stock firmwares (available in dev thread)
Frameworks Only
Framework files for ApkTool installation (Ready for installation to ApkTool)
Entire Deodexed System With Listed Mods
Entire deodexed system with some mods already installed for a common developer base.
Installable if you know how. Based off romracers deodexing.
- Mod list:
Instruction:
Framework installation using ApkTool
Modding using Apk Manager
Reading source using Dex2Jar
Tips & How-Tos:
http://forum.xda-developers.com/showpost.php?p=40914188&postcount=5
Click to expand...
Click to collapse
Nottach said:
@howtomen You have experience making all apps multi-window? I was abe to get the all to show in the drawer but their indexes are messed up and the wrong app gets added when dragging.
I think I have to fix or create the adapter?
Click to expand...
Click to collapse
Very excited to see this happen. Really miss this from my hacked S3.
Sent from my SAMSUNG-SGH-I337 using xda app-developers app
That download speed from devhost is PAINFUL! I'm working on porting over cm10.1's MMS.apk for our device once this is finished. I may try to find a you better mirror man lol.

Categories

Resources