[APP] Droid 3 Camera App - Motorola Photon 4G

So, here's my second contribution to the Photon 4G community in less than 24 hours. Took some time, some work and a lot of learning but I finally got it down... The camera app from the Droid 3. It looks a lot better than our current app and adds the Panorama picture option (which I'm working on; doesn't work as of yet).
IF ANYTHING HAPPENS TO YOUR PHONE, I AM NOT AT FAULT!
Prerequisites:
You need to be rooted
Have a general idea about ADB
Computer running Windows
Download Modded BlurCamera.apk from here:
http://www.multiupload.com/X7JFD9TAVR
Anything in BOLD tells you what you will be doing
Anything in RED needs to be typed in.
1. Visit this link and follow the directions to Deodex your system:
http://www.droidxforums.com/forum/droid-x-themes/4620-how-manually-deodex-your-phone.html
2. Place BlurCamera.apk in your Android SDK Platform-Tools Folder (for example; I extracted the sdk to c:\android so my platform-tools folder is in the directory c:\android\platform-tools)
3. Adb push BlurCamera.apk to your sd card
adb push BlurCamera.apk /sdcard/
4. Open a shell as root
adb shell
su
You should now see a # instead of an $
5. Mount /system
/bin/mount -o remount,rw /system
6. Copy BlurCamera.apk to /system/app
cp /sdcard/BlurCamera.apk /system/app
7. Set permissions
Go into Root Explorer and set permissions to rw-r--r--
7. Reboot phone
reboot
And viola! It works!
Please post your results!
Thank you to @PAulyhoffman for his assistance and patience to teach me and thoroughly explain what was going on!
Donations are welcome for a college student starting out in developing!
Check out my other post to find out how to get google talk with video and voice chat working here:
http://forum.xda-developers.com/showthread.php?t=1200041

Excellent, I hope you get it!
Good Luck!!

+1
Sent from my MB855 using XDA App

Making some headway with the port. Just thought I'd update everyone!

Can't wait! Thanks for your work!
Sent from my MB855 using XDA App

radrian92 said:
Can't wait! Thanks for your work!
Sent from my MB855 using XDA App
Click to expand...
Click to collapse
It works... Just got it done trying to get a write-up before I sleep will simplify the write-up tomorrow. I promise. Donations are welcome for a college student learning all the ropes as he goes along!
Check out my post in the Themes and Apps section to get Google Video and Voice chat working with Google Talk!

ballerx43 said:
It looks a lot better than our current app and adds the Panorama picture option (which I'm working on; doesn't work as of yet).
Click to expand...
Click to collapse
FYI - we already have a panorama option. It isn't under the camera settings as you would think, but if you press menu, and select picture modes, you have a panorama option. It works well and stitches the photos together itself.

Hi there. Got myself a rooted photon and followed your directions and no luck. I might try again later but I didnt happen to backup my stock camera app. Could you by chance upload that or send to me? Thanks a lot.
Sent from my MB855 using XDA App

How is the picture quality with the app?

Will this camera .apk work on the Atrix too?

What's the difference in the camera? How about some screenshots?

{
"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"
}
screenshot. it's cleaner, nicer to use.
Sent from my MB855 using XDA App

I'll sum this up very quickly.
1. adb push BlurCamera.apk /system/app
2. reboot
Done.

Korey_Nicholson said:
I'll sum this up very quickly.
1. adb push BlurCamera.apk /system/app
2. reboot
Done.
Click to expand...
Click to collapse
Doesn't work this easily. Follow my directions step by step so you wont have any problems.
Sent from my MB855 using XDA App

Does the new camera give us 1080 recording and better pic quality?
Sent from my MB855 using Tapatalk

I deodex the phone and followed your instructions and rebooted and then when the phone came back up I was missing the camera application. I browsed to the /system/app directory and BlurCamera.apk is present and has the proper permissions. When I click on BlurCamera.apk it prompts me to install it but that just fails.
Any Suggestions on how to bring back the camera?

Thexfactor2011 said:
I deodex the phone and followed your instructions and rebooted and then when the phone came back up I was missing the camera application. I browsed to the /system/app directory and BlurCamera.apk is present and has the proper permissions. When I click on BlurCamera.apk it prompts me to install it but that just fails.
Any Suggestions on how to bring back the camera?
Click to expand...
Click to collapse
Just push the your original BlurCamera.apk file to /system/app/ set permissions and reboot. If you need it, pm me. If you have root explorer it makes it easier.

So I was able to bring the camera back by copying the original camera apk back to the system/app directory and setting the permissions with root explorer.
Sent from my MB855 using XDA App

how do you set permissions like rw--r--r? whats that mean can we break it down plz

rhyme187 said:
how do you set permissions like rw--r--r? whats that mean can we break it down plz
Click to expand...
Click to collapse
On the left side under read check all 3, in the middle under wright, check just the top. Make sure nothing else is checked.

Related

[How To] Add percentage to the battery icon

Prerequisites:
1. You need an unlocked boot loader.
2. You need root.
3. You need a PC with adb that can see your phone
4. Your phone needs to have USB debug enabled
All of these are well documented here in the forum.
On the PC grab the two apk files that the UOT kitched needs:
Code:
adb pull /system/framework/framework-res.apk
adb pull /system/app/SystemUI.apk
Now go to the UOT kitchen and choose your battery style from the battery tab.
Next click on the "File Upload" tab and upload your two files.
Then submit your work to the kitchen and wait.
When the kitchen is done processing, you have a download called UOT-*.zip. download that. And extract it somewhere on your PC. Now you need to push the files to your phone.
Code:
adb push SystemUI.apk /data/local/SystemUI.apk
adb push framework-res.apk /data/local/framework-res.apk
Next you need to adb shell to the phone to remount the system partition as read-write and copy the files to their correct location. From the PC run "adb shell" Then, on the phone:
Code:
su
mount -o remount,rw /dev/block/mmcblk0p29 /system
cp /data/local/SystemUI.apk /system/app/SystemUI.apk
cp /data/local/framework-res.apk /system/framework/framework-res.apk
cd /data/dalvik-cache
rm *
Then reboot the phone. When it comes back up you should have your customized battery.
NOTE: This is all from memory so there may be some minor inconsistencies but the general concept is sound. The main thing you MUST do is unlock the bootloader and you MUST have root (temp-root should be fine)
NOTE 2: There are a lot more things that you can customize using the UOT Kitchen. I've only changed the battery but you should be able to change icons, taskbar, lockscreen and more. So, if you are comfortable doing so, have at it.
And one final note. This is the brute-force method. Once a CWM recovery is created for the Amaze then most (all?) of this is unnecessary and you can just flash the UOT zip file from recovery.
-xdadevelopers-user
after i do the adb pull, where can i find the files it pulled????
Should be in the same adb folder
Sent from my HTC_Amaze_4G using XDA App
what exactly are the inconsistencies? cause i cant get it to stick although i follow your instructions to a "t"
Enzopreme said:
what exactly are the inconsistencies? cause i cant get it to stick although i follow your instructions to a "t"
Click to expand...
Click to collapse
Is your bootloader unlocked?
I try doing this framework but it work's it force close's alot i restored firmware then i tryed it went good then i restarted my phone & now i'm on a black screen the button's show up but no display , what the hell ?
Revolution said:
I try doing this framework but it work's it force close's alot i restored firmware then i tryed it went good then i restarted my phone & now i'm on a black screen the button's show up but no display , what the hell ?
Click to expand...
Click to collapse
bricked again huh?? you building a skyscraper with all those bricks??
Here's a thought-let's all be patient and take one step at a time.
We need recovery before we start buggering around.
Sent from my HTC_Amaze_4G using xda premium
TheSneakerWhore said:
Here's a thought-let's all be patient and take one step at a time.
We need recovery before we start buggering around.
Sent from my HTC_Amaze_4G using xda premium
Click to expand...
Click to collapse
I agree 100% with this.
We need to be able to do backups with Clockwork as well as use other scripts such as fix_permissions, clear dalvik-cache, etc to prevent bricks, FC errors, etc.
Let's work on getting a recovery first.
I fixed it last night
Sent from my HTC Ruby using XDA App
Here you go guys.. If you have CWM Recovery installed, just install my zip.
This.is what I've been looking for. Thx man..
Sent from my phone.
by any chance, do you have a screenshot for this battery percentage update?
what rom does this work on? quiksense? bliss sense?
-FuRBz- said:
what rom does this work on? quiksense? bliss sense?
Click to expand...
Click to collapse
It's only been tested on the 1.36.531.5 stock ROM(My Phone) but I imagine it will work on most all Sense 3.0 ROMS.
Screenshots of an identical mod I released can be found in my other thread here:
http://forum.xda-developers.com/showpost.php?p=11848512&postcount=1
{
"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"
}
Working on enegrys rom w/o issues.
Sent from my phone.
Wonder if it will work on bliss sense....?
Sent from my HTC Amaze 4G using xda premium
I flashed the stock kernel so that wifi could work on Android revolution rom. Wifi works now, but I'm unable to sync my phone with HTC sync, so that I can use adb. Any suggestions to what I can do to set up adb again? (I'm using a windows 7 laptop btw)
dharvey4651 said:
It's only been tested on the 1.36.531.5 stock ROM(My Phone) but I imagine it will work on most all Sense 3.0 ROMS.
Screenshots of an identical mod I released can be found in my other thread here:
http://forum.xda-developers.com/showpost.php?p=11848512&postcount=1
Click to expand...
Click to collapse
holy thread revival...anyone test this out on 1.43 stock?
mrmako777 said:
holy thread revival...anyone test this out on 1.43 stock?
Click to expand...
Click to collapse
you can take Stock statusbar with percentage battery from V2T section in this post, extract framework-res.apk from it and replace battery graphics in it for any you like. You can use a Graphics replace from the same post for that.

[MOD] 4 in 1 Reboot Menu with Extended Power Menu [12/31/11]

4 in 1 Reboot Menu with Extended Power Menu Options​
First off, a HUGE thanks goes out to chingy51o for always being a help on whatever it is I may need.​
Also, thanks to -sqn and chingy51o for the source in which I ported this from. As well as Nilsp, for taking the time to test with me.​
Instructions:
1. This file can either be installed via adb or compiled with your ROM.​
2. If you are a developer, I REQUIRE that thanks be given where its due. ​
3. You are using this file at your own risk. No-one else can be held responsible other than yourself.​
This mod is for 1.02.605.6 deodexed and rooted ROM's only​
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
DOWNLOAD HERE​
FLASHABLE ZIP HERE​
Great mod, makes it even easier to flash all these fantastic roms coming our way!
So is this something anyone can apply to any ROM they're currently running just by pushing it via adb ? If so, where do we push it to?
will work on any 1.02.605.6 rom that is deodexed and rooted
So I dig through Root Explorer a bit and found android.policy.jar in /system/framework, I assume we just push it to there then do a reboot and we should be good to go?
rboddy said:
So is this something anyone can apply to any ROM they're currently running just by pushing it via adb ? If so, where do we push it to?
Click to expand...
Click to collapse
Yes, push it to /system/framework/
The question of how to adb push files comes up alot.
A long time ago I made it easy for myself since I do it often by creating the 2 scripts in the attached. Extract them to a folder and all you have to do is drag and drop the files over the appropriate batch file.
Just boot into recovery, mount system, and do this.
For example this jar file would be dragged and dropped on the
2_FRAMEWORK-Push_(Drop Here).cmd
This assume adb is in your system path. If it is not you will find out quick.
Do we need to be in recovery to push via adb on the Rezound? I tried doing it and kept getting this:
c:\sdk\platform-tools>adb push c:/sdk/platform-tools/android.policy.jar /system/framework
failed to copy 'c:/sdk/platform-tools/android.policy.jar' to '/system/framework/android.policy.jar': Permission denied
Am I doing something wrong or is the Rezound just a bit funky? I made sure to set everything to R/W in Root Explorer, since I was originally getting a "Read-only file system" error.
rboddy said:
Do we need to be in recovery to push via adb on the Rezound? I tried doing it and kept getting this:
c:\sdk\platform-tools>adb push c:/sdk/platform-tools/android.policy.jar /system/framework
failed to copy 'c:/sdk/platform-tools/android.policy.jar' to '/system/framework/android.policy.jar': Permission denied
Am I doing something wrong or is the Rezound just a bit funky? I made sure to set everything to R/W in Root Explorer, since I was originally getting a "Read-only file system" error.
Click to expand...
Click to collapse
you must be rooted... make sure the jar is either in your adb folder or you have adb in your path
adb remount
adb push android.policy.jar system/framework
adb reboot
I am rooted, and was trying to do this via adbWireless, so maybe the connection was wonky even though adb said my phone was connected. So I dunno what's happening, so instead I just Dropbox'd it over and moved it via Root Explorer, phone is rebooting now so we'll see if that worked, I'm assuming it should. Maybe the adb remount command would have helped. I'll give it a whirl with that for ****s and grins.
EDIT: Moving inside Root Explorer worked, thanks for supplying this file man! Sooo much better than the damn battery pull lol
How does one make this flashable? I did move it via rootexplorer but it's not showing the extra settings after boot.
Sent from my ADR6425LVW using XDA App
make sure adb is in your enviromental path....
then open cmd
type
adb remount
adb push android.policy.jar system/framework
adb reboot
Thanks bored! Great work! The entire community appreciates you sharing this! Its just in time for another build of CleanROM! Timing could not have been better.
Here is a flash-able zip version of the file. You can add it to OP if you want and can pull it from this post. Eitherway...
Thanks again for this!
-Scott
thanks.... added to op.... i was gonna make one but trying to focus on my rom instead... the 4 in 1 was a must though
That looks great! I always thought the quick settings menu had weird choices on stock.
Wondering if there's any reason you took out bluetooth though? I guess I don't use it that much but I turn it off whenever I leave my car at the shop cuz otherwise my phone calls/music go to the car if I'm hanging out and they have it turned on. lol.
lllboredlll said:
thanks.... added to op.... i was gonna make one but trying to focus on my rom instead... the 4 in 1 was a must though
Click to expand...
Click to collapse
I totally understand how that goes. Thats also a generic flashable that I use. You can add /app/ to it. I use it for testing changes....
So now we can just flash this through recovery?
Evo4gLI said:
So now we can just flash this through recovery?
Click to expand...
Click to collapse
the one scott attached yes
feralicious said:
That looks great! I always thought the quick settings menu had weird choices on stock.
Wondering if there's any reason you took out bluetooth though? I guess I don't use it that much but I turn it off whenever I leave my car at the shop cuz otherwise my phone calls/music go to the car if I'm hanging out and they have it turned on. lol.
Click to expand...
Click to collapse
it wasnt working properly... once i get my rom done i'll back up and try to lay it to rest
Thanks for the flashable zip!!! Worked nice & easy with CWM.
Sent from my ADR6425LVW using Tapatalk

Latest S-Voice APK (TESTED ON CM09 & S3 TW ROM)

I tried leaked S Voice APK and just like Samsung confirmed, it is only a test app and has many bugs. You can actually hear the difference since leaked test voice sound garbled. Latest one below is one that cam with S3 Rom leak and more up-to-date.
HOW DO YOU INSTALL?
1. Download ZIP on link below(Extract on your desktop). If you download to phone directly, you still need to extract to a normal folder.
2. Contained within is 2 files.(voicetalk.apk & libsvoxtts.so)
3. Place voicetalk.apk in system/app with "Root Explorer" or like(Use Mount R/W and set permissions by holding voicetalk.apk to see sub-menu). Make sure to make permissions as "rw-r--r--".
4. Now place libsvoxtts.so on /system/lib.
5. Reboot *****NO NEED TO CHANGE build.prop such as with others.
6. ENJOY, then ask funny questions to it.
__* IF YOU HEAR NO FEEDBACK, try turning media volume up by opening phone dialer or on youtube video, or a music song and such.
LNK: w w w .filedropper.com/svoiceextracted_1
***NOTE: I did limited testing, if you try on other roms and does not work, just delete both files.
***Warning, Try at own risk...Let me know if it works on other Roms not mentioned on Title...
elimedina2000 said:
I tried leaked S voice APK and just like Samsung confirmed, it is only a test app and has many bugs. You can actually hear the difference since leaked test voice sound garbled. Latest one below is one that cam with S3 Rom leak.
HOW DO YOU INSTALL?
1. Download ZIP on link below(Extract on your desktop). If you download to phone directly, you still need to extract to a normal folder.
2. Contained within is 2 files.(voicetalk.apk & libsvoxtts.so)
3. Place voicetalk.apk in system/app with "Root Explorer" or like(Use Mount R/W and set permissions by holding voicetalk.apk to see sub-menu). Make sure to make permissions as "rw-r--r--".
4. Now place libsvoxtts.so on /system/lib.
5. Reboot *****NO NEED TO CHANGE build.prop such as with others.
6. ENJOY, then ask funny questions to it.
Click to expand...
Click to collapse
Can you post the link you refer to in your post?
Check the last few lines. He has given the link.
Link don't show on xda app but hit menu then web view and then u will see the link
Sent from my SAMSUNG-SGH-I717 using xda premium
Should show now. OP doesn't have enough posts yet.
www.filedropper.com/svoiceextracted_1
Shay D. Life said:
Should show now. OP doesn't have enough posts yet.
www.filedropper.com/svoiceextracted_1
Click to expand...
Click to collapse
Give a working link
that one shows a file 0k in size
elimedina2000 said:
I tried leaked S Voice APK and just like Samsung confirmed, it is only a test app and has many bugs. You can actually hear the difference since leaked test voice sound garbled. Latest one below is one that cam with S3 Rom leak and more up-to-date.
HOW DO YOU INSTALL?
1. Download ZIP on link below(Extract on your desktop). If you download to phone directly, you still need to extract to a normal folder.
2. Contained within is 2 files.(voicetalk.apk & libsvoxtts.so)
3. Place voicetalk.apk in system/app with "Root Explorer" or like(Use Mount R/W and set permissions by holding voicetalk.apk to see sub-menu). Make sure to make permissions as "rw-r--r--".
4. Now place libsvoxtts.so on /system/lib.
5. Reboot *****NO NEED TO CHANGE build.prop such as with others.
6. ENJOY, then ask funny questions to it.
__* IF YOU HEAR NO FEEDBACK, try turning media volume up by opening phone dialer or on youtube video, or a music song and such.
LNK: w w w .filedropper.com/svoiceextracted_1
***NOTE: I did limited testing, if you try on other roms and does not work, just delete both files.
***Warning, Try at own risk...Let me know if it works on other Roms not mentioned on Title...
Click to expand...
Click to collapse
Can someone pls be more specific, how to set permissions? where to put these files and how? i mean does the lib mean the root folder of the phone memory and where is the system folder?
Works on my Note. Seems that italian translations are better on this one. Double press on home button still doesen't work.
aami.aami said:
Can someone pls be more specific, how to set permissions? where to put these files and how? i mean does the lib mean the root folder of the phone memory and where is the system folder?
Click to expand...
Click to collapse
How to set permissions - http://bit.ly/M1Ix61
System folders - http://bit.ly/M1ILdt
try it next time
permissions as "rw-r--r--
people i not understand
please help me???=)))
{
"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"
}
make sure just the ones ive circled in red are checked
jayRokk said:
Give a working link
that one shows a file 0k in size
Click to expand...
Click to collapse
Can someone please post a working link.
Sent from my GT-N7000 using xda premium
Luca
you can see that other apks in that folder have same permissions,like VpnDialogs.apk ?! rw-r--r-- (pic)
see premissions on them(like in pic) and set to voicetalk.apk
easy
chadrick.7 said:
Can someone please post a working link.
Sent from my GT-N7000 using xda premium
Click to expand...
Click to collapse
http://i.minus.com/1338392735/A3kxoqNhih4MW8G7g37DlQ/dCfP1am1zffk9/S%20VOice%20Extracted.zip
I just installed it and working ok on Galaxy SII Skyrocket with stock ICS UCLE2. Thank you
chadrick.7 said:
Can someone please post a working link.
Sent from my GT-N7000 using xda premium
Click to expand...
Click to collapse
Another one
http://bit.ly/M37Rc3
When I did this when it just leaked it installed itself on reboot. Do I need to install this one or am I doing something wrong?
wenclino said:
Luca
you can see that other apks in that folder have same permissions,like VpnDialogs.apk ?! rw-r--r-- (pic)
see premissions on them(like in pic) and set to voicetalk.apk
easy
Click to expand...
Click to collapse
thanks.... work fine
does anyone know how to change the location for s voice
got it to work on my epic 4gt, but it's pretty buggy and crappy. which means it should give siri a run for its money

[MOD]Camera.apk with Shutter Sound Toggle

this is my first apk that i made using apktool
here is a camera.apk that lets you toggle shutter sounds
credit to SteelH
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
download zip
extract camera.apk out of zip
copy to system/app folder
set permissions to rw - r - r
reboot
If u appreciate my work click thanks
i shall be adding this into my rom soon also
Thank you!
Thanks
Sent From My BadAzz LTE
Stock camera's odex'd.... Is this deodexed? Can we nuke the odex file, or leave it?
it is deodexed
okay Ive never edited a permission... How do I do that? Any videos on it? I know how to install a apk, just dont know the other steps. btw I have the pkmn rom, Im no programmer so i usually wait till mods are baked in, but i need this NOW
bridgep0rt said:
okay Ive never edited a permission... How do I do that? Any videos on it? I know how to install a apk, just dont know the other steps.
Click to expand...
Click to collapse
get and open es file manager
go to options
select Up to Root
then scroll down
select Root Explorer
then scroll down
and select Mount File System
exit the menu
find and new camera.apk and copy it
go to /sytem/app and paste the camera.apk and replace the existing one
when its finished copying press and hold camera.apk and go down to properties then u will see change permissions
nice. Thank you. Congratz on first apk. Thanks a lot for doing this. I see all these tut threads, but just get totally lost trying to make sense of the code. I couldn't have done it, so, thank you.
Sent from my EVO using xda premium
myndwire said:
Stock camera's odex'd.... Is this deodexed? Can we nuke the odex file, or leave it?
Click to expand...
Click to collapse
Would like to know how to put this in stock just rooted Rom. Odexed of course.. can we delete .odex file or do u have to make one for odex as well before it'll work?
Sent from my LTEVO via Tapatapa
I'm pretty sure you can just delete the odex file. Or for safetys sake, just rename it .odex.bak in case you need it back for some reason. I just did this with some other apks. I was curious, too, not used to dealing with odex. Dont like it.
Sent from my EVO using xda premium
drewski83 said:
Would like to know how to put this in stock just rooted Rom. Odexed of course.. can we delete .odex file or do u have to make one for odex as well before it'll work?
Sent from my LTEVO via Tapatapa
Click to expand...
Click to collapse
I have the stock rooted rom and just copied the new apk to /system/app using Root Explorer and changed permissions to rw-r--r--. Renamed the .apk and .odex to .old.
Reboot. Works perfectly. Thanks OP!
Sent from my iPad using Tapatalk HD
was able to unlock 2mp front cam as well today.
Leoisright said:
was able to unlock 2mp front cam as well today.
Click to expand...
Click to collapse
share!!!!
flex360 said:
share!!!!
Click to expand...
Click to collapse
I will, im just adding more options.
So far it's able to have Online video HD for 10 minute recording, also able to have 720p front cam video. Trying to get 1250 iso included and panorama and HDR. Those are being a pain in the butt.
edit: I am abandoning this mod. After taking some pics and checking the resolution on the computer, it may have unlocked the setting but not the resolution in the cam.
Do you think there is a possibility of any of those settings working once the kernel goes open source?
ThrowingKs said:
Do you think there is a possibility of any of those settings working once the kernel goes open source?
Click to expand...
Click to collapse
personally, i don't think it's kernel related. The 2mp is in resolution. we may be able to change that within the smali but no promises. I think the other may be possible by porting another camera app over.
If anyone wants a panoramic camera this works fine.
View attachment com.sonyericsson.panorama.one.apk
flex360 said:
this is my first apk that i made using apktool
here is a camera.apk that lets you toggle shutter sounds
credit to SteelH
download zip
extract camera.apk out of zip
copy to system/app folder
set permissions to rw - r - r
reboot
If u appreciate my work click thanks
i shall be adding this into my rom soon also
Click to expand...
Click to collapse
can you help me ? Camera.apk Camera.odex deodex fail.
PHP:
Disassembling ./system/app/Camera.odex ...
java -Xmx512m -jar baksmali.jar -a 15 -d system/framework -x ./system/app/Camera.odex
Error while disassembling method Lcom/scalado/camera/hdr/HDR$JpegCallbackHandler$1;->run()V. Continuing.
org.jf.dexlib.Code.Analysis.ValidationException: class Lcom/scalado/caps/hdrimage/HDRImage$Options; cannot be resolved.
at org.jf.dexlib.Code.Analysis.ClassPath$UnresolvedClassDef.unresolvedValidationException(ClassPath.java:535)
at org.jf.dexlib.Code.Analysis.ClassPath$UnresolvedClassDef.getClassDepth(ClassPath.java:543)
at org.jf.dexlib.Code.Analysis.ClassPath.getCommonSuperclass(ClassPath.java:384)
at org.jf.dexlib.Code.Analysis.RegisterType.merge(RegisterType.java:275)
at org.jf.dexlib.Code.Analysis.AnalyzedInstruction.mergeRegister(AnalyzedInstruction.java:185)
at org.jf.dexlib.Code.Analysis.MethodAnalyzer.propagateRegisterToSuccessors(MethodAnalyzer.java:451)
at org.jf.dexlib.Code.Analysis.MethodAnalyzer.setPostRegisterTypeAndPropagateChanges(MethodAnalyzer.java:416)
at org.jf.dexlib.Code.Analysis.MethodAnalyzer.setDestinationRegisterTypeAndPropagateChanges(MethodAnalyzer.java:403)
at org.jf.dexlib.Code.Analysis.MethodAnalyzer.analyzeMoveResult(MethodAnalyzer.java:1714)
at org.jf.dexlib.Code.Analysis.MethodAnalyzer.analyzeInstruction(MethodAnalyzer.java:654)
at org.jf.dexlib.Code.Analysis.MethodAnalyzer.analyze(MethodAnalyzer.java:213)
at org.jf.baksmali.Adaptors.MethodDefinition.addAnalyzedInstructionMethodItems(MethodDefinition.java:379)
at org.jf.baksmali.Adaptors.MethodDefinition.getMethodItems(MethodDefinition.java:301)
at org.jf.baksmali.Adaptors.MethodDefinition.writeTo(MethodDefinition.java:132)
at org.jf.baksmali.Adaptors.ClassDefinition.writeMethods(ClassDefinition.java:338)
at org.jf.baksmali.Adaptors.ClassDefinition.writeVirtualMethods(ClassDefinition.java:323)
at org.jf.baksmali.Adaptors.ClassDefinition.writeTo(ClassDefinition.java:152)
at org.jf.baksmali.baksmali.disassembleDexFile(baksmali.java:205)
at org.jf.baksmali.main.main(main.java:293)
opcode: move-result-object
CodeAddress: 395
Method: Lcom/scalado/camera/hdr/HDR$JpegCallbackHandler$1;->run()V
http://forum.xda-developers.com/showthread.php?p=27561301#post27561301
I can confirm that this works with the 1.22 OTA. I renamed Camera.apk and Camera.odex, then copied the .apk file from this zip file into /system/app using ES File Manager. At this point Camera disappeared from my Applications. Then give it a reboot and voila, camera is back! Shutter sound is now in the menus.
Leoisright said:
If anyone wants a panoramic camera this works fine.
View attachment 1137072
Click to expand...
Click to collapse
Quick question, why use that camera when the stock HTC camera has a panoramic setting?
Sent from my EVO using Tapatalk 2

[PORT/MOD] SmartActions app Port 12/13/12 v0.2.4

The very first Smart Actions Port v0.1.2(12/13/12)
Ported from Droid Razr MAXX VRZ_XT912_6.7.2-180_DHD-16_M4-31_1FF
Requires ICS
Has not been tested on JB. (Should work)
All rooted devices should work.
Miui doesn't seem to work, you can try it
{
"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"
}
Install:
1. Download Here
2. Do a nandroid backup
3. Extract and run bat file in windows
4. Enjoy
Alternate method:
1. Open command prompt
2. Do a Nandroid backup
3. Extract zip
4. In Command Prompt explore to adb location and type:
Code:
adb remount
5. Then:
Code:
adb push [drag and drop system folder from extraction location] /system
ex.: adb push C:\Users\Joe-Acer\Desktop\SmartActions\bin\system /system
6. Reboot
Code:
adb reboot
Do not update from market, WILL BREAK IT
Known Bugs, Not working:
1. Location conditions
Code:
Change log:
v0.1.0:
Initial Release
v0.2.3
Released to Public
v0.2.4:
Fixed wallpaper (Only limited to RAZR wallpapers)
Added:
homescreen
LiveWallpapers.apk
MagicSmokeWallpapers.apk
NetworkLocation.apk
SocialShare.apk (not tested, more like public test)
How to use SmartActions:
PM me questions
If you want to integrate this into your rom be sure to PM and credit me.
Hmm what's this?
(First...)
from my E3D
tatnai said:
Hmm what's this?
(First...)
from my E3D
Click to expand...
Click to collapse
Heard of tasker, like that but more reliable, in my opinion anyway
How do I install this from my phone...
donbudafuko said:
How do I install this from my phone...
Click to expand...
Click to collapse
copy the files from bin/system to /system... need a root file explorer to copy the files... then reboot
Would it be possible to get some screenies?
Sent from my PG86100 using Tapatalk 2
Many people don't understand this.
Would be great if you do a "How To" w/Review video.
That would be great.
Looks very interesting thanks for this
Sent from my PG86100 using Tapatalk 2
joekp said:
copy the files from bin/system to /system... need a root file explorer to copy the files... then reboot
Click to expand...
Click to collapse
What root explorer do you use? I tried Astro and it did not let me write the files to the directories, gave me errors every time, and when I tried individually it said could not write also.... Going to look for another root explorer
Redneckhightech said:
What root explorer do you use? I tried Astro and it did not let me write the files to the directories, gave me errors every time, and when I tried individually it said could not write also.... Going to look for another root explorer
Click to expand...
Click to collapse
Esfilexplorer and go to settings and check all three checkmarks under root
joekp said:
Esfilexplorer and go to settings and check all three checkmarks under root
Click to expand...
Click to collapse
You may need to make sure that the permissions are set right. ES will change them. Just long press the files, go to properties, then change the permissions.
So we copy each of the files in the /system directory of the smartactions folders into their respective folders in the phones /system?
for instance there is a folder for the app, all of those files go into the /system/app folder of our phones?? etc...
Roxxas049 said:
So we copy each of the files in the /system directory of the smartactions folders into their respective folders in the phones /system?
for instance there is a folder for the app, all of those files go into the /system/app folder of our phones?? etc...
Click to expand...
Click to collapse
Yes
As soon as I set up a rule it force closes, and then continues to do so each time. I'm using a standard PA JB rom.
Roxxas049 said:
As soon as I set up a rule it force closes, and then continues to do so each time. I'm using a standard PA JB rom.
Click to expand...
Click to collapse
OP clearly states "requires ICS".
ZWYATT said:
OP clearly states "requires ICS".
Click to expand...
Click to collapse
To be fair, it also says "Has not been tested on JB. (Should work)".
ramjet73
ZWYATT said:
OP clearly states "requires ICS".
Click to expand...
Click to collapse
Check the play store for update
Roxxas049 said:
As soon as I set up a rule it force closes, and then continues to do so each time. I'm using a standard PA JB rom.
Click to expand...
Click to collapse
Check the play store for update might fix it
Update worked for me... No fc so far
there is another app in the play store that basically operates the same way. https://play.google.com/store/apps/details?id=AutomateIt.mainPackage&feature=search_result#?t=W251bGwsMSwxLDEsIkF1dG9tYXRlSXQubWFpblBhY2thZ2UiXQ.. its called automateit. Good job with the port.

Categories

Resources