Affichage des articles dont le libellé est framework. Afficher tous les articles
Affichage des articles dont le libellé est framework. Afficher tous les articles

mardi 25 mars 2014

Mod Framework animation for all device 4.0+ topic




Hy bro....
This is first post from me, can you try mod from newbie? :p
My file will modification res/...anim... in your framework-res.apk

PRESS THANKS BUTTON IF YOU LOVE

Instal via recovery...

Vick-anim1.zip
d-h+st/BhQ

Vick-anim2.zip
d-h+st/CZj

Rename ( + ) to ( . )


If you have problem like bootloop, back into recovery - instal file in folder sdcard/universalFlassher/...here your backup...

Yes, i using universalflasher, thanks for JRsoft & Intronauta for great tool.





[Q] Help in rooting Xperia C and Xposed framework topic




Can somebody tell me the steps to root xperia c and installing xposed framework in a detailed way cause I am first time rooting my phone. Any help will be appreciated.





mercredi 12 mars 2014

[Q] Stock Xperia Framework topic




Can anybody please post the stock framework-res.apk and SonyGenericUxpRes.apk from an Xperia SL running stock 4.1.2? Thank you all

Sent from my GT-I8730 using Tapatalk





Required System Ui and Framework. topic




if anyone can provide me framework and system ui of XXUGNA7 Rom.





samedi 8 mars 2014

Xposed framework topic




Ok, so I have xposed framework installed, any mods that I've used, when trying to change the signal bars, nothing sticks. Any ideas? I'm on sense 5.5, 4.3. Thanks.

Sent from my EVO using xda app-developers app





dimanche 23 février 2014

Xposed framework topic




has anyone had this just refuse to work it seems to have trouble updating some files permissions problems ? any thoughts





mercredi 12 février 2014

mercredi 29 janvier 2014

Will wanam xposed framework work on stock 4.3? topic




Hello I just had a quick question I just rooted my Verizon note 2 and downloaded wanam xposed from the play store and it said I need to install wanam xposed framework I just want to make sure that installing this won't brick or do anything that could trip the Knox in my phone since I'm on stock Android 4.3 and rooted

Sry if this is in the wrong section still new to xda

Thanks


Sent from my SCH-I605 using xda app-developers app





[MOD] KARBONN A6 Framework mod with different theme topic




Guys here is the first ever mod for karbonn a6

FEATURES
-Changed volume/ringer theme when vol up/down buttons are pressed
-Changed background of settings,contacts etc
-ICS like notification
-Battery icon modded
-Loading circle changed
-Progress bar changed
-ICS On/off buttons added instead of tickmarks
-And much more (find it yourselves :D)

HOW TO INSTALL
-Download the zip given in the link below and flash it through CWM Recovery that's it

NOTE - As i dont have this phone. i made it just for a request from a A6 user SO PLEASE MAKE A BACKUP BEFORE TRYING THIS


DOWNLOAD LINK - https://db.tt/IJ7s7CYD

TO CONTACT ME -
https://m.facebook.com/varun.b.salian?refid=7


HIT THANKS TO APPRECIATE MY WORK :D





mardi 28 janvier 2014

Xposed framework stock firmware? topic




So I have stock firmware on my Z1 and its rooted and I try to install Xposed framework from the installer and it doesn't work...

Has this happened to anyone else or anyone know how to fix it?

Thanks in advance :)





dimanche 26 janvier 2014

Please, can someone help? Xposed Framework problem topic




So i finally got my replacement Droid maxx and got through rockmymoto and motowpnomo and decided to finish off with xposed and gravity box. So i installed the latest xposed framework app i could find and installed the actual framework. Then i couldn't get gravitybox to work so i decided to look through some files i had saved, and it turns out i had a different version of the xposed apk from before. So from root explorer, i installed my backup apk of xposed over the existing one. When i opened it, it said i had to install the framework again. so i did, presumably over the existing one. Now that i've rebooted, my phone just sticks at the red "eye" thing. And when it boots, it no longer plays the entire boot sound. It just says "DROI-----" instead of DROID and then all of the mechanical gear noises.

Someone please help me. Is there i a way to uninstall the framework?? i know how to use ADB, but my computer won't see my phone because it won't boot all the way. I really don't want to FXZ and lose everything!! I have important stuff on here

Thanks





samedi 25 janvier 2014

[Tutorial] Boolean functions framework. topic




Before I share the framework I want to introduce readers to some background information. On Wolfram's MathWorld website, there is an entry titled "Boolean Function". There are atleast 16 shown. Each of them are defined by a list of truth values. 4 truth-values exist for each function. They run vertical. (This point forth let vertical mean column and horizontal mean row.) An enumeration of possible states of two bits. (No columns are labeled.) 0|0 0|1 1|0 1|1 The left column will be the A column and the B column the right column. A|B 0|0 0|1 1|0 1|1 With a third column we can compare across all of them to infer if A is 0 or 1, and B is 0 or 1, what C will be. Given two bits you essentially get these possibilities. "00", "01", "10", "11". A bit is a value storing either a 0 or a 1. After creating a third column it is labeled with a C. A|B|C 0|0| 0|1| 1|0| 1|1| A and B columns even have their own functions which will match-up exactly in column C. Here is the WolfRam MathWorld page for reference: http://mathworld.wolfram.com/BooleanFunction.html Time for the source code! I created a namespace named "Boolioni". In it there is a data structure I call Column. 4 truth values, and technically you are accessing horizontally. A list of things included in Boolioni: +Convert a boolean function index to its string name +Convert a column to its string name +Print all the names of the boolean functions +Convert a column to its boolean function index +Convert a boolean function's string name to a boolean function index. +Convert a boolean function's index to a column +Convert a boolean function's name to a column +Printout values of a column. The source code. http://codepad.org/tEl5Fur4 [code]#include using namespace std; namespace Boolioni { struct Column { bool States [4]; friend bool operator== (Column &col1, Column &col2); friend bool operator!= (Column &col1, Column &col2); }; bool operator== (Column &col1, Column &col2) { return (col1.States[0] == col2.States[0] && col1.States[1] == col2.States[1] && col1.States[2] == col2.States[2] && col1.States[3] == col2.States[3]); } bool operator!= (Column &col1, Column &col2) { return !(col1 == col2); } std::string getNameOfIndex(unsigned int nIndex); std::string getNameOfColumn(Column column); void printFunctionNames(); unsigned int getIndexByColumn(Column column); unsigned int getIndexByName(std::string strName); Column getColumnByIndex(unsigned int nIndex); Column getColumnByName(std::string strVal); void printColumn(Column column); std::string getNameOfIndex(unsigned int nIndex) { std::string strName; switch(nIndex) { case 0: { strName = "FALSE"; } break; case 1: { strName = "AND"; } break; case 2: { strName = "A AND NOT B"; } break; case 3: { strName = "A"; } break; case 4: { strName = "NOT A AND B"; } break; case 5: { strName = "B"; } break; case 6: { strName = "XOR"; } break; case 7: { strName = "OR"; } break; case 8: { strName = "NOR"; } break; case 9: { strName = "XNOR"; } break; case 10: { strName = "NOT B"; } break; case 11: { strName = "A OR NOT B"; } break; case 12: { strName = "NOT A"; } break; case 13: { strName = "NOT A OR B"; } break; case 14: { strName = "NAND"; } break; case 15: { strName = "TRUE"; } break; } return strName; } void printFunctionNames() { cout





[MOD] [GB] Z1 Framework for Gingerbread [FULL MDPI] topic




Z1 MOD for GINGERBREAD
BY HONDATIGER96

SCREENSHOT


Hi Guys. I'm back with the new MOD. I've mod our stock framework in order it will look like Z1 one. I'll update this thread when I've found something new, so please send feedback and hit thanks for continuation of this project :good: :laugh:




Quote:









Feature :
- Fully look like z1 framework
- 30 Steps media volume
- Skip track via long press back button
- Reboot and Recovery in power menu
- CRT animations
- Battery percentage on statusbar
- Custom background for blacktheme
- ICS notification style on statusbar
- Fully themed Statusbar like JB
- Many others ( you can find by yourself )






Quote:









Spesial and BIg thanks :
- Erhany for his great tutorial and Mod
- (Please tell me if I'm use your MOD)






Quote:









Download :
http://d-h.st/tkN










jeudi 23 janvier 2014

Framework UI MOD request for PA. topic




Hey guys. So if someone can make a framework ui modded theme for purity and stock roms, can any talented and generous dev make a mod type flashable theme for AOSPA roms? Like PA original, PA by gnome and PA by David? Well they all are PA. Really would be helpful since this rom does not come with a theme chooser.

My request is for the devs who can pull out something like the one made for purity rom.

Thanks. (hopefully)

Sent from my Nexus 4 using Tapatalk





[Q] De-Odexed Framework not working topic




Hello all;

I have an LG p698 device, with a custom ROM (ZemDroid)(Gingerbread). Everything is working fine, but I wanted to add Arabic support to it, and for that, I need a deodexed framework.

I pulled the entire /system/framework directory, copied and modified the BOOTCLASSPATH as necessary, and used smali and baksmali 2.0.3. They reported no errors in disassembling the framework.odex file, created the "out" directory, and then using smali created the classes.dex file, which I shoved into the framework.jar file using Ark (Kubuntu 13.10).

I made a copy of the working framework.jar and framework.odex files on device, and put the new jar, and of course, deleted the odex.
wiped the dalvik cache for good measure, and rebooted.. The phone got stuck on LG logo :/ (It didn't even reach the custom splash image)

I can reboot into CWM, I can even adb into it in this state, but it won't continue starting up. Replacing original ones lets the device start normally, but my deodexed framework.jar won't :crying:

Any ideas?