[MOD][DEV] BlackBerry 10 style Lockscreen mod for JB [JZO54K / AOKP / CM10] - Android Themes

This mod is originally posted in Galaxy Nexus theme forum :
[MOD] BlackBerry 10 style Lockscreen mod
Preview :
{
"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"
}
I made this mod for jellybean but basically it is based on old WaveView widget(honeycomb's). So I think making same mod for ICS is possible too.. (but untested.. and maybe you have to apply patch manually)
-----------------------------------------------------------------------------
*How to use patch :
http://jungels.net/articles/diff-patch-ten-minutes.html
or my simple guide : about how to use this patch
* diff v1.11 :
for Stock JZO54K : download
for AOKP build 5 : download
for CM10 nightly 20121104+ : download or use gangsterjoop's version : link
* resources for HD(xhdpi) v1.1 : download
-----------------------------------------------------------------------------
Changelog
Code:
[B]06 NOV[/B]
- v1.11 : reduced unlock delay
- Added patch for CM10 nightly 20121104+
[B]25 OCT[/B]
- Added patch for AOKP build 5
[B]13 OCT[/B]
- Added patch for JZO54K
[B]06 OCT[/B]
- v1.1 : fixed some layout issues.
-----------------------------------------------------------------------------

Wow
Sent from my GT-S5570 using Tapatalk 2

Damn I'm sad that Evilisto left the Nexus S
Sent from my Nexus S using Tapatalk 2

Is there some way someone can make this a flashable zip for CWM?

Can someone please, tell me how to patch? I was looking at the tutorials, but with no success, can someone do the detailed guide? That would be much appreciated !
Thank you.

Could you share the wallpaper ? Great mod btw!

I too wish I understood how to apply this

I love the look of this mod but if you could actually tell us how to patch that would be great, Otherwise it's a fairly useless post.. Because from what i'm seeing, more or less no-one here knows how in the hell to patch, what file to patch, etc.

Will try soon ...
Sent from my GT-I9300

does this work on HDPI jellybean?

Someone plz give step by step tutorial on how to apply a patch. I m trying to learn that from a couple of days but with no luck I googled about patching for hours and hours but no luck someone plz help
Sent from my SGH-T959 using xda app-developers app

How to apply this on LPG Rom Galaxy S2 ???

Great

krish0809 said:
Someone plz give step by step tutorial on how to apply a patch. I m trying to learn that from a couple of days but with no luck I googled about patching for hours and hours but no luck someone plz help
Sent from my SGH-T959 using xda app-developers app
Click to expand...
Click to collapse
i second that!

Soooooo Cooooool!!!! But impossible to make it work for a noobie like me

Updated
Updated to v1.1. I fixed some minor layout issues.
And added another patch for CM10 nightly rom..
jojoost said:
Damn I'm sad that Evilisto left the Nexus S
Click to expand...
Click to collapse
Sorry lol At that time, I thought Nexus S won't get jellybean update..
knuddeknurft said:
Is there some way someone can make this a flashable zip for CWM?
Click to expand...
Click to collapse
Sorry but that is impossible... this mod is rom-specific thing so if you want to use this on your rom, you have to download your rom's source code and compile this mod for that rom.
lucas.viana said:
Could you share the wallpaper ? Great mod btw!
Click to expand...
Click to collapse
Here it is.. blown_dandelion
This wallpaper is from Xperia T system dump.
nachiketa.ramesh said:
does this work on HDPI jellybean?
Click to expand...
Click to collapse
I think so but you have to adjust overall layout in WaveView.java and re-draw(or just resize) resource png files.

about how to use this patch
Frankly speaking, I don't have any knowledge about linux so I don't want to write about that but...
Basically, the process is like this :
1) download android source code : there are so many great guides about this...
2) download my patch and put it to /frameworks/base
3) type this.
Code:
patch -p2 < (patchfile_name).patch
for example... (from my previous post)
Code:
[email protected]:~/patch_test/frameworks/base# [B][COLOR="Blue"]patch -p2 < Sense-4.0-Multitasking.patch[/COLOR][/B]
patching file core/res/res/values/dimens.xml
patching file packages/SystemUI/res/drawable/nyandroid_anim.xml
patching file packages/SystemUI/res/layout/status_bar_no_recent_apps.xml
patching file packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
patching file packages/SystemUI/res/layout-port/status_bar_recent_item.xml
patching file packages/SystemUI/res/layout-port/status_bar_recent_panel.xml
patching file packages/SystemUI/res/values/colors.xml
patching file packages/SystemUI/res/values/strings.xml
patching file packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java
[email protected]:~/patch_test/frameworks/base#
4) download and extract resource files to destination folder.
- in this mod, /frameworks/base/core/res/res/drawable-xhdpi/
5) then compile.. if you have compiled your current rom before, use mmm to compile each files.
In this mod, you have to compile framework-res.apk, framework.jar (include framework2.jar in CM10) and android.policy.jar.
6) after using patch, you'd better revert all changes for future use..
Code:
patch -p2 -R < (patchfile_name).patch

evilisto said:
Frankly speaking, I don't have any knowledge about linux so I don't want to write about that but...
Basically, the process is like this :
1) download android source code : there are so many great guides about this...
2) download my patch and put it to /frameworks/base
3) type this.
Code:
patch -p2 < (patchfile_name).patch
for example... (from my previous post)
Code:
[email protected]:~/patch_test/frameworks/base# [B][COLOR="Blue"]patch -p2 < Sense-4.0-Multitasking.patch[/COLOR][/B]
patching file core/res/res/values/dimens.xml
patching file packages/SystemUI/res/drawable/nyandroid_anim.xml
patching file packages/SystemUI/res/layout/status_bar_no_recent_apps.xml
patching file packages/SystemUI/res/layout-land/status_bar_recent_panel.xml
patching file packages/SystemUI/res/layout-port/status_bar_recent_item.xml
patching file packages/SystemUI/res/layout-port/status_bar_recent_panel.xml
patching file packages/SystemUI/res/values/colors.xml
patching file packages/SystemUI/res/values/strings.xml
patching file packages/SystemUI/src/com/android/systemui/recent/RecentsPanelView.java
[email protected]:~/patch_test/frameworks/base#
4) download and extract resource files to destination folder.
- in this mod, /frameworks/base/core/res/res/drawable-xhdpi/
5) then compile.. if you have compiled your current rom before, use mmm to compile each files.
In this mod, you have to compile framework-res.apk, framework.jar (include framework2.jar in CM10) and android.policy.jar.
6) after using patch, you'd better revert all changes for future use..
Code:
patch -p2 -R < (patchfile_name).patch
Click to expand...
Click to collapse
Thanks for your reply but I'm a newbie can u plz make a flashable zip plz.. . If it's possible
Sent from my SGH-T959 using xda app-developers app

krish0809 said:
Thanks for your reply but I'm a newbie can u plz make a flashable zip plz.. . If it's possible
Sent from my SGH-T959 using xda app-developers app
Click to expand...
Click to collapse
He said in the post above that its impossible to make a flashable zip. I think by that he means its impossible to make a flashable zip that works for all devices since all devices are different. I believe it would be possible to make flashable zips for specific devices, but I have no idea how :/

can u make a flashable.zip for Galaxy Tab 7 Plus P6200?? im running ICS 4.0.3...pls pls...im too noob bout this all..n there currently sooo little dev on this devices..

Related

[MOD][DEV] Optimus 4X style lockscreen mod for JB [JZO54K / CM10]

This mod is originally posted in Nexus S theme forum.
[MOD] Optimus 4X style Lockscreen
And here is for Galaxy Nexus version :
[MOD] Optimus 4X style Lockscreen (for Galaxy Nexus)
-----------------------------------------------------------------------------
Preview :
{
"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"
}
-----------------------------------------------------------------------------
How to :
1) Apply patch(diff) with resources.
2) Compile.
3) Done
*How to use patch : http://jungels.net/articles/diff-patch-ten-minutes.html
* diff (v3) [for HD, JellyBean]
for JZO54K: Download
for CM10 nightly 20121104+: Download
* diff (v2.5) [old version for WVGA / ICS rom]: Download
* resources :
Download for HD v3
Download for WVGA v2.5
-----------------------------------------------------------------------------
Changelog :
Code:
[B]06 NOV[/B]
- Added patch for CM10 nightly 20121104+
[B]13 OCT[/B]
- Updated patch for JZO54K
[B]v3[/B]
- Merged with [URL="http://forum.xda-developers.com/showthread.php?t=1889865"]Transparent Locksceen mod[/URL].
- for JellyBean rom..
- minor fixes.
[I][B]v2.5[/B][/I]
- Added outer ring and code cleaned up.
[I][B]v2.1[/B][/I]
- Fixed music transport control layout.
[I][B]v2[/B][/I]
- Added unlock animation and fixed some bugs.
-----------------------------------------------------------------------------
Wallpaper in preview (from LG Spectrum) : Download
-----------------------------------------------------------------------------
Thanks to stephenjungels.com for guide to diff and patch..
-----------------------------------------------------------------------------
Thanks for the Mod again evilsto ^_^..... Looking forward for more in the future
Code updated
Added unlock animation and fixed some major bugs
Sorry for the dumb question.. but do I need to patch this before compiling the ROM or decompile the framework Res apk and then apply the patch?
Sent from my HTC Sensation using Tapatalk 2
wow this looks amazing!
What values do I edit for this to work with an xhdpi phone? its the galaxy nexus btw. Thanks awesome mod!!!!
BurnRubber90 said:
Sorry for the dumb question.. but do I need to patch this before compiling the ROM or decompile the framework Res apk and then apply the patch?
Sent from my HTC Sensation using Tapatalk 2
Click to expand...
Click to collapse
Before you compile and here is a guide posted be evilisto on how to use it.... It's very simple and easy - http://forum.xda-developers.com/showpost.php?p=24746997&postcount=30
Does this work with Miui V4 ICS?
Sent from Asgard.
Sorry for dumb request. Can you make a flashable zip? or smthing easier i have no idea how to make it work on my phone (G2x) .btw it's a great mod !!
updated to v2.1
Code updated again
(fixed music transport control layout)
jyabor91 said:
What values do I edit for this to work with an xhdpi phone? its the galaxy nexus btw. Thanks awesome mod!!!!
Click to expand...
Click to collapse
If you want to make this mod for xhdpi devices, firstly you have to draw resource(png) files for your screen size..
(not difficult. just shade, circle and text)
echoside1313 said:
Does this work with Miui V4 ICS?
Click to expand...
Click to collapse
No. This mod is rom-specific thing.
gold1304 said:
Sorry for dumb request. Can you make a flashable zip? or smthing easier i have no idea how to make it work on my phone (G2x) .btw it's a great mod !!
Click to expand...
Click to collapse
You can find flashable zip for Nexus S roms (stock IMM76D and CM9 nightly 20120509) in here : http://forum.xda-developers.com/showthread.php?t=1585684
But use at your own risk because those are basically for Nexus S...
to which file should i use the patch with ??
evilisto said:
You can find flashable zip for Nexus S roms (stock IMM76D and CM9 nightly 20120509) in here : http://forum.xda-developers.com/showthread.php?t=1585684
But use at your own risk because those are basically for Nexus S...
Click to expand...
Click to collapse
I tried that both zip but it says error .... (status 0) istallation arborted and i tried to copy the files manual with root explorer but my phone boots forever
P/s: i'm running Cm9 rom
only 7 words (i.e instruction) till I get this amazing mod on my phone and yet it feels so far away. You must have spent a lot of time creating this so why not spend some extra time for a decent instruction that would make it more accessible to others. a full sentence instruction with key word is good enough allowing us to google for details. the link u post for guide doesn't help much either. anyway, is there anyone around here that can make sense of the instruction please make a bit more detailed guide here for everyone else. that will be greatly appreciated
thoiloidainhan said:
only 7 words (i.e instruction) till I get this amazing mod on my phone and yet it feels so far away. You must have spent a lot of time creating this so why not spend some extra time for a decent instruction that would make it more accessible to others. a full sentence instruction with key word is good enough allowing us to google for details. the link u post for guide doesn't help much either. anyway, is there anyone around here that can make sense of the instruction please make a bit more detailed guide here for everyone else. that will be greatly appreciated
Click to expand...
Click to collapse
He's instructions are perfect once you google how to use a patch.... there is no guide needed for this...... all you do is apply the patch to your rom source code. Use this has a guide to download the source code http://forum.xda-developers.com/showthread.php?t=1503093
then navigate to your source folder in terminal and read this to learn how to use the patch http://forum.xda-developers.com/showpost.php?p=24746997&postcount=30
evilisto said:
-----------------------------------------------------------------------------
* updated to v2.1 *
- fixed music transport control layout.
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
* updated to v2 *
- added unlock animation and fixed some bugs.
-----------------------------------------------------------------------------
(this mod is originally posted in nexus s theme forum.)
[mod] optimus 4x style lockscreen (expand circle to unlock)
this is much simplified optimus 4x style lockscreen mod.
(or just 'expand circle to unlock' mod lol :d)
frankly, not much similar to original version but i think this is interesting so i want to share with other users
-----------------------------------------------------------------------------
preview :
-----------------------------------------------------------------------------
* caution : All values and resources(pngs) are for hdpi=wvga devices *
how to :
1) apply patch(diff) with resources.
2) compile.
3) done
*how to use patch : http://jungels.net/articles/diff-patch-ten-minutes.html
* diff (v2.1) : download
Code:
- sorry, current(v2.1) patch's content is too long to post here ;)
* resources : download
-----------------------------------------------------------------------------
thanks to stephenjungels.com for guide to diff and patch..
-----------------------------------------------------------------------------
Click to expand...
Click to collapse
can you port to sgsii , i like so much !
jorse912 said:
can you port to sgsii , i like so much !
Click to expand...
Click to collapse
+1
jorse912 said:
can you port to sgsii , i like so much !
Click to expand...
Click to collapse
flashable zip for desire HD please? im lost when it comes to this type of stuff most I can do is root explorer and things like that
updated
Added another patch for AOKP(or other AOKP-based roms)
Download is here : http://www.mediafire.com/?bvoyrzpbvbtw8bj
jorse912 said:
can you port to sgsii , i like so much !
Click to expand...
Click to collapse
DaKiii said:
+1
Click to expand...
Click to collapse
warfexion said:
flashable zip for desire HD please? im lost when it comes to this type of stuff most I can do is root explorer and things like that
Click to expand...
Click to collapse
Sorry, but I think making some kind of mods for devices that I don't have is not a good idea. You'd better to ask your rom dev because this mod is rom-specific thing.
(or ask other themer / modder who have the same device as you)
Instead of making patches for CM etc, why not commit your code to gerrit and get it permanently included?
Is there a way of port to go locker or anything else?

[MOD][GUIDE]Modified S-PEN Shortcuts toolbar / Change Apps (CWM)

IMPORTANT: Flash this MOD at your own risk. I or the XDA assume NO responsibility for any failed flashes or bricked tablets.​
Samsung Galaxy Note 10.1
How-To change Apps in the S-PEN Shortcuts toolbar​
I found, after a long time, a solution for change the Apps in the S-Pen Shortcuts toolbar. The toolbar pops up if you pushed out the S-Pen.
I don´t like and use some Apps like this stupid Game "crayon_physics" or Polaris Office...... first i have delete the Game but how i can get a new App in this Toolbar?!?
Now i have found a solution!!! And i want to teach you how you can do this!!!
First a few Screenshoots before and ofter the modding:
before (without the game):
{
"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"
}
after modding:
So .... how can you change the toolbar? I have tested it only on a deodexed ROM!!
What do you need?
any APK Tool Manager for decombile and recombile, like this LINK
a Text Editor like Notepad++ (free)
your SystemUI.apk from your ROM
a cup cake and a coffee :laugh:
First you decombile the SystemUI.apk
Go to the folder systemui\res\values
open the arrays.xml with the Text Editor
Here you find this lines
Code:
com.diotek.mini_penmemo,com.diotek.mini_penmemo.Mini_PenMemo_Service
com.sec.android.app.snotebook,com.infraware.filemanager.FmFileTreeListActivity
com.android.calendar,com.android.calendar.AllInOneActivity
com.acrodea.crayonphysics,com.acrodea.crayonphysics.crayonphysics
air.com.adobe.pstouch.oem1,air.com.adobe.pstouch.oem1.AppEntry
com.infraware.PolarisOfficeStdForTablet,com.infraware.splash.SplashActivity
Now you need the packageName and the className of the App that you want to make in the Toolbar.
An example:
com.acrodea.crayonphysics,com.acrodea.crayonphysics.crayonphysics
packageName = com.acrodea.crayonphysics
className = com.acrodea.crayonphysics.crayonphysics
or
air.com.adobe.pstouch.oem1,air.com.adobe.pstouch.oem1.AppEntry
packageName = air.com.adobe.pstouch.oem1
className =com.adobe.pstouch.oem1.AppEntry
Now you can change the packageName & className with your wanted Apps and recombile the SystemUI.apk
Pushed the SystemUI.apk in a flash able ZIP or changed it in your ROM.
Here are a List of Apps that i have allready tested! If you have an other App please post the packageName and the className and i added it on this List!!!
Or install the ClassFinder App
Code:
[B]Contacts[/B]
packageName=com.android.contacts
className=com.android.contacts.activities.DialtactsActivity
or
[B]Contacts[/B]
packageName=com.android.contacts
className=com.android.contacts.activities.PeopleActivity
[B]ChatOn[/B]
packageName=com.sec.chaton
className=com.sec.chaton.HomeActivity
[B]Camera[/B]
packageName=com.sec.android.app.camera
className=com.sec.android.app.camera.Camera
[B]Galerie[/B]
packageName=com.sec.android.gallery3d
className=com.sec.android.gallery3d.app.Gallery
[B]Dropbox[/B]
packageName=com.dropbox.android
className=com.dropbox.android.activity.DropboxBrowser
[B]Youtube[/B]
packageName=com.google.android.youtube
className=com.google.android.youtube.app.honeycomb.Shell$HomeActivity
[B]Settings[/B]
packageName=com.android.settings
className=com.android.settings.Settings
[B]Browser[/B]
packageName=com.android.browser
className=com.android.browser.BrowserActivity
[B]Maps[/B]
packageName=com.google.android.apps.maps
className=com.google.android.maps.MapsActivity
[B]Calender[/B]
packageName=com.android.calendar
className=com.android.calendar.AllInOneActivity
[B]PSTouch[/B]
packageName=air.com.adobe.pstouch.oem1
className=air.com.adobe.pstouch.oem1.AppEntry
[B]Contacts[/B]
packageName=com.infraware.PolarisOfficeStdForTablet
className=com.infraware.splash.SplashActivity
[B]E-Mail[/B]
packageName=com.android.email
className=com.android.email.activity.Welcome
[B]Samsung Video Player[/B]
packageName=com.sec.android.app.videoplayer
className=com.sec.android.app.videoplayer.activity.MainTab
more coming soon....
In the attachment you can found a SAMPLE ZIP File! This is flashable over CWM. Use this to flash your own SystemUI.apk ... only change the SystemUI in the ZIP with your SystemUI.apk
If I could help you.... I am happy if you press the THANKS Button or buy me a beer or coffee
:victory:!
Any Credits go to me! Feel free for using this in your own ROM ... only linked this Thread and give the Credits to me! Thanks!
Changelog
11.01.2013
- Class Finder App online ... read here
03.01.2013
- Samsung Video Player added
- Contacts added with a different Startscreen
FAQ
Q: Where can i find the packageName & className from my wanted App?
A: Install the Class Finder App ... this App show you the className and packageName !!! Link
Wow very nice work. Going to be very handy. Thanks.
Sent from my GT-N8013 using Tapatalk 2
Great idea :thumbup:
Send from my toilets
That is the best entry I have seen on this forum, today!
Thank you
I have been looking for something like this.
Now, if we can just get it to be modified, on the fly (as an app and not required to be flashed in recovery), by specifying the apps you want to put in there....THAT will be cool and very, VERY useful.
Thanks for you hard work - appreciated.
bert269 said:
Now, if we can just get it to be modified, on the fly (as an app and not required to be flashed in recovery), by specifying the apps you want to put in there....THAT will be cool and very, VERY useful.
Click to expand...
Click to collapse
Sorry but that is not possible.. because the SystemUI.apk must be decomplie.... and this is on the Device not possible..
pimpmaneaton said:
Wow very nice work. Going to be very handy. Thanks.
Sent from my GT-N8013 using Tapatalk 2
Click to expand...
Click to collapse
Any chance you could add Lecture Notes in future builds of Redemption?
Sent from my Galaxy Note 10.1 using Tapatalk HD
Great News!!!
The User bjbinc have made an App for use to read out the className of any App that installed ist!!! :highfive: :good:
BIG THANKS TO bjbinc !!!!
Install the ClassFinder_1.0.apk from Attachment an start it. Select the needed Apps and go to SAVE. Then the App saves a classes.txt to /storage/sdcard0/ClassFinder/ .... this you can open and find your requestet Infos!!
Great and easy Tool :highfive: :good:
With this Infos you can make the MOD with your own Apps!
To make an App for modded the SystemUI.apk rigtht on the device is not possible because the SystemUI.apk must be decompile.... and this is not possible on the Device. ..... sorry
Glad to help out my friend :good:
anyone having problems with the SystemUI crashing after trying to do this?. The mod works but the it keeps crashing for some reason when i hit the home button
ckavvouras said:
anyone having problems with the SystemUI crashing after trying to do this?. The mod works but the it keeps crashing for some reason when i hit the home button
Click to expand...
Click to collapse
With APK Tool you are using?
Can you post your SystemUI ?
Darkman_RS said:
With APK Tool you are using?
Can you post your SystemUI ?
Click to expand...
Click to collapse
im using apk manager v5.0.2
with the latest apktool.bat and jar
the original apk size compressed is 2.6mb after i recompile its 1.6 mb compressed, when i decompress both file they both match up perfectly as far as i can see
hope this helps with helping me
ckavvouras said:
the original apk size compressed is 2.6mb after i recompile its 1.6 mb compressed, when i decompress both file they both match up perfectly as far as i can see
Click to expand...
Click to collapse
that is ok
your systemui looks good... i think its your apk manager
if decompilie and recompilie without changing anything, works this ui?
which ROM you are using? And please post your untouched SystemUI i try to make the change for you!
Darkman_RS said:
that is ok
your systemui looks good... i think its your apk manager
if decompilie and recompilie without changing anything, works this ui?
which ROM you are using? And please post your untouched SystemUI i try to make the change for you!
Click to expand...
Click to collapse
tried that as well, same thing happens. every time i hit the home back or recent button my system ui crashes, i can open up the pull up menu without a problem, when i pull the spen out the side dock pops up with no problem, cant figure it out. have tried with different methods for compiling and decompiling apks. cant remember what rom im using but i downloaded off xda its a deodexed rom. build number jzo54k.n8000xxcll3.deodexed
ckavvouras said:
tried that as well, same thing happens. every time i hit the home back or recent button my system ui crashes, i can open up the pull up menu without a problem, when i pull the spen out the side dock pops up with no problem, cant figure it out. have tried with different methods for compiling and decompiling apks. cant remember what rom im using but i downloaded off xda its a deodexed rom. build number jzo54k.n8000xxcll3.deodexed
Click to expand...
Click to collapse
Ok then your APK Manager is not work with TW ROMs ... you need to install the framework-res.apk and the twframework-res.apk !!
Test the UI in Attachment!! Flash the ZIP over CWM...
And for decompilie i use this
Guide and this Tool !!!!
Darkman_RS said:
Ok then your APK Manager is not work with TW ROMs ... you need to install the framework-res.apk and the twframework-res.apk !!
Test the UI in Attachment!! Flash the ZIP over CWM...
And for decompilie i use this
Guide and this Tool !!!!
Click to expand...
Click to collapse
no luck, grrr i have tried everything even pushing it with adb, the systemui keeps crashing, when i replace it with the stock systemui everything runs fine, i even installed the latest 8010 you have posted on another thread and build a new one and pushed that one and still no luck :crying: also i noticed the screen turns on by its self for no reason with the modified systemui
one last Attempt ...
Please use the latest N8010er Build N8010XXUCMA5 deodexed from me. After flashed the ROM reboot the device.. then reboot in Recovery and flash the ZIP from this attachment!
I hope now it works...
Darkman_RS said:
one last Attempt ...
Please use the latest N8010er Build N8010XXUCMA5 deodexed from me. After flashed the ROM reboot the device.. then reboot in Recovery and flash the ZIP from this attachment!
I hope now it works...
Click to expand...
Click to collapse
no cigar, flashed it from cwm and this one doesn't even load at boot. I browsed with root explorer and its in the /system/app folder but its just not registering. but thanks anyways man i appreciate the help
ckavvouras said:
no cigar, flashed it from cwm and this one doesn't even load at boot. I browsed with root explorer and its in the /system/app folder but its just not registering. but thanks anyways man i appreciate the help
Click to expand...
Click to collapse
Unfortunately, it doesn't work properly for me. I do get it to work, but then the systeui.apk crashes every few seconds. Do you have an indication of what could go wrong, or at least where do you think a mistake is made?

[TUT]Kernel bootsplash change for our Mini

I finally know how to change bootsplash image for our mini, so know I will share my knowledge with you all
-------------------------------------------
Needed:
-Ubuntu (preferably 12.10)
-Android Rom Kitchen (http://forum.xda-developers.com/showthread.php?t=633246)
-Android Kernel Kitchen (http://forum.xda-developers.com/showthread.php?t=1659584)
-Package of Rom and boot.img which we will edit
-Image in resolution of our mini and .png file format, which will be our bootsplash (240'width'x320'high')
-ImageMagic
-Nautilus file manager (If you don't have Nautilus, search it in Software Center then install it)
-------------------------------------------
INDEX:
I. CONVERTING .png to .rle with Android Kernel Kitchen - POST 2
II. Decompiling Rom and Kernel using Android Rom Kitchen - POST 3
III. Replacing bootsplash image and compiling kernel - POST 4
##############################
#Credits:
# -Me, Myself and I
# -dsixda
# -championswimmer
##############################
==================================================
I. CONVERTING .png to .rle with Android Kernel Kitchen
==================================================
1. Put your image into Android Kernel Kitchen input folder (tools/input/'here_goes_your_file.png')
2. Rename your image to bootsplash.png
{
"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"
}
3. Double-click on menu file (in your tools folder) and then press 'Run in Terminal'
4. Press enter and you will see 5 options
5. Choose 5th option (Editing bootsplash images) and press enter
6. Now choose 2nd option (Convert png to rle) and press enter
7. Type resolution of our mini: 240x320 and press enter
8. You will find converted file in tools/output folder
==================================================
II. Decompiling Rom and Kernel using Android Rom Kitchen
==================================================
1. Put your rom (*.zip) in Android Rom Kitchen directory - 'original_update' folder
2. Start menu file exactly the same way as in Kernel Kitchen
3. You' ll see a lot of options, choose 1st one and press enter (without typing 's' or 'x')
4. Now choose your Rom with number before its name
5. If u want chane name of this folder (not necessary)
6. Now u will see 2 options saying sth* about updater script, choose 1st option (I said sth* because, It doesn't need to be explained)
7. In next 2 options you can just click enter then u will see some info about Rom you are recompiling
8. Now type 0 and press enter for advanced options
9. Now type 12 and press enter, u will see some options to work with kernels...
10. Choose option 'w' and wait
11. Now u can exit Terminal and check if your kernel is extacted - look into 'your_android_rom_kitchen'/BOOT-EXTRATED folder
12. Kernel is recompiled
==================================================
III. Replacing bootsplash image and compiling kernel
==================================================
1. Go to directory of your converted bootsplash and copy this image
2. Now go to 'your_android_rom_kitchen'/BOOT-EXTRATED/boot.img-ramdisk/
3. Past there your bootsplash.rle
4. Delete original TASS.rle and rename your bootsplash.rle to TASS.rle
5. Open menu file of rom kitchen
6. Choose option 0 and then option 12
7. Now u will see diffrent options than previous time
8. Type 'b' and press enter
9. You have just compiled kernel with your own boot image
10. You can find this boot.img in your working folder so just copy it and do whatever you want
**If you want to continue and compile rom with Android Rom Kitchen remember to change update-script to updater-script via menu file !
GOOD JOB, YOU HAVE JUST COMPILED boot.img WITH YOUR OWN BOOT SPLASH !
Nice tutorial, thanks
Sent from my GT-S5570 using xda premium
I need some testers 'coz I have only tested it on 2 boot.img files
Btw. If sth is unclear let me know
Sent from my BL-S5570 using xda app-developers app
You should add tutorial for Linux Newbie that use other DE (XFCE / Xubuntu) cause different DE means different File Manager.
OR
You can add this line : "Use Nautilus File Manager if you don't have Nautilus, search it in Software Center then install it."
That's all i want to add, cause Linux newbie could confused if they install different DE.
F4uzan said:
You should add tutorial for Linux Newbie that use other DE (XFCE / Xubuntu) cause different DE means different File Manager.
OR
You can add this line : "Use Nautilus File Manager if you don't have Nautilus, search it in Software Center then install it."
That's all i want to add, cause Linux newbie could confused if they install different DE.
Click to expand...
Click to collapse
Heh, I am just a newbie in linux and I installed ubuntu about 3 months ago and I didn't know about diffrent file managers...
Adding your line to tut Thanks
Edit: added in needed
Sent from my BL-S5570 using xda app-developers app
BlackLie said:
Heh, I am just a newbie in linux and I installed ubuntu about 3 months ago and I didn't know about diffrent file managers...
Adding your line to tut Thanks
Edit: added in needed
Sent from my BL-S5570 using xda app-developers app
Click to expand...
Click to collapse
Thx back !
Nice tut ! I tried it with CM7.2 by mebitek default kernel. It success, 100% work.
come on people, he's gone to so much effort to give us this guide....and 3 thanks???
BlackLie said:
I finally know how to change bootsplash image for our mini, so know I will share my knowledge with you all
-------------------------------------------
Needed:
-Ubuntu (preferably 12.10)
-Android Rom Kitchen (http://forum.xda-developers.com/showthread.php?t=633246)
-Android Kernel Kitchen (http://forum.xda-developers.com/showthread.php?t=1659584)
-Package of Rom and boot.img which we will edit
-Image in resolution of our mini and .png file format, which will be our bootsplash (240'width'x320'high')
-ImageMagic
-Nautilus file manager (If you don't have Nautilus, search it in Software Center then install it)
-------------------------------------------
INDEX:
I. CONVERTING .png to .rle with Android Kernel Kitchen - POST 2
II. Decompiling Rom and Kernel using Android Rom Kitchen - POST 3
III. Replacing bootsplash image and compiling kernel - POST 4
##############################
#Credits:
# -Me, Myself and I
# -dsixda
# -championswimmer
##############################
Click to expand...
Click to collapse
so....i can't do it on windows?
XDRdaniel said:
so....i can't do it on windows?
Click to expand...
Click to collapse
I have tried a lot of tuts for windows, but none of them worked, you'll get stuck on samsung logo or just see black screen... so nope, you can't
Sent from my BL-S5570 using xda app-developers app
BlackLie said:
I have tried a lot of tuts for windows, but none of them worked, you'll get stuck on samsung logo or just see black screen... so nope, you can't
Sent from my BL-S5570 using xda app-developers app
Click to expand...
Click to collapse
it could be, just you never learn it deeply ..
i did it with my windows 7, and always work ..
tio12 said:
it could be, just you never learn it deeply ..
i did it with my windows 7, and always work ..
Click to expand...
Click to collapse
I tried it on vista, 7 and on win 8, I didn't want to install ubuntu, so I tried it in a lot of diffrent ways and I never got the result...
What I had after making it on windows: black screen or samsung logo and boot loop or nothing ever happened...
If you know how just give me some more info or write a tut
XDRdaniel said:
so....i can't do it on windows?
Click to expand...
Click to collapse
Yes... with Cygwin
Alberto97 said:
Yes... with Cygwin
Click to expand...
Click to collapse
I tried with Cygwin xP It just made a lot of mess on my PC ;x
BlackLie said:
I tried with Cygwin xP It just made a lot of mess on my PC ;x
Click to expand...
Click to collapse
For me, in Windows 7, works perfectly
BlackLie said:
I finally know how to change bootsplash image for our mini, so know I will share my knowledge with you all
-------------------------------------------
Needed:
-Ubuntu (preferably 12.10)
-Android Rom Kitchen (http://forum.xda-developers.com/showthread.php?t=633246)
-Android Kernel Kitchen (http://forum.xda-developers.com/showthread.php?t=1659584)
-Package of Rom and boot.img which we will edit
-Image in resolution of our mini and .png file format, which will be our bootsplash (240'width'x320'high')
-ImageMagic
-Nautilus file manager (If you don't have Nautilus, search it in Software Center then install it)
-------------------------------------------
INDEX:
I. CONVERTING .png to .rle with Android Kernel Kitchen - POST 2
II. Decompiling Rom and Kernel using Android Rom Kitchen - POST 3
III. Replacing bootsplash image and compiling kernel - POST 4
##############################
#Credits:
# -Me, Myself and I
# -dsixda
# -championswimmer
##############################
Click to expand...
Click to collapse
can you write a tuch on windows 7 ?
halisa said:
can you write a tuch on windows 7 ?
Click to expand...
Click to collapse
I don't know how to make it on win7 (if it is not impossible) ....

[HOW-TO]Port a Note 4's ROM to G906S/K/L and G901F

​​
Consist of 6 parts:
1.Replace Kernel
2.Fix RIL and Audio
3.Fix Sensors
4.Fix Wi-Fi
5.Fix Camera
6.Fix Telephony
To begin with,
Download a Note 4's ROM(APQ8084-based and single SIM version) such as N9108,N910F
Example:[5.1.1]Aurora.N9108.Full.Note5.Port.No.6
Link:http://pan.baidu.com/s/1dEb8FEp
Don't forget permissions
folders:0755
files:0644
bin:0755
If you have any question,just reply
I wish all ROM ported to G906&G901 using this guide can be released in order to enlarge the number of ROM of G901&G906
If this thread can help you,please click Thank.
Part 1 : Replace Kernel
1.Get Kernel from that Note4's ROM
{
"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"
}
2.Unpack Boot.img using Android Image Kitchen (http://forum.xda-developers.com/showthread.php?t=2073775)
3.Replace zImage and dtb in split_img with a 5.1.1 compatible one of G901F or G906S/K/L
4.Repack Boot.img
Run repackimg.bat
There will be an image-new.img
5.Replace boot.img in that ROM with image-new.img
Kernel source: https://github.com/jesec/android_kernel_samsung_apq8084
G906: View attachment G906-5.1.1.zip
Part 2 : Fix RIL and Audio
1.Replace system/libril.so and system/libsec-ril.so with G906S/K/L or G901's
2.Replace system/etc/*.acdb with G906S/K/L or G901's
Part 3 : Fix Sensors
1.Replace system\lib\hw\sensors.apq8084.so with G906S/K/L or G901F's
Part 4 : Fix Wi-Fi
1.Replace system/lib/libhardware_legacy.so with G906S/K/L or G901F's
2.Flash ROM to your phone please,it will let file adding and modifing easier.
With a compatible kernel,it would boot now.
Custom recovery link:
G901F:http://forum.xda-developers.com/gal...recovery-twrp-2-8-7-0-touch-recovery-t3270228
G906S/K/L:http://forum.xda-developers.com/gal...overy-teamwin-recovery-project-2-8-7-t3259606
3.Wait it boot
4.Remove this folder using Root Explorer on your phone.
system/etc/wifi
6.Add files from zip
View attachment wlan.zip
Part 5 : Fix Camera
1.Remove these files:
system\vendor\lib\H16*
system\lib\H16*
system\etc\H16*
2.Replace these files with G901F or G906's
system\bin\mm-qcamera-daemon
system\vendor\lib\libchromatix*
system\vendor\lib\libmmcamera*
3.Add these files from stock G901F or G906 ROM
system\etc\F16*
system\lib\F16*
system\vendor\lib\F16*
Part 6 : Fix Telephony
1.Copy system\framework\telephony-common.jar to your computer.
2.Decompile that jar using APK studio
3.Remove these files
com/android/internal/telephony/RIL*.smali
4.Decompile stock telephony-common.jar
5.Copy stock com/android/internal/telephony/RIL*.smali to that one from Note 4's ROM
6.Recompile that jar and sign.
7.Copy it to your Phone.
This aint for G900F?
dr460nf1r3 said:
This aint for G900F?
Click to expand...
Click to collapse
NO
jesse-chan said:
NO
Click to expand...
Click to collapse
But will this work if I take a Note 3 Rom to Port since Hardware is Mostly similar?
dr460nf1r3 said:
But will this work if I take a Note 3 Rom to Port since Hardware is Mostly similar?
Click to expand...
Click to collapse
Maybe.
jesse-chan said:
Maybe.
Click to expand...
Click to collapse
Ill go ahead and try once your guide is completed.. Was searching for such a guide for a long time
Hi dude, thanks for the nice guide.
I've got some questions about these commits you've made,
f59ed5d94676c43de84b9b919f54c4faa21094ff security: Import N9100-COK2
0d5759624adb2f0a57e6bb7cc9cfb97998ac1a1f include:Import N9100-COK2
and so on..
At first I thought you just overrided the N9100 kernel source on top of yours, but I made a diff with the original N9100 kernel source and found out that you actually didn't.
(I couldn't find COK2 source for N9100 so instead downloaded COK1 source)
I wonder how you merged the N9100 source files, maybe you created a patch by using 'diff -urN' between stock BOI5 and N9100 COK2 source and applied it with 'patch -p1'?
Will be looking forward to your answer, and again thanks for your contributions for our device.
Thanks in advance.
dr460nf1r3 said:
Ill go ahead and try once your guide is completed.. Was searching for such a guide for a long time
Click to expand...
Click to collapse
Tons of kernel-side changes are required, which have already been made by Jesse in case of G906.
Maybe you should contact a skilled kernel developer first.
jesse-chan said:
Maybe.
Click to expand...
Click to collapse
Hi, I know this is too much to ask, but can you provide tutorial to port aosp ROM too? Thanks XD
Sent from my SM-G906S using Tapatalk
jesse-chan said:
1.Copy system\framework\telephony-common.jar to your computer.
2.Decompile that jar using APK studio
3.Remove these files
com/android/internal/telephony/RIL*.smali
4.Decompile stock telephony-common.jar
5.Copy stock com/android/internal/telephony/RIL*.smali to that one from Note 4's ROM
6.Recompile that jar and sign.
7.Copy it to your Phone.
Click to expand...
Click to collapse
hi,
it is possible to perform you the above steps for G901F dwvice and add it here?
am also specify where to copy the file in the ROM?
thanks.
jesse-chan said:
Maybe.
Click to expand...
Click to collapse
Why IT don't work with g900f
Can i port with this Guide a note 3 Rom to s5
The g901 have only better cpu
[email protected] said:
Why IT don't work with g900f
Can i port with this Guide a note 3 Rom to s5
The g901 have only better cpu
Click to expand...
Click to collapse
Yes that it can work.
I'm porting SmokkieRom v5 to S5, I have almost finished, only need edit frameworks, after I will try to boot it
EDIT: If Someone want to help me you're welcome, PM to ROM Facebook Page (you can find it on my signature)
kykint said:
Hi dude, thanks for the nice guide.
I've got some questions about these commits you've made,
f59ed5d94676c43de84b9b919f54c4faa21094ff security: Import N9100-COK2
0d5759624adb2f0a57e6bb7cc9cfb97998ac1a1f include:Import N9100-COK2
and so on..
At first I thought you just overrided the N9100 kernel source on top of yours, but I made a diff with the original N9100 kernel source and found out that you actually didn't.
(I couldn't find COK2 source for N9100 so instead downloaded COK1 source)
I wonder how you merged the N9100 source files, maybe you created a patch by using 'diff -urN' between stock BOI5 and N9100 COK2 source and applied it with 'patch -p1'?
Will be looking forward to your answer, and again thanks for your contributions for our device.
Thanks in advance.
Tons of kernel-side changes are required, which have already been made by Jesse in case of G906.
Maybe you should contact a skilled kernel developer first.
Click to expand...
Click to collapse
Yeah,I merge it.And OK2 is just a mistake,I forget the number at that time.
I compare N910-BOF with N9100-COK and apply it to G906-BOJ.
stefanz08 said:
hi,
it is possible to perform you the above steps for G901F dwvice and add it here?
am also specify where to copy the file in the ROM?
thanks.
Click to expand...
Click to collapse
Just copy to where it is copied from.
Weild Hayn said:
Hi, I know this is too much to ask, but can you provide tutorial to port aosp ROM too? Thanks XD
Sent from my SM-G906S using Tapatalk
Click to expand...
Click to collapse
I lost my phone now,so i can't provide tutorial to port AOSP ROM until I find my phone.
But actually you can build by yourself,here is a fully working device tree that can build Cyanogenmod present to you by CallMESuper and me.
https://github.com/Dev-in-Advance/android_device_samsung_lentislte

[rom][unofficial][6.0.1] aokp [z00ed/z00rd]

{
"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"
}
1: Verify that you're using the latest version of TWRP
2: Perform a FULL WIPE as described below if coming from another ROM or a different version of Android (A full wipe is when you wipe system/data/cache)
3: Flash the latest version of this ROM
4: Flash GAPPS
5: Reboot and ENJOY!!
Z00ED/Z00RD: https://www.androidfilehost.com/?fid=385035244224382917
Check out the ROM source on github. Open source, in the spirit of community kangage.
CREDITS:
Thanks to Cyanogen-mod
Contributors
STELIX
Source Code: http://github.com/AOKP
ROM OS Version: 6.0.x Marshmallow
ROM Kernel: Linux 3.10.x
ROM Firmware Required: Unlocked Bootloader, TWRP
Based On: CyanogenMOD
Version Information
Status: Unknown
Created Oct 06, 2016
Last Updated Oct 06, 2016
WARNING:
I'm not the creator of this ROM as I just found it while searching AFH website. Also STELIX (the guy who made this ROM ) is shown in AOKP as one of "THE KANGLINGS" in the ROM Control app so this ROM may be an Official one. I'm not sure
If you get ERROR 7 when installing this ROM here is the fix.
Big thanks to STELIX and AOKP team.
Fix for Rebot after Uninstalling apps:
Remove:
/system/lib/hw/keystore.msm8916.so and /system/lib64/hw/keystore.msm8916
Announcement:
Use the ROM from the link bellow instead of this one because this ROM is made from an old CM full with bugs that were fixed in the CM14 made by audahadi.
You can use this ROM but some features like off screen gestures and GPS are not working proprely
http://forum.xda-developers.com/zenfone-2-laser/development/rom-cyanogenmod-13-0-t3520986
vraciu' said:
I'm not the creator of this ROM as I just found it while searching AFH website. Also STELIX (the guy who made this ROM ) is shown in AOKP as one of "THE KANGLINGS" in the ROM Control app so this ROM may be an Official one. I'm not sure
If you get ERROR 7 when installing this ROM here is the fix.
Big thanks to STELIX and AOKP team.
Click to expand...
Click to collapse
I've been using this roms before you made this post because I am the first to test this roms from developer.
Sent from my ASUS_Z00RD using Tapatalk
Adhe_88 said:
I've been using this roms before you made this post because I am the first to test this roms from developer.
Sent from my ASUS_Z00RD using Tapatalk
Click to expand...
Click to collapse
Awesome.
I hope there is no problem if I made this thread and why there is not thread for this ROM? I know this is still buggy like the others ROM but we could help. Also it seems that there is the same problem on every ROM for this model based on CM13 so the problem could be the CM13 ROM? Just a thought.
vraciu' said:
Awesome.
I hope there is no problem if I made this thread and why there is not thread for this ROM? I know this is still buggy like the others ROM but we could help. Also it seems that there is the same problem on every ROM for this model based on CM13 so the problem could be the CM13 ROM? Just a thought.
Click to expand...
Click to collapse
I've hangouts to developers. Because developers do not have to make a thread on xda. This Roms smooth n no problem, but a bug in the security setting (fc). I thank you've made this thread ,dude
Sent from my ASUS_Z00RD using Tapatalk
Adhe_88 said:
I've hangouts to developers. Because developers do not have to make a thread on xda. This Roms smooth n no problem, but a bug in the security setting (fc). I thank you've made this thread ,dude
Sent from my ASUS_Z00RD using Tapatalk
Click to expand...
Click to collapse
Thanks! Also I think you are talking about the phone reboot bug that happens when you change the pattern or when you uninstall the app what can be fixed if you delete some files from system/
I made an update to the first post about what files need to be deleted
This based on source code from cm rom, right ?
vraciu' said:
Thanks! Also I think you are talking about the phone reboot bug that happens when you change the pattern or when you uninstall the app what can be fixed if you delete some files from system/
I made an update to the first post about what files need to be deleted
Click to expand...
Click to collapse
okay thanks dude it's problem solved
Sent from my ASUS_Z00RD using Tapatalk
hiimpig1 said:
This based on source code from cm rom, right ?
Click to expand...
Click to collapse
Yes
Here's patched updater-script for Z00ED device
Which version refers codename Z00ED/Z00RD??
They refer to ZenFone 2 Laser ZE500KL and ZenFone 2 Laser ZE500KG (codename Z00E) ?!
Thank you very much for the support
Is this smoother than CM13?
Does the bugs on CM13 fixed?(Sorry for my bad English)
pickandrew said:
which version refers codename z00ed/z00rd??
They refer to zenfone 2 laser ze500kl and zenfone 2 laser ze500kg (codename z00e) ?!
Thank you very much for the support
Click to expand...
Click to collapse
z00ed→ze500kl
z00rd→ze500kg
After installing rom phone wont trn on!
So i have the z00ed version Ze500kl , I installed through teamwin twrp making wipe data and flashing the zip changing the script updater for my version.After installing the phone wont turn on it is blocked to asus logo.Can anyone help me
henriune said:
So i have the z00ed version Ze500kl , I installed through teamwin twrp making wipe data and flashing the zip changing the script updater for my version. After installing the phone wont turn on it is blocked to asus logo.Can anyone help me
Click to expand...
Click to collapse
You don't need to flash the updater-script.rar. You use that if you get the ERROR 7 and you don't flash it you just unzip it and you should get a file called updater-script. After this you unzip the ROM zip file, and you replace the updater-script in META-INF/com/google/android directory and after you are done you rezip the ROM folder you uziped and flash the ROM.
Try to flash the ROM again (not the updater-script.rar) and see if is working and if you get the ERROR 7 then do what I said before.
Sorry for my bad writing
vraciu' said:
You don't need to flash the updater-script.rar. You use that if you get the ERROR 7 and you don't flash it you just unzip it and you should get a file called updater-script. After this you unzip the ROM zip file, and you replace the updater-script in META-INF/com/google/android directory and after you are done you rezip the ROM folder you uziped and flash the ROM.
Try to flash the ROM again (not the updater-script.rar) and see if is working and if you get the ERROR 7 then do what I said before.
Sorry for my bad writing
Click to expand...
Click to collapse
I will try and reply the results
Hi,
I'm trying to flash a ZE500KL.
I always get the error 7 ...
I tried with the patched updater-script inside the zip.
I tried the delete the first line of this script too.
The error is still present
An idea ?
Orange74 said:
Hi,
I'm trying to flash a ZE500KL.
I always get the error 7 ...
I tried with the patched updater-script inside the zip.
I tried the delete the first line of this script too.
The error is still present
An idea ?
Click to expand...
Click to collapse
I have no idea. Check your zip file again maybe you didn't apply the modifications.
Also check the link bellow and install that ROM because is more stable than this one
http://forum.xda-developers.com/zenfone-2-laser/development/rom-cyanogenmod-13-0-t3520986
Ok, I will test with this other rom.
Thank you !
Adhe_88 said:
I've been using this roms before you made this post because I am the first to test this roms from developer.
Sent from my ASUS_Z00RD using Tapatalk
Click to expand...
Click to collapse
Hi again. Can you talk to STELIX and ask him if he can update the ROM using the CM14 from here? This is a better version with all bugs from the old CM14 fixed. I plan to delete this thread and let him post his updated ROM in "Android Development" section.
Send me a reply I soon as the new thread is created so I can delete this ASAP.
Cheers!

Categories

Resources