[RESOLVED] Protected Apps in recent Cyanogenmod Nightlies - Halp! - EVO 4G Q&A, Help & Troubleshooting

My cell phone OCD is being aggravated due to my broken market. I suspect there may be a fix out there, but the Cyanogen threads are all MASSIVE. I've done my best to sort through them and every 'fix' so far hasn't worked on newer builds.
Back on my Hero, whenever I had this problem I would just edit the build.prop and wipe cache. The way I understand it is that we can't fix it that way because up until very recently we haven't had an official Froyo build.
I downloaded the OTA zip hosted on HTC's website hoping I would be able to pull a build.prop from it, but it seemed to only contain a patch file for the build.prop.
If someone running the official OTA could upload a pull of their build.prop, I think we might have a fix... ...or am I totally off base?
I figure it might be a good idea to include apps I'm missing in market just to be clear. Paid version of Cachemate, Fandango, aSpiritbomb Live Wallpaper just to name a few.
I'm running the 8/03 build FYI

Nightly Market
http://forum.xda-developers.com/showthread.php?t=729367&highlight=nightly
Pretty sure it's in the first post.
EDIT: Actually, maybe not. I haven't run a nightly in a day or two, and I could be getting it confused with RC-1...

Bang3r said:
http://forum.xda-developers.com/showthread.php?t=729367&highlight=nightly
Pretty sure it's in the first post.
EDIT: Actually, maybe not. I haven't run a nightly in a day or two, and I could be getting it confused with RC-1...
Click to expand...
Click to collapse
I've tried that market fix at least 3 times on 8/02. I'll try it once on 8/03.
EDIT: Still no worky. Maybe I should just flash back to RC1.

I think I may have fixed it if anyone cares. Clear market data, cache. Push the attached file to /system/build.prop and reboot.
Paid cachemate is showing for me now.
Props to netarchy for upping the 2.2 build this fingerprint was pulled from.

illogic6 said:
I think I may have fixed it if anyone cares. Clear market data, cache. Push the attached file to /system/build.prop and reboot.
Paid cachemate is showing for me now.
Props to netarchy for upping the 2.2 build this fingerprint was pulled from.
Click to expand...
Click to collapse
this does work folks!!!!
thanks for working this up

illogic6 said:
I think I may have fixed it if anyone cares. Clear market data, cache. Push the attached file to /system/build.prop and reboot.
Paid cachemate is showing for me now.
Props to netarchy for upping the 2.2 build this fingerprint was pulled from.
Click to expand...
Click to collapse
can you explain how to "push" a file in a shell/command window/terminal emulator?

ryan2202 said:
can you explain how to "push" a file in a shell/command window/terminal emulator?
Click to expand...
Click to collapse
The easiest way is through adb on your computer.
Code:
adb remount
adb c:\%pathtofile%\build.txt /system/build.prop
adb reboot
You could also delete your original build.prop with a root file manager, rename the attached file build.prop and move it to /system/. I wouldn't bother with the terminal on the phone.

Thanks for this!!
terminal app works fine too.
Code:
SU
mount -o remount,rw /dev/block/mtdblock4 /system
rm /system/build.prop
cat /sdcard/build.txt > /system/build.prop

Sorry for the noob question, but what exactly are "protected apps" ?
I'm on the latest nightly and my market "seems" to be fine. I'm just wondering if i'm missing anything in the market.

LP_sk8er said:
Sorry for the noob question, but what exactly are "protected apps" ?
I'm on the latest nightly and my market "seems" to be fine. I'm just wondering if i'm missing anything in the market.
Click to expand...
Click to collapse
Three are listed in the first post.
Sent from my PC36100 using XDA App

LP_sk8er said:
Sorry for the noob question, but what exactly are "protected apps" ?
I'm on the latest nightly and my market "seems" to be fine. I'm just wondering if i'm missing anything in the market.
Click to expand...
Click to collapse
Documents to Go full version key diddnt show up before the fix.

Is calorie counter by fatsecret one of these? I went back to fresh from cm6 recently because I couldn't get that app to show up in the market.
Sent from my PC36100 using XDA App

sdc177 said:
Is calorie counter by fatsecret one of these? I went back to fresh from cm6 recently because I couldn't get that app to show up in the market.
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Yup, I believe so.

illogic6 said:
I think I may have fixed it if anyone cares. Clear market data, cache. Push the attached file to /system/build.prop and reboot.
Paid cachemate is showing for me now.
Props to netarchy for upping the 2.2 build this fingerprint was pulled from.
Click to expand...
Click to collapse
What is the actual command to push this file to build.prop?
Do I have to rename the fle build to build.prop?
Is there a directory the build file has to be in on my computer to push it to the phone?

violent23 said:
What is the actual command to push this file to build.prop?
Do I have to rename the fle build to build.prop?
Is there a directory the build file has to be in on my computer to push it to the phone?
Click to expand...
Click to collapse
Question 1:
Code:
adb remount
adb push c:\%pathtofile%\build.txt /system/build.prop
adb reboot
Just like above.
Question 2:
No. If you put in the commands like I've listed above, it will push to build.prop even though on your desktop it shows as a txt file.
Question 3:
No. The build.txt file can be in any directory. You will just need to specify the path.
I would recommend you push this build.txt if you are running 8/04 nightly. This is updated.

Related

Removing Apps and Audio files

Hello devs.. i am trying to use adb while im in the clockwork recovery screen to remove some apps and some unwanted audio files. Everything is ok as far as being rooted and getting a number sign and the adb commands. The issue im having is that i cannot cd to the app folder. I can cd to the system folder and sdcard folders with no problem. But when i cd into the system, and then i use the list command "ls" to show me what im working wit it says app. But when i try " cd /system/app or cd /app " it says directory doesnot exist. Is there something im doing wrong here? I have installed, removed, pushed and pulled many apps using abd perfectly and i am not a noob.. but it seems like its a whole new ball game when it comes to the slide.. the super user tasks managers no longer work, a dev named roman told me they no longer work and i would have to use adb in clockwork recovery mode to execute any changes to the phones files. But im stuck at this point. Any suggestions? Also i have tried to remove the files directly with a command like " adb rm /system/app/Gallery3D.apk or rm /system/app/Gallery3D.apk" with no results. Is there a way using adb to delete the contents of an entire directory without deleting the directory itself? Thanks in advance devs
bbbblack said:
Hello devs.. i am trying to use adb while im in the clockwork recovery screen to remove some apps and some unwanted audio files. Everything is ok as far as being rooted and getting a number sign and the adb commands. The issue im having is that i cannot cd to the app folder. I can cd to the system folder and sdcard folders with no problem. But when i cd into the system, and then i use the list command "ls" to show me what im working wit it says app. But when i try " cd /system/app or cd /app " it says directory doesnot exist. Is there something im doing wrong here? I have installed, removed, pushed and pulled many apps using abd perfectly and i am not a noob.. but it seems like its a whole new ball game when it comes to the slide.. the super user tasks managers no longer work, a dev named roman told me they no longer work and i would have to use adb in clockwork recovery mode to execute any changes to the phones files. But im stuck at this point. Any suggestions? Also i have tried to remove the files directly with a command like " adb rm /system/app/Gallery3D.apk or rm /system/app/Gallery3D.apk" with no results. Is there a way using adb to delete the contents of an entire directory without deleting the directory itself? Thanks in advance devs
Click to expand...
Click to collapse
You probably forgot to mount /system. You can do so via the CWM Recovery partitions menu.
ohhhhhh...ok thanks alot.. i did miss that.
bbbblack said:
ohhhhhh...ok thanks alot.. i did miss that.
Click to expand...
Click to collapse
Better way of doing it is using 7zip and removing/addin files that way,than flashin that rom,its cleaner and faster.
lviv73 said:
Better way of doing it is using 7zip and removing/addin files that way,than flashin that rom,its cleaner and faster.
Click to expand...
Click to collapse
Not sure I agree, but to each their own.
This is kind of a cross post from the Apps forum, but I am getting no response there. CM6 uses a different music app than the stock HTC player, and the stock player works with the included headphones that have the control buttons. Which ROM can I steal the HTC player from and push back to my phone?
fermunky said:
This is kind of a cross post from the Apps forum, but I am getting no response there. CM6 uses a different music app than the stock HTC player, and the stock player works with the included headphones that have the control buttons. Which ROM can I steal the HTC player from and push back to my phone?
Click to expand...
Click to collapse
You could try to push the HTCMusic app from the OTA update. But I think it might be odexed so you might run into a problem. I haven't checked it out yet
Sent from my SuperFast Slide using XDA App
fermunky said:
This is kind of a cross post from the Apps forum, but I am getting no response there. CM6 uses a different music app than the stock HTC player, and the stock player works with the included headphones that have the control buttons. Which ROM can I steal the HTC player from and push back to my phone?
Click to expand...
Click to collapse
I doubt this will work with CM6 but it is worth a try. It says its for 2.1 and I havent tried it but I thought I would throw it out as a idea. http://forum.xda-developers.com/showthread.php?t=679707
lstevens86 said:
You could try to push the HTCMusic app from the OTA update. But I think it might be odexed so you might run into a problem. I haven't checked it out yet
Sent from my SuperFast Slide using XDA App
Click to expand...
Click to collapse
Yeah, I tried pushing the HtcMusic.apk/.odex files to the /system/app folder with no luck (I do not know what being odex'ed means to being able to do this). Any other thoughts?
HebrewToYou said:
You probably forgot to mount /system. You can do so via the CWM Recovery partitions menu.
Click to expand...
Click to collapse
Do you think it's best to do it from clockwork recovery? What I have been doing is just doing a delete from inside the rom with win rar before installing.
You can use Android Commander which also works for the slide. You just need to be in recovery with both your system and cache mounted so it will make changes otherwise it'll look like it did on the computer but actually when you restart the program you find it did nothing. lol Don't forget to open the program with Administrator Rights. I think the program makes things much easier.
http://forum.xda-developers.com/showthread.php?t=597098
thanks the commander worked perfectly! any reason why apps that i push dont show up in the phones app list when i boot up again?

[Q] Market still force-closing (CM 6.1.1+Pershoot)

Opening the Market installed from update.zip here on the foum, it just force-closes immediately.
Running CM 6.1.1 + Pershoot's 1.5ghz kernel.
Might it be Pershoot? Or the .zip? Is .apk better?
What file manager are you using?
Sent from my T-Mobile G2 using XDA App
dynamikd said:
What file manager are you using?
Sent from my T-Mobile G2 using XDA App
Click to expand...
Click to collapse
The one pre-installed with CM. Just "File Manager".
Halp!
This makes mt G2 almost unusable...
adrienspawn said:
The one pre-installed with CM. Just "File Manager".
Click to expand...
Click to collapse
Use Root Explorer. It has a button on top that all you have to do is press to change the folder you are in to Read/Write and when you done modifying it, press the button to change it back to Read/Only
dynamikd said:
Use Root Explorer. It has a button on top that all you have to do is press to change the folder you are in to Read/Write and when you done modifying it, press the button to change it back to Read/Only
Click to expand...
Click to collapse
It won't let me change the permissions on /system (rest works).
Probably because I don't have the latest due to not having the market lol...
Can someone upload a newer Root Explorer?
"SU File Manager and Terminal". Best file manager you can buy, and it allows /system and /data to mount as rw in file explorer mode.
Sent from a Western Union telegram.
From adb shell or a term session on the phone, makes no difference:
Code:
su
mount -o rw,remount /system
If you still need the latest one let me know and I'll upload it to dropbox.
adrienspawn said:
It won't let me change the permissions on /system (rest works).
Probably because I don't have the latest due to not having the market lol...
Can someone upload a newer Root Explorer?
Click to expand...
Click to collapse
Sent from my T-Mobile G2 using XDA App
Alright, I removed it, but update.zip for the Market, once installed, still force-closes...
Does someone have a DEFINITE link to a working Market for 6.1.1?
I know there are at least 5 uploaded on this forum, and I'll start to try each one one by one since I can delete them now.
OK it failed again, but I installed the modded Gapps (was hoping to avoid having to install all Gapps, they waste resources) and the Market works.
Now to remove all the other crap...
edit: nevermind lol.....
Spoke too soon. It was working fine for a few minutes, then started force-closing constantly. Won't start now.
Clear dalvik cache?
dadewy said:
Clear dalvik cache?
Click to expand...
Click to collapse
Yeah, I do that every time I do anything in CWM now just because everyone's been recommending it.
Were on the same boat but mine's working on Cyanogen 6.1.1+pershoot what I idid is clear market then reboot the zip file that I download change it top update.zip boot to recovery clear dalvik then update the file.. BAM working
Sent from my HTC Vision using XDA App

Adfree Gingerbread

COURTESY OF MODOCO
currently if you try adfree on gingerbread you get some java error to solve this do the following
1. uninstall Adfree
2. download this apk file
3
PHP:
adb remount
adb push AdFree.MCR.apk /system/app
Thanks, I have been trying to get adfree to work all night... Works perfect!
I'm on GingerVillian 1.4. Getting an "Application not installed" message.
Not to hijack but you could also download a hosts file (google one) and put it in /system/etc. This is what that program does for you.
Sent from my HTC Vision
any chance of a .zip? i dont know how to use adb
ADB Works/Copy+Paste, Normal Install Does NOT Work
I’m running GingerVillain 1.4 and it worked for me, but let me venture a guess here: you tried to put the apk into system/app via Root Explorer/ES File Manager/Whatever. Either that or you tried installing the apk as you would install any other apk. Am I right?
I did the same thing, and I ran into the same problem you did. I have no idea why, though I’m sure there is good reason. However, if you uninstall AdFree and then use ADB as directed above it will work just fine. You won’t have to install it or anything; it just magically appears in the application drawer as if you had never uninstalled it in the first place.
ADB works, but RootExplorer-style Copy/Paste does not.
Hope that helps,
-Newbie
I got a mT4G with gingy and adfree works fine. I think one of the updates they did, some ppl were having problems with
4gCM7
I followed the instructions on a G2 with Gingervillain 1.4 and it worked perfectly.
FYI: copying and pasting with Root Explorer doesn't work.
I was lazy, but ended up having to use the adb method.
xomikronx said:
FYI: copying and pasting with Root Explorer doesn't work.
I was lazy, but ended up having to use the adb method.
Click to expand...
Click to collapse
Hmmn...I was able to copy/paste it with ES File Explorer though I didn't uninstall the Market version first. Fixed the issue for me though, so it must have worked.
Worked without a problem, thanks
Sent from my HTC Vision using XDA App
JustAnotherNewbie said:
I’m running GingerVillain 1.4 and it worked for me, but let me venture a guess here: you tried to put the apk into system/app via Root Explorer/ES File Manager/Whatever. Either that or you tried installing the apk as you would install any other apk. Am I right?
I did the same thing, and I ran into the same problem you did. I have no idea why, though I’m sure there is good reason. However, if you uninstall AdFree and then use ADB as directed above it will work just fine. You won’t have to install it or anything; it just magically appears in the application drawer as if you had never uninstalled it in the first place.
ADB works, but RootExplorer-style Copy/Paste does not.
Hope that helps,
-Newbie
Click to expand...
Click to collapse
You nailed it! I used ADB and it's working now. Thanks!
You can put the apk in the root of your sd card and run these commands in terminal if you don't want to use adb:
Su
cd /sdcard
mount -o remount, rw /system
install AdFree.MCR.apk /system/app
You can also make a gscript script with those commands if you constantly flash the GB updates like me. =P
Yay! Thankyouthankyouthankyouthankyou.
So happy to have this back on gingerbread.
Thanks very much
Works perfectly thank you
Sent from my HTC Vision using XDA App
Thanks a lot! Been tryin' to fix this the whole day. God bless you
rUsTyRuSs said:
You can put the apk in the root of your sd card and run these commands in terminal if you don't want to use adb:
Su
cd /sdcard
mount -o remount, rw /system
install AdFree.MCR.apk /system/app
You can also make a gscript script with those commands if you constantly flash the GB updates like me. =P
Click to expand...
Click to collapse
thank you!
Adb pushing or installing from terminal did not work for me. As in, after uninstall of original and following steps, AdFree did not show up in the app list
However,
What I did was this...
su
mount -o remount,rw /system
rm /system/app/AdFree.MCR.apk
install /sdcard/download/AdFree.MCR.apk /system/app/
reboot
Then I installed from market
Not only did it show back up in the app list but no errors were given when updating the hosts file...
Hope this helps!
Sent from me HTC Vision using CM7 Nightly
Final Fix!
AdFree has been upgraded. Uninstall your previous version of AdFree, go to Market and download the new version and it will work just fine. (Supposedly trying to update an old AdFree to the new version won't fix it.)
Troggie81 said:
You nailed it! I used ADB and it's working now. Thanks!
Click to expand...
Click to collapse
^.^ Anytime, I'm happy to help.
rUsTyRuSs said:
You can put the apk in the root of your sd card and run these commands in terminal if you don't want to use adb:
Su
cd /sdcard
mount -o remount, rw /system
install AdFree.MCR.apk /system/app
You can also make a gscript script with those commands if you constantly flash the GB updates like me. =P
Click to expand...
Click to collapse
I think that will be my job for today, looking into gscripts.
Just out of curiosity though, why is it that using RootExplorer/etc to move the .apk to /system/apps work?
I figure I could have installed it after the movie to make up for the install command. (And ES File Manager generally has no problem moving things to root areas.)
Always good to know -why- something is the way it is. I have a tendency to ignore reasons without explanations, and that has backfired a few times.
Or I can dig around XDA to find the answer; there be knowledge in these here forums.
Either way, thanks!
-Newbie

Flash player black screen

Hi there,
I am having some issues with playing flash in my browser. Most flash videos I attempt to play, there is just a black screen with the sound.
Funny thing is, one site I frequent, tsn.ca, when I play the flash video, the commercial works without issue but the main flash video there is just audio and a black screen.
It's been an issue for at least 2 weeks. Not sure when it first started. I update to Cyanogens Nightlys every day.
I have a Nightly backup from March 29th and the video works flawlessly on that rom, but when I download the newest nightly I'm back to the same issue.
Currently running Flash 10.3
ClockworkMod 3.0.2.6
CyanogenMod-7-05252011
Radio - 26.08.04.07_M3
Any help would be greatly appreciated.
i had the same problem but it's been remedied with this http://forum.xda-developers.com/showpost.php?p=13956612&postcount=4461
uninstall flash with ti backup (uninstall app & wipe data) then install. it should work.
Sent from my DHD
Thanks. I had tried uninstalling it through the market but that didn't work. I will give it a shot with TIbackup
Sent from my Desire HD using XDA App
Finally got around to trying the fix, still doesn't work. Commercials play without an issue, actual video is just black. So damn annoying. This doesn't appear to be a issue with most people so I have no idea what the heck the problem could be.
Sent from my Desire HD using XDA App
Thansk for the help but it did not work. Finally got it working following this directions from another website
To get Flash 10.3 working on the stock browser you need to do two things:
1) force stop the browser process
2) Remove all permissions for /data/data/com.android.browser/app_plugins/com.adobe.flashplayer/.macromedia/Flash_Player/config.data
*Fix also works for Dolphin. Just change com.android.browser to mobi.mgeek.TunnyBrowser
Changing the permissions restricts the flash plugin or the stock browser or the webkit or I dunno what from reading config.data. This file is screwing with video playback of anything over 240p.
What's weird is that the config.data generated for 10.2 and 10.3 appears to be identical, except for the ProductVer string. Since the file contains settings for h264 high, baseline and main profiles, there's probably some change in 10.3 to the way it uses this information.
Either way, this is a bandaid for those that don't wish to use Opera until the heart of the issue is found/addressed.
Click to expand...
Click to collapse
Instructions from here. http://forum.cyanogenmod.com/topic/25239-flash-player-update/
It appears there are many more people having the same issue.
AverageCanadian said:
Thansk for the help but it did not work. Finally got it working following this directions from another website
Instructions from here. http://forum.cyanogenmod.com/topic/25239-flash-player-update/
It appears there are many more people having the same issue.
Click to expand...
Click to collapse
Perfect, thanks much and works for me too.
For other's not too unix friendly.
start an adb shell, might have to adb remount too
su for superuser rights
cd to go to the affected directories
chmod 000 config.data to revoke rights to the file
Thanks dude! It also works to just delete the plugin folder and install flash again.
Thanks guys, but how do I delete the plugin folder, or remove permissions? I'm a total noob for rooting, please help!
pativets said:
Thanks guys, but how do I delete the plugin folder, or remove permissions? I'm a total noob for rooting, please help!
Click to expand...
Click to collapse
Use any file explorer that can access nand files e.g. root explorer, es file explorer. Just make sure that you have S-OFF and root your phone.
drpsyko said:
Use any file explorer that can access nand files e.g. root explorer, es file explorer. Just make sure that you have S-OFF and root your phone.
Click to expand...
Click to collapse
thanks, but the plugins folder apparently doesn't exist on my phone, the only folder within that directory is /lib. I think will try to install 10.2 on my phone and see if that fixes the problem. Perhaps 10.3 and 11 is not supported by the Infused v2 ROM.
pativets said:
thanks, but the plugins folder apparently doesn't exist on my phone, the only folder within that directory is /lib. I think will try to install 10.2 on my phone and see if that fixes the problem. Perhaps 10.3 and 11 is not supported by the Infused v2 ROM.
Click to expand...
Click to collapse
Make sure you have root.
Force close all browsers.
Using Root explorer/Fileexpert .. go to /data/data and look for app_plugins folder for each browser.
in app_plugins/com.adobe /.macromedia /Flashplayer
Remove all permissions for config.data file. Do the same for all browsers stock/miren/dolphin etc.
Flash video will work on all sites.
in /data it says that the directory is empty. I'm using File Expert
Anyone else having blank flash player screens?
Im on CM7.1 btw and latest flash player.
** UPDATE**
Fix it with this...
http://www.youtube.com/watch?v=nNagzUbWU1s

Enhanced Camera.apk

Everyone seems to be asking for a silent camera app, also some desire one with better image/video capturing. There is one in existence however, most wouldn't know this (unless you use the 'search' function) because it's in the I9100 forum. Yes, it does work with our phone but I wanted something that was build from our source and that's up to date. I decided to take the best of both and combine them. This is the Camera.apk from Calkulin's 2.8.1 (EL29) ROM but with the edits from Potatoman's incorporated into it.
Check out Potatoman's thread to see the bitrates and sampling rates if you're curious. Instructions on how to put this in /system/app are in Patatoman's thread also. Let me know if for some reason they didn't work and I'll see what I can do. I've tested it on mine so I know it works I just haven't had a chance to test the sampling and bitrates.
Also, there's a media_profiles.xml that may or may not be useful. I use it anyway. That goes in /system/etc with no special permissions. Just give it the same as the stock one.
Lastly, in no way do I take credit for this. All I've done is combine work from two great devs - they did all the dirty work. If you'd like to thank or donate to someone then donate/thank one of them, or both
Cheers and enjoy.
EDIT: Figured I would add this here for those that aren't sure how to replace a /system file.
For a file explorer (eg. Root Explorer) make sure the system is mounted as r/w. Copy the app from your sdcard to the /system/app directory. Change permissions to rw-r-r. Reboot. I also set the owner and group to root but you shouldn't have to.
For terminal
Code:
su
mount -o remount,rw /dev/block/mmcblk0p9 /system
cp /sdcard/path/to/app /system/app
chmod 644 /system/app/Camera.apk
Reboot
Only if you have to should you just install it like a regular app. If you have to, just click on the app in your file explorer and select 'install'. This will install it to the /data/app directory. This should never have to be done though.
Just make sure you reboot
Sent from my SPH-D710 using xda premium
Thanks for the update. The higher bitrate camp.apk was posted in the theme/app section.
Excellent find... much obliged!
Sent from the last remaining Prime; Leader of the Autopads.
Didn't get it where the volume rocker takes picture though
Sent from the near past
Wait... so this particular .apk does not include the snap photo via volume rocker functionality?
I am just going by the previous post.
Sent from one impressive piece of technology.
No not yet anyway. It just has the higher bitrate and sampling rate right now. I'm new to .dex edits so I'll keep updating it as I learn more. I know there's a power button mod for it but from what I've read its still buggy.
Sent from my SPH-D710 using XDA App
KCRic said:
Everyone seems to be asking for a silent camera app, also some desire one with better image/video capturing. There is one in existence however, most wouldn't know this (unless you use the 'search' function) because it's in the I9100 forum. Yes, it does work with our phone but I wanted something that was build from our source and that's up to date. I decided to take the best of both and combine them. This is the Camera.apk from Calkulin's 2.8.1 (EL29) ROM but with the edits from Potatoman's incorporated into it.
Check out Potatoman's thread to see the bitrates and sampling rates if you're curious. Instructions on how to put this in /system/app are in Patatoman's thread also. Let me know if for some reason they didn't work and I'll see what I can do. I've tested it on mine so I know it works I just haven't had a chance to test the sampling and bitrates.
Also, there's a media_profiles.xml that may or may not be useful. I use it anyway. That goes in /system/etc with no special permissions. Just give it the same as the stock one.
Lastly, in no way do I take credit for this. All I've done is combine work from two great devs - they did all the dirty work. If you'd like to thank or donate to someone then donate/thank one of them, or both
Cheers and enjoy.
Click to expand...
Click to collapse
For noobs like me, do you just put the camera apk in your storage and install it using installer app?
Nice find! I just switched from Calkulin 2.8.1 to TNz Blend ROM and will love to have Calkulin's camera app with the Blend ROM... Best of both worlds! Will flash this tomorrow and report back.
Sent from my GT-P7510 using Tapatalk
Could not sleep so decided to install it now, not letting me though. Tried to install through the package installer but it won't go... Perhaps I cannot install it on a different ROM (running TNz Blend)
Sent from my SPH-D710 using Tapatalk
AntikytheraTech said:
Could not sleep so decided to install it now, not letting me though. Tried to install through the package installer but it won't go... Perhaps I cannot install it on a different ROM (running TNz Blend)
Sent from my SPH-D710 using Tapatalk
Click to expand...
Click to collapse
Yes you can....push to system/app....set permissions up like the other apps there....the click and install
Sent from the near past
Danial723 said:
Yes you can....push to system/app....set permissions up like the other apps there....the click and install
Sent from the near past
Click to expand...
Click to collapse
How do you set the permissions without using ADB? I only ask because I have never used it (clearly). But maybe now is the time.... :-S
Sent from my SPH-D710 using Tapatalk
AntikytheraTech said:
How do you set the permissions without using ADB? I only ask because I have never used it (clearly). But maybe now is the time.... :-S
Sent from my SPH-D710 using Tapatalk
Click to expand...
Click to collapse
You'll need a file explorer app like Root Explorer. You can also use a terminal emulator app. With the file explorer you copy the app from your sdcard to the /system/app directory. Make sure sure the system is mounted in r/w also. That will overwrite the original, now all you have to do is set permissions which are rw-r-r.
Just to be safe, reboot. If you had a shortcut for it on your homescreen you'll have to put it back there.
For terminal
Code:
su
mount -o remount,rw /dev/block/mmcblk0p9 /system
cp /sdcard/path/to/app /system/app
chmod 644 /system/app/Camera.apk
Danial723 said:
Didn't get it where the volume rocker takes picture though
Sent from the near past
Click to expand...
Click to collapse
I figured I would test to see if it had that function since Calkulin's camera does. I'm able to take pictures with the volume rocker. Are you not?
sratwars said:
For noobs like me, do you just put the camera apk in your storage and install it using installer app?
Click to expand...
Click to collapse
No,u need to put apk in /system/app folder but you need to be rooted to put apk's in that folder.
But u can try just installing it regularly,sometimes that works too for some apps.
(For noobs like me, do you just put the camera apk in your storage and install it using installer app?)
no. read instruction before replying PLEASE!
*xda_ace=spades. said:
(For noobs like me, do you just put the camera apk in your storage and install it using installer app?)
no. read instruction before replying PLEASE!
Click to expand...
Click to collapse
And read the dates before you revive a 5 month old thread PLEASE!

Categories

Resources