[Q] how to make xposed changes permanent???? - Nokia X

in xposed when we delete it the all customized things back to default is there any way ...to make it permanent i.e it will not go back to default as we uninstall xposed........

osheen jha said:
in xposed when we delete it the all customized things back to default is there any way ...to make it permanent i.e it will not go back to default as we uninstall xposed........
Click to expand...
Click to collapse
i think we cant make xposed permanent
but you can ask members at xopsed section
http://forum.xda-developers.com/xposed

Related

Changeing Rom App

i want to remove DownloadProvider.apk from rom (mildwild v4 redux2 base) b'z i m not using it and it also use system memory...
if any problem if i remove it and also default browser also if possible ???
You can remove them with no fear.
Thanks man ...
i don't write your name b'z i know its not your real name so...
i don't want to start new thread but can i change launcher of Rom also ??
it require any change in coding or other side ...
i mean it use sony xperia launcher but if update version is available and i want to change it then what i require to do ??
Yes. You simply install the launcher, and, if you want, uninstall the old one.
abaaaabbbb63 said:
Yes. You simply install the launcher, and, if you want, uninstall the old one.
Click to expand...
Click to collapse
Thanks again man...
cheers :laugh:

[Q] How to use "Restrict background data" WITHOUT notification ?

Hi,
I wish to permanently use the "Restrict background data" feature ( under settings->data usage ) on my JB rom, but the problem is that when I enable that feature, I always get a notification, asking me to "touch to remove" that feature...
I don't wish to do that, even by mistake! I want that notification GONE completely, but to retain the "restrict" feature...
I understand, it's possible to permanently disable notifications, by altering "Settings.apk" somehow - but I don't know what and where to change ( wish file inside that apk ).
I used "apktool" to unpack the apk, but again - which file should I change ? what value/line should I delete ?
My rom is VJ's AOKP v2.2, so "Settings.apk" file is from that rom's version.
Any help would be great :highfive::fingers-crossed:
EDIT:
Guess it has something to do with "DataUsageSummary.smali" (after unpacking the Settings apk -> smali\com\android\settings):
BUT WHAT SHOULD I CHANGE ?!
please reply
gps3dx said:
Any help would be great :highfive::fingers-crossed:
Click to expand...
Click to collapse
Seriously ? Not even the smallest hint you ppl can give me ?:crying::crying:
Can't you even redirect me to the most prevalent sub-forum, here at XDA, for that kind of question ?:silly:
gps3dx said:
Seriously ? Not even the smallest hint you ppl can give me ?:crying::crying:
Can't you even redirect me to the most prevalent sub-forum, here at XDA, for that kind of question ?:silly:
Click to expand...
Click to collapse
Something called the search function; it's really useful.
You can't just expect others to answer your questions promptly. As for your questions, that's part of the android system and if you want to modify it, go ahead. It's not a notification because you can't swipe it away; it's an ongoing thing. SO if you want to go on with that kind of attitude, you can try it yourself.
droid_<3er said:
Something called the search function; it's really useful.
As for your questions, that's part of the android system and if you want to modify it, go ahead. It's not a notification because you can't swipe it away; it's an ongoing thing.
Click to expand...
Click to collapse
I really do appreciate your reply man - even though I googled xda from top to button.
( there are thread about modifying various stuff inside settings.apk / SystemUI.apk - but NON are about that "restriction notification" i'm talking about. )
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Update: For a while now it's already available in Xposed modules repository: http://repo.xposed.info/module/org.adam77root.removerestrictednotification.
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
WOW thnx... but just a few moments before you posted your message I to fulfill that wish of mine... I SOLVED IT !
Although I admit - I DO NOT KNOW if I disabled all of the "restrict background" feature, but I DO managed to enable the "restrict backgound data" checkbox ( then press OK at the popup ) WITHOUT getting any notification at all !
HOW TO DISABLE NOTIFICATION ALERT FOR "RESTRICT BACKGROUND DATA" ( under settings-> data usage-> options )​( I tried that fix on JB 4.2.2 ( to be specific: AOKP VJ Jelly Bean v2.2), BUT I guess it works on all JB 4.2.2 )​1. copy "services.jar" from "/system/framework/services.jar" to your computer.
MAKE A SAFE COPY OF THIS FILE IF SOMETHING HAPPENS TO YOU.
2. extract the jar file using Winrar or any compatible app.
3. using MultiTool decompile the "classes.dex" file as instructed by Multitool's thread.
4. open with any txt editor ( I used Notepad++ ) the file "NetworkPolicyManagerService.smali" under "decompiled\classout\com\android\server\net\" ( which is a sub-folder of Mulitool's folder that you've previously extracted )
5. A . search for:
Code:
invoke-interface/range {v0 .. v6}, Landroid/app/INotificationManager;->enqueueNotificationWithTag(Ljava/lang/String;Ljava/lang/String;ILandroid/app/Notification;[II)V
delete completely that line or add "# " in the start of that line ( which is what I did ) so that line looks like that:
Code:
# invoke-interface/range {v0 .. v6}, Landroid/app/INotificationManager;->enqueueNotificationWithTag(Ljava/lang/String;Ljava/lang/String;ILandroid/app/Notification;[II)V
B. search for:
Code:
invoke-virtual {v0, p1}, Ljava/util/HashSet;->add(Ljava/lang/Object;)Z
add "# " in the start of that line ( which is what I did ) or delete completely that line
6. SAVE that smali file that you've just edited.
7. using Multitool, recompile the classes.dex file.
if everything went good, you'll have classes.dex file under MultiTool's sub-folder named "output"
8. using Winrar, open "services.jar", replace the current "classes.dex" with the recompiled one that you've made.
9. copy the remade "services.jar" to your device(using adb etc ):
Code:
adb push "services.jar" /system/framework/services.jar
10. chmod "services.jar" to "-rw-r--r--", meaning you need to:
Code:
adb shell chmod 644 /system/framework/services.jar
11. restart your device, and It should rebuilt your dalvik cache.
ONLY if it didn't, I guess you should delete "/data/dalvik-cache/[email protected]@[email protected]" file, reboot again so your OS will create that dalvik-cache file.
I'll be happy to know if anyone can verify that indeed my fix just remove his/her notification, but retain the ability to disable background data. THANKS !
Sorry I doubted you. You are a genius!
Many thanks!!
Adam77Root, thank you so much for that module! I can confirm it working on my Galaxy Note 2. That notification was unbelievably annoying.
gps3dx, thank you too for this thread and your fix. While I didn't try it because I already have Xposed framework installed and I'd rather use the less invasive approach, I am still grateful for your seeing a problem, addressing it, and proactively doing something about it. My respects to you. I searched around quite a bit and came across many other forums on different sites where people had this same problem unanswered. I hope they find their way to this thread.
To the above poster who jumped down the OP's throat for bumping this topic 4 days after it went unanswered, obviously you didn't do any search on this topic yourself. I did. And until this thread, I found nothing really useful. And lo-and-behold, someone was kind enough to actually do something useful instead of pointlessly sitting there and criticizing. The squeaky wheel gets the grease. Rudely telling someone to 'check their attitude and search' is not helpful- it's just rude and pointless. Just FYI.
I have an i9300 and I can't find the first line in that archive...
eXtremeDevil said:
I have an i9300 and I can't find the first line in that archive...
Click to expand...
Click to collapse
mybe it is because you run JB 4.1.2 not 4.2.2 like I do, plus mybe you're running some custom framework ( it is not AOKP as I suspect from you sig )
Adam77Root said:
...I've quickly put together an Xposed module that removes the notification.
Click to expand...
Click to collapse
@Adam77Root
Big thanks for this module: I installed another 4.2.2 JB rom for my HTC Desire, and your module works !:good::good:
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
this was working fine on my aokp jb mr1 Milestone 2, but stopped working when i installed the nigthly nightly (jb-mr1)2013-08-21 (wich fixes my camera issues and soe other stuff)
is there anything i can try myself to fix this or is it just incopatible with that nightly? (its still 4.2)
I'm using Lenovo phone, 4.2.1 Version. In "services.jar" I see only folder "META-INF" and file "MANIFEST.MF". I tried to rename the file to classes.dex then using MultiTool decompile but I receive: "Unexpected top-level exception:java.lang.RuntimeException:bad magic value...etc"
So what's wrong, where to find classes.dex? Someone?
new edit: Thanks a lot for all the replies, also Xposed framework+module didn't work.
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
Thanks a lot. Works awesome. Is it possible to post the source code to this?
css771 said:
Thanks a lot. Works awesome. Is it possible to post the source code to this?
Click to expand...
Click to collapse
I'm almost certain I don't have the original files anymore. Since it's pretty simple, you can either decompile the apk or check Android source of the class I mentioned in the post you quoted. Only one function is replaced with returning null.
Edit: Just checked, the function is enqueueRestrictedNotification.
Sent from my OmniROM-powered LG Optimus 4X HD
Xposed module works perfect on LG G2. Thanks a bunch!
Sent from my VS980 4G using Tapatalk
Adam77Root said:
I've seen this thread in the unread threads of XDA app and although I don't use that feature, I got curious to try it out. So I've quickly put together an Xposed module that removes the notification.
You have to install Xposed framework. Get it here: http://forum.xda-developers.com/showthread.php?t=1574401
Also, install my module from the attachment, enable it and do a soft reboot in Xposed.
It works for me on my Galaxy R with CM10.1 and I assume it will work for you too, as the module doesn't change the Settings, but com.android.server.net.NetworkPolicyManagerService class. If you have any problems, post a logcat and /data/xposed/debug.log
Click to expand...
Click to collapse
nice module.. work perfectly.. thanks
rooting?
do i have to root my phone to do this? will the module work without rooting? i'm new to playing with codes on my phone but I have done a lot of work with linux before so i can understand the process, i've just never rooted my phone before. i'd really like to get rid of this notification and the "usb connectivity" app's notification: internal storage &SD card- internal storage &SD card connected to PC. I mean, do i really need a notification to tell me that my phone is connected to my PC?
that last request isn't as important, at least if i accidentally click on that i'm not turning on background data use!
-yasboss
xperia z1s
jb 4.3
(just joined xda devs)
p.s.
is this the right place to ask this question?
yasboss said:
do i have to root my phone to do this? will the module work without rooting? i'm new to playing with codes on my phone but I have done a lot of work with linux before so i can understand the process, i've just never rooted my phone before. i'd really like to get rid of this notification and the "usb connectivity" app's notification: internal storage &SD card- internal storage &SD card connected to PC. I mean, do i really need a notification to tell me that my phone is connected to my PC?
that last request isn't as important, at least if i accidentally click on that i'm not turning on background data use!
-yasboss
xperia z1s
jb 4.3
(just joined xda devs)
p.s.
is this the right place to ask this question?
Click to expand...
Click to collapse
you need root to use xposed installer..
what else can it be used for?
ajeesh vijayan said:
you need root to use xposed installer..
Click to expand...
Click to collapse
can i use it for other notifications like i asked? I mean there's more than just the USB connectivity etc

[Q] can i do that

So for my rom i wanted to theme the pull down panel different colors but dont really know how so is there some way i could u a xposed module to change it t
On the rom im running then copy that systemui.apk or would that delete it and make it go back to normal because im not the best at editing so i was wanting to know if it was possible like maybe use waynam xposed or something
xposed
dsilx said:
So for my rom i wanted to theme the pull down panel different colors but dont really know how so is there some way i could u a xposed module to change it t
On the rom im running then copy that systemui.apk or would that delete it and make it go back to normal because im not the best at editing so i was wanting to know if it was possible like maybe use waynam xposed or something
Click to expand...
Click to collapse
as i understand xposed framework/modules work like an override
uninstall exposed = lose your changes
include xposed framework/modules in rom, ask permission where necessary/proper
touchwiz seems resistant to changes/happiness [sigh]
read the notes for each module to see if you'll encounter issues/fails
m
thanks
moonbutt74 said:
as i understand xposed framework/modules work like an override
uninstall exposed = lose your changes
include xposed framework/modules in rom, ask permission where necessary/proper
touchwiz seems resistant to changes/happiness [sigh]
read the notes for each module to see if you'll encounter issues/fails
m
Click to expand...
Click to collapse
thank u for the reply im goona try including the modules and xposed with the rom
You may also change systemUI.apk but be careful doing it ! If anything turns wrong, your device will reboot and will go to bootloop.
Sent from my room mate's computer

Custom Rom Deodex Xperia_Z1_109_R7C Xperia Z1(6943,6903 )

I present to you guys the latest Custom Rom Deodex
C6943_14.4.A.0.109_EAS_CR.zip
First of all I want to thank a lot, and give credit to those who contributed and a lot with this project, that without them I would not have realized:
XDA Developers
@MikeChannon
@Nut
@Rajeev
@Eliminator79
@beniamin24
@ogunja.
@victormagalhaes87
Diego S. Dias
Janeh Magalhães
And a special thanks to @MikeChannon for giving me this opportunity!
And all members of the Xda Developers who contributed their tips and Mods and Apps !!
________________________________________________________________________________________
For the C6903 model, it is necessary that Digital TV is off (Settings / Applications / Digital TV), the more everything is right.
Procedure for Installation and Configuration of Custom Rom:
Video Tutorial Click Here (in Portuguese)
MAKE THE DOWNLADS OF ALL FILES FIRST SAVE AND A CUSTOM ROM ON SD
StockRom
1o. Do a backup (I used up the recovery mode, but use the Titaniun backup if you prefer), and store in sd
2oFlashtools with rom based 14.4.A.0.108 (Android 4.4.4)
3o.Pass the stock rom
4o.Do the basic Root Settings and enable installation from unknown sources (Settings / Security) Enable USB Debugging (Settings / About phone 9 times in one click Number Version) (ZL-BETA-lockeddualrecovery2.7.154 Extract and put in a folder easy to access and click on option 3) click on and install SuperSU,
5o.Entre in Recovery (Power off the device and make the call and when you ascend the LED in green color press Volume mode - And loose click Install and select a custom rom that this was where the installation of custom Rom that in Sd
6o.Wipe Dalvik cache and Restarts
GIVE ALL PERMITS TO BELOW SuperSU APPLICATIONS !!
Xposed
7o. Open the Installer and make the installation of Framework
8o. After the restart enable mods, Xposed Serajr and restart the device
9pen the serajr Xposed and enable Customization (System, System Interface, Xperia Home, media)
In the upper right menu click save, it will ask SuperSU, Authorizes permission and resetting the system)
10th. After this process, updates will appear album, ... etc ... DO NOT FEAR.
I do not use Titanium Backup's option, use the backup of the recovery, but this rom is for those who want to use Titanium and restore backups previously done ..
C6943 14.4.A.0.109 EAS - CustomRom Saved in SD
DO NOT BLAME ME FOR ANY DAMAGES THAT MAY RESULT IN YOUR PHONE!
I am not responsible if you brick your device, make by own risk!
Again Credits and Thanks to All Involved direct and indirect
If you like my work
Click Thanks
And if you want to leave a donation
Click Here
Deodex the latest rom allowing the option of Mods for Xperia Z1, and Custom Already with the following applications and Mods Installed:
Xposed installer,
Serajr,
GEM Xposed,
NDR Utils,
AOSP( NavBAr Buttons)
Sound Mod for both speakers(Top / Bottom)
Titanium Backup
4Shared,
RootExplorer,
Aptoide,
Câmera next da google,
4k,
Timeshift,
Quickboot,
Telegram,
Whatsapp,
Apk do grupo Xperia Mods Z1/Z2
Viper4,
Sound in UPPER AND LOWER SPEAKER
Improvements in performance with Low Battery Consumption
Port Z3:
Home,
Contacts,
Calculator,
SMS,
Album,
Walkman
Update Center
View attachment 2981443View attachment 2981444View attachment 2981445
View attachment 2981446View attachment 2981448View attachment 2981449
Great job
Great job, Eduardo
I hope you continue contributing in this project.....Always stay hungry !!
Thanks for mention
there will be a black version?
I would definitely like to see your Rom
Ohle76 said:
there will be a black version?
I would definitely like to see your Rom
Click to expand...
Click to collapse
Hello friend, could rephrase the question?
Eduardo.xperiaZ1 said:
Hello friend, could rephrase the question?
Click to expand...
Click to collapse
He was asking if you are going to make a black version of certain apps like messaging, settings, dialer, contacts, and other stock apps
Kind of like kit slim rom where he has flushable black apps
Eduardo.xperiaZ1 said:
Hello friend, could rephrase the question?
Click to expand...
Click to collapse
Hello friend, could rephrase the question? If you want to leave it all black, you can visit this link: http://forum.xda-developers.com/showthread.php?p=53790396 @Rajeev friend
ploopower79 said:
He was asking if you are going to make a black version of certain apps like messaging, settings, dialer, contacts, and other stock apps
Kind of like kit slim rom where he has flushable black apps
Click to expand...
Click to collapse
We have a new project that already (as an option for the user's choice), but we are waiting out the update that occurs before the Android Lollipop.
Thank you so much !!!
Eduardo.xperiaZ1 said:
We have a new project that already (as an option for the user's choice), but we are waiting out the update that occurs before the Android Lollipop.
Thank you so much !!!
Click to expand...
Click to collapse
Thank YOU for providing another rom for us to flash and test and taking your time to work hard on it!
ploopower79 said:
Thank YOU for providing another rom for us to flash and test and taking your time to work hard on it!
Click to expand...
Click to collapse
I hope you like and enjoy this custom rom.
what is the app responsible for sms(port z3)?
shoonari said:
what is the app responsible for sms(port z3)?
Click to expand...
Click to collapse
Hello. Yes, the sms that is in this Custom Rom, portei of the Z3(Native).
Thank you
Where the hell did you get android 4.4.5!?
Eduardo.xperiaZ1 said:
Hello. Yes, the sms that is in this Custom Rom, portei of the Z3(Native).
Thank you
Click to expand...
Click to collapse
thanks, but id like to know exact app name is it possible to extract it separately and insert into my current rom, or there are some integration issues?
shoonari said:
thanks, but id like to know exact app name is it possible to extract it separately and insert into my current rom, or there are some integration issues?
Click to expand...
Click to collapse
Sorry, but this is not possible, it may cause conflicts in your Rom, and lose their native sms.
adam20115 said:
Where the hell did you get android 4.4.5!?
Click to expand...
Click to collapse
( Laughs) Android 4.4.5, I could not, it's my creation, due to various changes in the system, but preserving stock Kernel.
Thank you
some help maybe
hi i have one rom for 6943 that already stock but with recovery and root. That mean that you can do your tuto more easier, i supposed. sry my bad bad english.

[tool]Installer for xposedLG G2[tool]unofficial

A small tool which makes the installation of xposed an easy process.
-I support only 5.0.x stock. If ot works on other versions - good.
*** I am NOT the author of xposed ***
The XPOSED AUTHORS original thread is here
make sure you thak to @rovo89 for xposed and his hard work.
--IF anyone else is to be added to the xposed dev list please pm me so I WILL add it. Thank you---
I'm just putting everything together so you can install it via 1 click
What does this tool do ?
BUTTON "INSTALL"
-Installs the complete xposed which includes the installer which is also copyrighted by it's authors
-makes backup of LG crucial files which would force close if we don't remove them (for now)
-deletes the mentioned files (smartcover, lgweather)
BUTTON "COMPLETE UNINSTALL"
-removes the complete package of xposed
-restores LG files (smartcover and lgweather)
-makes sure the permissions are the right one
The 3 dot menu contains:
"ABOUT" ---- Please read this...you need to read this as it's important
"DONATE" ---- support the further development etc
"EXIT" ---- EXITS the app
"UNINSTALL" --- This uninstall is only for those who have manually frozen the files and just want to uninstall xposed so they can unfreeze the apps later.
Req: a rooted LG G2 and TWRP installed.
An alternate build will also contain the files for those who just deleted the files and now want them back.
Please read this thoroughly so later there are no headbangs..
LINK
playstore link
Code:
md5:8f0bdd922a4edd6d9449c956aa212d48
bender_007 @ xda
So it works with lollipop right ?
Lollipop only
You just made my night buddy =)
one question which version install? alpha3? or alpha2?
Thanks in advanced!
Alpha3. Tomorrow we'll try to make one for users without recovery
bender_007 said:
Alpha3. Tomorrow we'll try to make on for users without recovery
Click to expand...
Click to collapse
Nice! You've been puttin in some work on the g2...
jamesd1085 said:
Nice! You've been puttin in some work on the g2...
Click to expand...
Click to collapse
I've learned there are people who appreaciate one click tools and the other who don't and are sceptic:"is this gonna work? What else do I have to do?"
bender_007 said:
I've learned there are people who appreaciate one click tools and the other who don't and are sceptic:"is this gonna work? What else do I have to do?"
Click to expand...
Click to collapse
Haha...yeah...but it helps more than you know...this tool will probably prevent at least 100 noobish help i installed xposed and everything force close threads and posts
thanks @bender_007
Mate, I have to ask why. This is such a simple process if you have root, changing the update script and binary you open a new can for bugs... what's wrong with the official zips?
So is this not supported by non stock ROMs?
nice tool. altough I allready installed xposed manually an frozen the apps it will be usefull for unistall process if needed.
FYI do not try without custom recovery. I don't know wtf I was thinking, but I tried without custom recovery. Failed to completely install, but it booted up again. Then tried to uninstall whatever may have installed, rebooted. BRICKED. TOTing back lol. I am such an idiot sometimes.
I had smartcover and lgweather force closes on ls980. I didn't realize it happened to other variants! Thanks this is a nice tool!
The Play Store Link does not indicate a need for TWRP. Is that just an oversight, or does that version not require it. Rather be safe than sorry.
You need TWRP. I bricked my phone and had to tot back. Make sure you have custom recovery.
Sent from my LG-LS980 using XDA Free mobile app
It does require twrp. Playstore rejected the app 3 times so I had to change text not to include some brands etc.
I know it seems I'm beating a dead horse but, any luck on a non recovery version yet? My tablet feels lonely without xposed!
When it's on testing I will send it to you . But get also a kdz of your system os if needed.
Hi, a silly question if I have uninstalled LGSmartCover and theses kind of LG apps that will cause FC, there will be some problem like the installator crashing because can't find LGSmartCover and lead to a bad installation....?

Categories

Resources