Adding background to application problem, need DEV help asap! - XPERIA X10 Themes and Apps

This is my FIRST time trying something like this so bear with me...
So I'm really trying to make my froyo rom look like my old SE 2.1 rom...
I've been trying to add a background to the ORIGINAL SE calculator.apk (ORIGINAL Calculator.apk is below). I used apktool to decomplie it and build it with my modifications.
I edited androidmanifest.xml
Code:
<?xml version="1.0" encoding="UTF-8"?>
<manifest android:versionCode="7" android:versionName="2.1-update1" package="com.android.calculator2"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="7" />
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:theme="@style/calcBackgroundTheme" android:name="Calculator">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
^I put in the line <activity android:theme="@style/calcBackgroundTheme"
and I edited the Styles.xml in the values folder..
Code:
<?xml version="1.0" encoding="UTF-8"?>
<resources>
<style name="button_style">
<item name="android:textSize">40.0dip</item>
<item name="android:background">@drawable/transparent_button</item>
<item name="android:focusable">true</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:layout_margin">2.0dip</item>
<item name="android:layout_marginLeft">1.0dip</item>
<item name="android:layout_weight">1.0</item>
</style>
<style name="digit_button_style" parent="@style/button_style">
<item name="android:background">@drawable/transparent_button</item>
</style>
<style name="button_small_style" parent="@style/button_style">
<item name="android:textSize">30.0dip</item>
</style>
<style name="display_style">
<item name="android:textSize">36.0dip</item>
<item name="android:textColor">#ffffffff</item>
<item name="android:gravity">right|center</item>
<item name="android:padding">8.0dip</item>
<item name="android:scrollbars">none</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:maxLines">1</item>
<item name="android:scrollHorizontally">true</item>
</style>
<style name="calcBackgroundTheme" parent="@android:style/Theme">
<item name="android:windowBackground">@drawable/calc_bg</item>
</style>
</resources>
^I put in <style name="calcBackgroundTheme" parent="@android:style/Theme">
<item name="android:windowBackground">@drawable/calc_bg</item>
</style>
Then I placed my calc_bg.apk in my drawable and drawable_hdpi folders....
Then i built the application and put it on my phone but when I try to install it, it would say application not installed, when i put it through xrecovery it wouldnt show up at all... Did I mess up the background? Is it a signing issue?
The modified Calculator.apk and its decompiled files can be found here
HTML:
http://www.mediafire.com/?i70bh1pzbcmvhbi

Any help is appreciated...please...
Sent from a pyramid in Canadada

egyptshun said:
Any help is appreciated...please...
Sent from a pyramid in Canadada
Click to expand...
Click to collapse
i think its signing issues. not the background issues.
Try that see if its working.

you can't install it as it is a system application. and you should not sign it too.
you need to push it to /system/app through adb or use root explorer and set the right permission.

realunited123 said:
you can't install it as it is a system application. and you should not sign it too.
you need to push it to /system/app through adb or use root explorer and set the right permission.
Click to expand...
Click to collapse
agree with the push it but you should also sign it...

rdannar said:
agree with the push it but you should also sign it...
Click to expand...
Click to collapse
If it's going to /system/app, you don't have to sign it.
I've modified Smart Keyboard Pro and pushed it to /system without signing.
If you are using Root Explorer, copy it into /system/app, replace the original,
then change permissions to rw-r-r (meaning, check all the first column, and the first one from the second) reboot and enjoy!

take the apk file from your froyo rom
open it with 7zip
search in the files to see the backgroung image
change it with anything you want and reinstall the new apk
it's simple
اذا كان هذا قصدك :d
اما اذا انت جالس تبرمج حاجه ثانيه ما اقدر افيدك لووول
لو عاوز اي حاجه تانيه عالبي ام يا مان

Ghaith Alshareef said:
take the apk file from your froyo rom
open it with 7zip
search in the files to see the backgroung image
change it with anything you want and reinstall the new apk
it's simple
Click to expand...
Click to collapse
The original apk points to an image in 2.1 framework-res for the background so he had to add the code that points to an image he added to the apk itself and therefore has to recompile, but not sign since it's a system apk.
It's safe to say My_Immortal knows what she's talking about. If you do what she said & it still doesn't install, check the new code for errors.
Sent from my X10a using XDA App

It still doesn't went to instal with my mods...WTF DO I DO? MY FIRST PROJECT IS LOOKING LIKE MY LAST... GRAHH, STUPID CODES.....
Sent from a pyramid in Canadada

Ghaith Alshareef said:
take the apk file from your froyo rom
open it with 7zip
search in the files to see the backgroung image
change it with anything you want and reinstall the new apk
it's simple
اذا كان هذا قصدك :d
اما اذا انت جالس تبرمج حاجه ثانيه ما اقدر افيدك لووول
لو عاوز اي حاجه تانيه عالبي ام يا مان
Click to expand...
Click to collapse
No bud, thats not what I'm trying to do, thanks tho..
hierarchy666 said:
i think its signing issues. not the background issues.
Try that see if its working.
Click to expand...
Click to collapse
Nope... thanks tho aswell..

egyptshun said:
No bud, thats not what I'm trying to do, thanks tho..
Nope... thanks tho aswell..
Click to expand...
Click to collapse
have you tried addin this
Code:
android:background="@drawable/calc_bg" android:layout_width="fill_parent" android:layout_height="fill_parent"
to styles it mite work lol , but dont give up dude

jase81 said:
have you tried addin this
Code:
android:background="@drawable/calc_bg" android:layout_width="fill_parent" android:layout_height="fill_parent"
to styles it mite work lol , but dont give up dude
Click to expand...
Click to collapse
Isnt it already there?
Sent from a pyramid in Canadada

Related

[Q] Help! Cant edit app

I can just edit the pngs and the .9.pngs and everything goes fine. I can install and everything works perfectly except the font is too dark on the widget so you cant see it. I am wanting to change the font on the venues widget to white not black. If you look at the styles.xml there are 3 instances that are there and they are as follows:
HTML:
<style name="TextViewStyleVenueActivityTodoHere">
<item name="android:textSize">14.0dip</item>
<item name="android:textStyle">bold</item>
<item name="android:textColor">@color/black_end</item>
</style>
<style name="TextViewStyleAddTipTodoActivityBold">
<item name="android:textSize">16.0dip</item>
<item name="android:textStyle">bold</item>
<item name="android:textColor">@color/black_end</item>
</style>
<style name="TextViewStyleAddTipTodoActivityNormal">
<item name="android:textSize">14.0dip</item>
<item name="android:textColor">@color/black_end</item>
</style>
I am changing black_end to white. that is all I am changing. Anyone offer any assistance with this? Attached in the zip is the original apk and the pngs (yes I ran the 9patch on the .9.pngs) that I have edited and the styles.xml file is in res/values
The app compiles, signs, and installs fine, but will FC as soon as I try to open it. I also attached the adb log from trying to open the app if anyone can decipher that. lol
Any help would be GREATLY appreciated.

[Q][HARD] App XML Font Color Editing

Hey guys I am trying to edit the mms.apk so that all the text color is cyan. I have NinjaMorph but I don't know which xml file the text part is in. My question is where the xml file is so i can edit it.
The drawables.xml has the following values:
Code:
<item type="drawable" name="text_color">#ffffffff</item>
<item type="drawable" name="text_color_red">#ffff0000</item>
<item type="drawable" name="text_color_black">#ff000000</item>
<item type="drawable" name="text_color_offwhite">#55ffffff</item>
<item type="drawable" name="text_color_green">#ff00ff00</item>
Have you tried those?
wewoapsiak said:
The drawables.xml has the following values:
Code:
<item type="drawable" name="text_color">#ffffffff</item>
<item type="drawable" name="text_color_red">#ffff0000</item>
<item type="drawable" name="text_color_black">#ff000000</item>
<item type="drawable" name="text_color_offwhite">#55ffffff</item>
<item type="drawable" name="text_color_green">#ff00ff00</item>
Have you tried those?
Click to expand...
Click to collapse
Where is that xml file in the .apk?
Mms.apk\res\values
You have to decompile the apk for values subfolder to be viewable. When compiled this along with a bunch of other stuff gets "hidden" and lumped into the resources.arsc file.
wewoapsiak said:
Mms.apk\res\values
You have to decompile the apk for values subfolder to be viewable. When compiled this along with a bunch of other stuff gets "hidden" and lumped into the resources.arsc file.
Click to expand...
Click to collapse
Stupid me forgot to decompile
wewoapsiak said:
The drawables.xml has the following values:
Code:
<item type="drawable" name="text_color">#ffffffff</item>
<item type="drawable" name="text_color_red">#ffff0000</item>
<item type="drawable" name="text_color_black">#ff000000</item>
<item type="drawable" name="text_color_offwhite">#55ffffff</item>
<item type="drawable" name="text_color_green">#ff00ff00</item>
Have you tried those?
Click to expand...
Click to collapse
Just making sure but I edit all of the text colors to the cyan code (#00FFFF) to make all text a cyan text color right?
You have to add transparency (alpha) code to the beginning of the setting. Cyan would be:
#ff00ffff
I've never messed with the mms.apk, but I think these should be the values you need to change.
wewoapsiak said:
You have to add transparency (alpha) code to the beginning of the setting. Cyan would be:
#ff00ffff
I've never messed with the mms.apk, but I think these should be the values you need to change.
Click to expand...
Click to collapse
But do I edit every text code in the xml to #ff00ffff?
Yeah I got nothing on which one to change. Just keep trying until you get what you want.
Woah I can't compile my apk with APK Manager, Im getting an error. Any help?
thor6577 said:
Woah I can't compile my apk with APK Manager, Im getting an error. Any help?
Click to expand...
Click to collapse
What error? I just changed all the values I listed above then recompiled perfectly. Selected yes for system apk, then yes for the error question, deleted the resources.arsc, then continued.
Also the styles.xml has the following value that might help you if the above ones don't
<item name="android:textColor">?android:textColorPrimary</item>
You could try changing the ?android....Primary to the code for your color.
wewoapsiak said:
What error? I just changed all the values I listed above then recompiled perfectly. Selected yes for system apk, then yes for the error question, deleted the resources.arsc, then continued.
Also the styles.xml has the following value that might help you if the above ones don't
<item name="android:textColor">?android:textColorPrimary</item>
You could try changing the ?android....Primary to the code for your color.
Click to expand...
Click to collapse
What did you use to recompile?
Sent from my phone
I use APK Manager 4.9 for decompiling/recompiling. Editpad Lite for editing xml files.
I will try that version. I think I was using 5.2, but its a little glitchy. How large was your compiled apk after the delete of resources file? Mine is only 554 KB and im not sure if that is large enough.
hy
what exactly line in the drawable to change the color of text font i want to change it to yellow thnx

[GUIDE][MOD] How to change settings background image on Jellybean 4.2.x

This is how you can change all the system backgrounds plain colors (settings, contacts, etc) to an actual image instead of a color
The how to:
1. Decompile the framework-res.apk using Android Multitool
2. navigate to the res>styles>styles.xml and with notepad++ locate <style name="Theme"> and edit these lines:
change:
Code:
<item name="colorBackground">@color/background_dark</item>
to this
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@drawable/screen_background_dark</item>
to this one to use a png for the background:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
3. Locate <style name="Theme.Black" parent="@style/Theme">
and change this line:
Code:
<item name="colorBackground">@color/black</item>
to this:
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@color/black</item>
to this for the png image:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
4. Use a 512x512 png , name it "backgroundftw" and place it in drawable-nodpi folder
5. Recompile the framework-res.apk and replace it with the old framework-res.apk in system/framework
6. Enjoy
Things required for this tutorial:
1. Android Miltitool to decompile and replace image
2. notepad++ for the coding
3. Your brain
4. You have to know where to obtain the framework-res.apk from on your phone. Just go to system/framework using root explorer
5. Make a backup of ur ROM or a flashable of your old framework-res.apk just incase if you make a mistake while coding. So that you dont encounter a bootloop
6. Find a video on youtube to learn how to compile and decompile your framework-res.apk
Difficulty for this tutorial: medium
For images CLICK HERE
good but wrong way bro......
ur steps are correct but method is wrong....
u cannot obtain styles.xml or find value folder with 7 zip....
u need apktool for that....
n just adding images or edited styles.xml ...to framework-res.apk
bootloops n fcs.....
i
Avenger4droid said:
good but wrong way bro......
ur steps are correct but method is wrong....
u cannot obtain styles.xml or find value folder with 7 zip....
u need apktool for that....
n just adding images or edited styles.xml ...to framework-res.apk
bootloops n fcs.....
i
Click to expand...
Click to collapse
Will update the thread tomorrow
nathanjp said:
will update the thread tomorrow
Click to expand...
Click to collapse
update the thread then i will try for sure don't want bootloop
upload video bro
awesome workk bro but if u upload a video step by step then its very useful to every one or if not possible then plzz upload a image bro
Thread updated try it now
gaurav247star said:
update the thread then i will try for sure don't want bootloop
Click to expand...
Click to collapse
Bro i updated the thread a couple days ago. Try it now
great work and helpful guide
nathanjp said:
This is how you can change all the system backgrounds plain colors (settings, contacts, etc) to an actual image instead of a color
The how to:
1. Decompile the framework-res.apk using Android Multitool
2. navigate to the res>lstyles>styles.xml and with notepad++ locate <style name="Theme"> and edit these lines:
change:
Code:
<item name="colorBackground">@color/background_dark</item>
to this
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@drawable/screen_background_dark</item>
to this one to use a png for the background:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
3. Locate <style name="Theme.Black" parent="@style/Theme">
and change this line:
Code:
<item name="colorBackground">@color/black</item>
to this:
Code:
<item name="colorBackground">@color/transparent</item>
then change:
Code:
<item name="windowBackground">@color/black</item>
to this for the png image:
Code:
<item name="windowBackground">@drawable/backgroundftw</item>
4. Use a 512x512 png , name it "backgroundftw" and place it in drawable-nodpi folder
5. Recompile the framework-res.apk and replace it with the old framework-res.apk in system/framework
6. Enjoy
Things required for this tutorial:
1. Android Miltitool to decompile and replace image
2. notepad++ for the coding
3. Your brain
4. You have to know where to obtain the framework-res.apk from on your phone. Just go to system/framework using root explorer
5. Make a backup of ur ROM or a flashable of your old framework-res.apk just incase if you make a mistake while coding. So that you dont encounter a bootloop
6. Find a video on youtube to learn how to compile and decompile your framework-res.apk
Difficulty for this tutorial: medium
Click to expand...
Click to collapse
Good work keep it up
djrkb24 said:
Good work keep it up
Click to expand...
Click to collapse
Have u tried the tutorial??
Guys do post your screenshots if you have tried out the tutorial
Will post a newer and simpler tutorial to make it easy for u guys. All you have to do is replace the image in this. Flash able zip will so be available
Hit the thanks button if you guys would like that
nathanjp said:
Will post a newer and simpler tutorial to make it easy for u guys. All you have to do is replace the image in this. Flash able zip will so be available
Hit the thanks button if you guys would like that
Click to expand...
Click to collapse
Isn't the settings background located in /res/drawable/background_holo_dark.xml?
DonDizzurp said:
Isn't the settings background located in /res/drawable/background_holo_dark.xml?
Click to expand...
Click to collapse
Nope you dont wanna edit that
nathanjp said:
Nope you dont wanna edit that
Click to expand...
Click to collapse
That's what I edited in order to remove the gradient and get an all black background. I did the styles.xml mod to get the wallpaper working though.
Its A Brilliant Guide Brother..Thanks..!
Thunder_Droid said:
Its A Brilliant Guide Brother..Thanks..!
Click to expand...
Click to collapse
Thanks bro.
work..thank you bro
could any1 let me know that how to make background transpearent
Copied Post GARBAGE

[GUIDE] Easy Way to Hide signal

Hello every one, This is easy way how to hide signal, why hide signal ?? because some people want to hide one off signal, so i share what i can
Steps ::
Decompile your SystemUI
[*]Navigate to res/drawable-hdpi
Delete some signal's png, free, it's up to you (ex :: green signal). So delete ::
Code:
stat_sys_gemini_signal_1_green.png
stat_sys_gemini_signal_2_green.png
stat_sys_gemini_signal_3_green.png
stat_sys_gemini_signal_4_green.png
Navigate to values/drawables and then add this at the bottom
Code:
<item type="drawable" name="stat_sys_gemini_signal_1_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_2_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_3_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_4_green">#00000000</item>
Recompile your SystemUI, Done
So the question :: How to hide signal ??
Go to Settings/Sim Management, and then choose the first or the second sim to the green indicator, look at to your statusbar, your signal will be hidden
Don't say thanks if i help you, but press it :good:​
Nice Exploration
bagustinov said:
Hello every one, This is easy way how to hide signal, why hide signal ?? because some people want to hide one off signal, so i share what i can
Steps ::
Decompile your SystemUI
[*]Navigate to res/drawable-hdpi
Delete some signal's png, free, it's up to you (ex :: green signal). So delete ::
Code:
stat_sys_gemini_signal_1_green.png
stat_sys_gemini_signal_2_green.png
stat_sys_gemini_signal_3_green.png
stat_sys_gemini_signal_4_green.png
Navigate to values/drawables and then add this at the bottom
Code:
<item type="drawable" name="stat_sys_gemini_signal_1_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_2_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_3_green">#00000000</item>
<item type="drawable" name="stat_sys_gemini_signal_4_green">#00000000</item>
Recompile your SystemUI, Done
So the question :: How to hide signal ??
Go to Settings/Sim Management, and then choose the first or the second sim to the green indicator, look at to your statusbar, your signal will be hidden
Don't say thanks if i help you, but press it :good:​
Click to expand...
Click to collapse
kEEp it Up Bro!
good
i ve been searching for this for a long time
saalikrao said:
kEEp it Up Bro!
Click to expand...
Click to collapse
Thanks bro
sharath7610 said:
i ve been searching for this for a long time
Click to expand...
Click to collapse
Haha you get it now :laugh:
wow..very very easy thank bro

[FIX] Motorola Camera write to ExternalSD permisson on CM/AOSP ROM's

As noticed in Custom ROM's. The MOTOROLA CAMERA application is unable to do following 2 things for the user.
1. Storage - Phone (Option Greyed out)
Solution:
You need to add a permission line to fix this. Follow the steps below.
Download QuickEdit app from playstore for editing the xml file.
Navigate to "/data/system" folder
Edit "packages.xml" with QuickEdit app
Search for "com.motorola.cameraone" and paste the following code line before the end of </perms> tag
Code:
<item name="android.permission.WRITE_MEDIA_STORAGE" granted="true" flags="0" />
Save the file and REBOOT your phone.
Fixed..!
2. Shutter Sound - ON (Cannot disable it)
Solution:
I couldn't identify the right permission line for this. But however here is an alternate solution that does the needful.
Navigate to "/system/media/audio/ui"
Rename the file "camera_click.ogg" to "camera_click.ogg.bak"
That's it..!
Tested working on CM13/CM14.1 ROM's.
Thank you buddy
==vj== said:
As noticed in Custom ROM's. The MOTOROLA CAMERA application is unable to do following 2 things for the user.
1. Storage - Phone (Option Greyed out)
Solution:
You need to add a permission line to fix this. Follow the steps below.
Download QuickEdit app from playstore for editing the xml file.
Navigate to "/data/system" folder
Edit "packages.xml" with QuickEdit app
Search for "com.motorola.cameraone" and paste the following code line before the end of </perms> tag
Save the file and REBOOT your phone.
Fixed..!
2. Shutter Sound - ON (Cannot disable it)
Solution:
I couldn't identify the right permission line for this. But however here is an alternate solution that does the needful.
Navigate to "/system/media/audio/ui"
Rename the file "camera_click.ogg" to "camera_click.ogg.bak"
That's it..!
Tested working on CM13/CM14.1 ROM's.
Click to expand...
Click to collapse
Thanks for sharing this! But my phone erases the code I add at every reboot..
It is set on rw-rw----
Maybe my system it isn't as permissive as I thought :fingers-crossed:
Is there a fix for this issue too?
Thanks again,
BoZ
Edit
Solved allowing System Modifications in setting/app/Camera/Authorizations
plz
gamer96 said:
Thank you buddy
Click to expand...
Click to collapse
Plz tel me with screenshots where to paste that codes
balboyz said:
Plz tel me with screenshots where to paste that codes
Click to expand...
Click to collapse
The op has a fully detailed step by step guide. Where's the problem?
But the shutter sound can be disabled for me without any edit.
XT1643/Lineage
jyoti.id said:
But the shutter sound can be disabled for me without any edit.
XT1643/Lineage
Click to expand...
Click to collapse
+1
Sent from my XT1644
jyoti.id said:
But the shutter sound can be disabled for me without any edit.
XT1643/Lineage
Click to expand...
Click to collapse
mendozaram said:
+1
Sent from my XT1644
Click to expand...
Click to collapse
You'll may notice, OP was written as of 12-Nov-2016 and your observations made are as of 21-Jan-2017 onwards. By this date there are many changes taken place in AOSP code that might have solved the Shutter Sound bug without any trick.

			
				
What do you mean by before the end of </perms> tag? Do we have to replace the whole line?
M-in-M said:
What do you mean by before the end of </perms> tag? Do we have to replace the whole line?
Click to expand...
Click to collapse
You have to ADD that line. As in, [ENTER], paste that line, save and reboot.
M-in-M said:
What do you mean by before the end of </perms> tag? Do we have to replace the whole line?
Click to expand...
Click to collapse
Nah you have to add that given code before that </perms> tag. See the attached screenshot.
I pasted the text mention above but nothing happened, could someone please define the process completely or rather in a basic manner.... Thanks
amitkuliyal said:
I pasted the text mention above but nothing happened, could someone please define the process completely or rather in a basic manner.... Thanks
Click to expand...
Click to collapse
Where's the problem? The instructions in op are easy to understand? You can upload your file to hastebin or so and we can check.
strongst said:
Where's the problem? The instructions in op are easy to understand? You can upload your file to hastebin or so and we can check.
Click to expand...
Click to collapse
http://www49.zippyshare.com/v/TXMJyKCp/file.html
Don't know how that hastebin work, So i've uploaded the file, please have a look at it
M-in-M said:
What do you mean by before the end of </perms> tag? Do we have to replace the whole line?
Click to expand...
Click to collapse
He means exactly that, you're gonna put it just above the </perms> tag. You don't replace or remove it.
amitkuliyal said:
http://www49.zippyshare.com/v/TXMJyKCp/file.html
Don't know how that hastebin work, So i've uploaded the file, please have a look at it
Click to expand...
Click to collapse
Have a look, that should work
bozinsky73 said:
Thanks for sharing this! But my phone erases the code I add at every reboot..
It is set on rw-rw----
Maybe my system it isn't as permissive as I thought :fingers-crossed:
Is there a fix for this issue too?
Thanks again,
BoZ
Edit
Solved allowing System Modifications in setting/app/Camera/Authorizations
Click to expand...
Click to collapse
How did you manage to do the last thing mate? Or with wich app? Thanks in advance.
JoeyTorres87 said:
How did you manage to do the last thing mate? Or with wich app? Thanks in advance.
Click to expand...
Click to collapse
Justo go to settings than app and select Motorola Camera. At bottom of settings there's what you need to edit
Sent from my Motorola XT1524 using XDA Labs
OK, let's see:
allowed system modifications in the mentioned location
modified permissions in packages.xml
rebooted phone
checked for permissions in packages.xml:
Code:
<package name="com.motorola.cameraone" codePath="/system/priv-app/MotCamera" nativeLibraryPath="/system/priv-app/MotCamera/lib" p
<sigs count="1">
<cert index="30" key="3082038130820269a003020102020479741d42300d06092a864886f70d01010b050030703110300e06035504061307556e6
</sigs>
<perms>
<item name="android.permission.WRITE_SETTINGS" granted="true" flags="0" />
<item name="android.permission.MODIFY_AUDIO_SETTINGS" granted="true" flags="0" />
<item name="com.motorola.camera.permission.CONTROL_CAMERA" granted="true" flags="0" />
<item name="android.permission.RECEIVE_BOOT_COMPLETED" granted="true" flags="0" />
<item name="android.permission.WRITE_MEDIA_STORAGE" granted="true" flags="0" />
<item name="android.permission.STOP_APP_SWITCHES" granted="true" flags="0" />
<item name="android.permission.WRITE_SECURE_SETTINGS" granted="true" flags="0" />
<item name="android.permission.CHANGE_WIFI_STATE" granted="true" flags="0" />
<item name="android.permission.ACCESS_NETWORK_STATE" granted="true" flags="0" />
<item name="android.permission.DISABLE_KEYGUARD" granted="true" flags="0" />
<item name="android.permission.VIBRATE" granted="true" flags="0" />
<item name="android.permission.ACCESS_WIFI_STATE" granted="true" flags="0" />
<item name="android.permission.WAKE_LOCK" granted="true" flags="0" />
</perms>
<proper-signing-keyset identifier="36" />
</package>
But still I can't choose the location for picture saving.
Any ideas?

Categories

Resources