[MOD][GUIDE] SecMms_Delight_Note_Open TouchWiz Mods - Galaxy Note 5 | Unlimited

Manh_IT

Senior Member
Feb 10, 2013
681
1,479
0
Ha Noi
choimobile.vn
Update for Android 6.0.1:
http://forum.xda-developers.com/galaxy-s6/themes-apps/mod-secmmsepiccommon-touchwiz-mods-t3350454

(Deodex only)

Guide - Vietnamese

HOW TO DISABLE THE SMS TO MMS AUTO, UNLIMIT-CONVERSION WHILE EXCEED 3 SMS
WHAT DOES THIS MOD DO: This mod will let you type very long text messages and it won't automatically convert it into MMS.

★ Go into your system/priv-app/SecMms_Delight_Note_Open folder and take out your "SecMms_Delight_Note_Open.apk"
★ Then use one of the applications such as apktools or baksmali and then use the commands to decompile the SecMms_Delight_Note_Open.apk
★ Once you have decompiled the SecMms_Delight_Note_Open.apk, go to:

smali/com/android/mms/l.smali
Now open up "l.smali" with your notepad++ for editing.

Now for this part of this guide what I have highlighted in "GREEN" text is what you have to find using Notepad++, What you see in "RED" is the line you have to remove/delete completely, And also what you see in "BLUE" is the line you have to make changes to:

SEARCH FOR:
Code:
[COLOR="Green"]    sput v0, Lcom/android/mms/l;->Q:I[/COLOR]
NOW REMOVE:
Code:
    .line 213
[COLOR="Red"]    const/4 v0, 0x4[/COLOR]

[COLOR="Green"]    sput v0, Lcom/android/mms/l;->Q:I[/COLOR]
AND CHANGE TO:
Code:
    .line 213
[COLOR="Blue"]    const/16 v0, 0x3e8[/COLOR]

[COLOR="Green"]    sput v0, Lcom/android/mms/l;->Q:I[/COLOR]
NOW SEARCH FOR:
Code:
[COLOR="Green"]    sget v0, Lcom/android/mms/l;->Q:I[/COLOR]
AND REMOVE:
Code:
.method public static e()I
    .locals 1

    .prologue
    .line 881
[COLOR="Red"]    sget v0, Lcom/android/mms/l;->Q:I[/COLOR]

    return v0
.end method
AND CHANGE TO:
Code:
.method public static e()I
    .locals 1

    .prologue
    .line 881
[COLOR="Blue"]    const/16 v0, 0x3e8[/COLOR]

    return v0
.end method
NOW SEARCH FOR:
Code:
[COLOR="Green"]    sput v1, Lcom/android/mms/l;->Q:[/COLOR]I
ABOVE THIS SAME LINE YOU HAVE TO ADD A NEW LINE WHICH IS IN BLUE:
Code:
    .line 2481
    const-string/jumbo v1, "pref_key_threshold"

    const/4 v2, 0x4

    invoke-interface {v0, v1, v2}, Landroid/content/SharedPreferences;->getInt(Ljava/lang/String;I)I

    move-result v1

[COLOR="Blue"]    const/16 v1, 0x3e8[/COLOR]

[COLOR="green"]    sput v1, Lcom/android/mms/l;->Q:I[/COLOR]
Once done now save changes, Recompile your SecMms_Delight_Open.apk and that's it you are now DONE!!!

HOW TO CHANGE THE MESSAGING TIME STAMPS TO ITS ORIGINAL TIME
WHAT DOES THIS MOD DO: This mod will show the exact sent time of received messages, not the moment when you actually received it on your phone.

★ Go into your system/priv-app/SecMms_Delight_Note_Open folder and take out your "SecMms_Delight_Note_Open.apk"
★ Then use one of the applications such as apktools or baksmali and then use the commands to decompile the SecMms_Delight_Open.apk
★ Once you have decompiled the SecMms_Delight_Note_Open.apk, go to:

smali/com/android/mms/transaction/SmsReceiverService.smali
Now open up "SmsReceiverService.smali" with your notepad++ for editing.

Now for this part of this guide what I have highlighted in "GREEN" text is what you have to find using Notepad++, What you see in "RED" is the line you have to remove/delete completely, And also what you see in "BLUE" is the line you have to make changes to:

SEARCH FOR:
Code:
[COLOR="Green"]    invoke-static {}, Ljava/lang/System;->currentTimeMillis()J[/COLOR]
THIS SAME LINE THAT YOU HAVE JUST LOOKED FOR, IS ALSO THE LINE YOUR GOING TO HAVE TO REMOVE WHICH SHOULD LOOK LIKE THIS:
Code:
    .line 2668
    :cond_8
    const-string/jumbo v2, "date"

[COLOR="Red"]    invoke-static {}, Ljava/lang/System;->currentTimeMillis()J[/COLOR]

    move-result-wide v4

    invoke-static {v4, v5}, Ljava/lang/Long;->valueOf(J)Ljava/lang/Long;

    move-result-object v3

    invoke-virtual {v1, v2, v3}, Landroid/content/ContentValues;->put(Ljava/lang/String;Ljava/lang/Long;)V

    goto/16 :goto_1
.end method
AND THEN CHANGE IT TO THIS:
Code:
    .line 2668
    :cond_8
    const-string/jumbo v2, "date"

[COLOR="Blue"]    invoke-virtual {p1}, Landroid/telephony/SmsMessage;->getTimestampMillis()J[/COLOR]

    move-result-wide v4

    invoke-static {v4, v5}, Ljava/lang/Long;->valueOf(J)Ljava/lang/Long;

    move-result-object v3

    invoke-virtual {v1, v2, v3}, Landroid/content/ContentValues;->put(Ljava/lang/String;Ljava/lang/Long;)V

    goto/16 :goto_1
.end method
Once done now save changes, Recompile your SecMms_Delight_Open.apk and that's it you are now DONE!!!

And more, soon...
 
Last edited:

edzamber

Senior Member
Feb 21, 2012
3,863
3,655
253
Hi,

Is there a way to add sms backup and Restore option ?

With add
<CscFeature_Message_EnableSaveRestoreSDCard>true</CscFeature_Message_EnableSaveRestoreSDCard>


into csc/features.xml it working for save but SecMms_Delight_Open FC when Restore...

Many Thanks.
 
Last edited:

edzamber

Senior Member
Feb 21, 2012
3,863
3,655
253
Already modded this on mine one so i will just add unlimited then its will fully modded + floating message support too ..

Sent from my SM-N920C using Tapatalk
Fantastic :)

Because with csc feature, Restore FC...


<CscFeature_Message_EnableSaveRestoreSDCard>true</CscFeature_Message_EnableSaveRestoreSDCard>



Saving working...

 
Last edited:

thereassaad

Recognized Contributor
Aug 22, 2013
7,621
9,714
263
Bierut
Ok guys its done i will upload my sms app later ok but i can tell u everything is working just fine ok enjoy it







Link will added it here later ok ..

Sent from my SM-N920C using Tapatalk
 

thereassaad

Recognized Contributor
Aug 22, 2013
7,621
9,714
263
Bierut
great
thanks

[emoji2]





Marvelous :)

It will working for S6/S6 Edge ?

It should bro i just use it on S6E+/NOTE5 roms but on S6E it should ..

@Manh_IT mate the next guide for the real time sent msg its gives me fc ? I followed ur guide exactly but its give me fc any help from ur side or update ur guide for this


Fc when i sent or recieving msgs bomb fc ..

Sent from my SM-G928F using Tapatalk
 
Last edited:

thereassaad

Recognized Contributor
Aug 22, 2013
7,621
9,714
263
Bierut
Ok guy's as i promised u will work on this today , then i did it lol u should thanks my girl as i used her laptop for modding this sms because im not on my home for few weeks lol so here the link

U need to backup ur old one from system/prev-app/SecMms_Delight_Note_Open then replace it with this from this link

https://mega.nz/#!8VAVSToJ!vrxKVneV3VbiF0L7E715D17jgawLScgpIBqC_WYrpj4

After that set permission as rw--r--r then reboot & enjoy with unlimited texts

Now for backup msgs (saved/restore) u need to add this to ur system/csc/features.xml or others.xml

Just copy both lines from this post


http://forum.xda-developers.com/showthread.php?p=64078643

Enjoy it ..
 

edzamber

Senior Member
Feb 21, 2012
3,863
3,655
253
Ok guy's as i promised u will work on this today , then i did it lol u should thanks my girl as i used her laptop for modding this sms because im not on my home for few weeks lol so here the link

U need to backup ur old one from system/prev-app/SecMms_Delight_Note_Open then replace it with this from this link

https://mega.nz/#!8VAVSToJ!vrxKVneV3VbiF0L7E715D17jgawLScgpIBqC_WYrpj4

After that set permission as rw--r--r then reboot & enjoy with unlimited texts

Now for backup msgs (saved/restore) u need to add this to ur system/csc/features.xml or others.xml

Just copy both lines from this post


http://forum.xda-developers.com/showthread.php?p=64078643

Enjoy it ..
Many Thanks, working perfecty :)
 

The_papajuara

Senior Member
Nov 16, 2015
263
151
0
Kuala Lumpur
Good... i want ask..For send to all maximum contacts? do u have a method to do that? now minimum is only 20 contacts... or u can suggest me some link or forum...thanks in advance..

Sent from my SM-N9208 using Tapatalk
 

WILMANS2M

Senior Member
Aug 6, 2009
3,055
584
0
Mantes-la-Ville
Hello and thanks for the marvellous guide.
Just wanted to know if someone is able to find how to have ticked by default:

- all sms/mms reports (delivery & read). I tried with no success (FC),
- increasing mms max size,
- split view mode enable,

Any of it (reports is prime :)) will be fine.

Really thank you in advanced.