Related
Hello!
We (3 Microsoft Student Partners) created a free (yes, free!) WP 7.5 application, Good Morning.
Here is the description:
"Good Morning is an alarm clock using your personal musics. Browse your favorite tracks, choose one and let it act as an alarm.
Coming up:
- Enable multiple alarms
- Create a playlist as an alarm clock"
Here is the link: windowsphone.com/en-US/apps/a3144459-4a33-4aab-b81f-ff030ee92281
We currently released the V1 of the app. If you have some ideas for another version, or if you saw some problems with the app, your feedback is welcomed!
Pierre
Hello Guys!
We have updated the app:
Changelog:
-pictures are not pixelized
-possibility to add a reminder when the alarm is active
-the alarm can be started from any slide of the app.
As usual, your feedbacks are welcomed !
Good app, works perfect on HD2 with the latest build of WP7.5
Thanks! I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Great App! I'm testing it & i love the UI (clean & metro).
Hope we'll see next version soon.
EDIT: Could you make this App works in background? Will be better.
drokkon said:
Thanks! I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Click to expand...
Click to collapse
It would be a great thing to do that
Thanks for app....work fine on my Omnia 7
hello guys!
We updated the application! Any comment is welcomed!
PS: our dev will respond to your feedbacks!
Thanks all for your feedback !
inexorable said:
Hope we'll see next version soon.
Click to expand...
Click to collapse
You will ! I'll try to update the app every week.
inexorable said:
EDIT: Could you make this App works in background? Will be better.
It would be a great thing to do that
Click to expand...
Click to collapse
Unfortunately, no. There is no way to do that with the current APIs.
drokkon said:
I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Click to expand...
Click to collapse
Indeed, it could be great. That's not planned right now, but I'll probably think of it for a next major release !
As leresistant said, feel free to share your thoughts with us !
hello can we find the app somewhere else cause in my country is not available
elfacki20 said:
hello can we find the app somewhere else cause in my country is not available
Click to expand...
Click to collapse
Sorry, you can't. What is your country ?
Hello! Our latest update has been accepted, and you'll be able to download it in the next hours.
Here are the modifications:
v1.2 :
- "Shake to snooze": delay the alarm during 5 minutes
- settings page added
- start/pause button deleted (for managing the music)
- pin an alarm on the phone's home page
- icons of the application use the phone's accent color
kryptum said:
Unfortunately, no. There is no way to do that with the current APIs.
I know you guys are Student dev's and congrats on your App but I am here to let you know you can actually run your app as a background process. You need to create a separate program in general and add it in to your current project as now your app has 2 projects.
Yes, you could turn the other project in to a control but I don't recommend it as this way you can edit better and no need to re-compile out of project.
With your second project, it runs in the background allowing the other project to be the "brain". If you add a reference to your main app, you can do quite a bit in your bg app, for example... Have it detect the time and than send the function of an alert someone sent...
It's the same idea as if you were going to do TOAST/LIVE Tile updates.
Hope my 2 cents didn't offend you, just trying to help you .
Thanks,
Lance
http://lance.compulsivetech.biz
@LanceSeidman
Click to expand...
Click to collapse
lseidman said:
kryptum said:
Unfortunately, no. There is no way to do that with the current APIs.
I know you guys are Student dev's and congrats on your App but I am here to let you know you can actually run your app as a background process. You need to create a separate program in general and add it in to your current project as now your app has 2 projects.
Yes, you could turn the other project in to a control but I don't recommend it as this way you can edit better and no need to re-compile out of project.
With your second project, it runs in the background allowing the other project to be the "brain". If you add a reference to your main app, you can do quite a bit in your bg app, for example... Have it detect the time and than send the function of an alert someone sent...
It's the same idea as if you were going to do TOAST/LIVE Tile updates.
Hope my 2 cents didn't offend you, just trying to help you .
Click to expand...
Click to collapse
Hi lseidman,
Thanks for your feedback.
You're right, I can add another project to my solution to implement a background agent.
Unfortunately, afaik :
1/ The player uses the Microsoft.Xna.Framework.Media namespace, which can't be referenced from a Task Agent project.
2/ Tasks are handled by the system. We can't defined the scheduled interval. As mentioned on msdn [I can't post any outside link - sorry] a periodic task can run every 10mn at least.
I don't know every APIs and I may be wrong, but I don't think what you described is a solution. Please let me know if i'm wrong.
Thanks again for helping me make this app better !
Click to expand...
Click to collapse
kryptum said:
lseidman said:
Hi lseidman,
Thanks for your feedback.
You're right, I can add another project to my solution to implement a background agent.
Unfortunately, afaik :
1/ The player uses the Microsoft.Xna.Framework.Media namespace, which can't be referenced from a Task Agent project.
2/ Tasks are handled by the system. We can't defined the scheduled interval. As mentioned on msdn [I can't post any outside link - sorry] a periodic task can run every 10mn at least.
I don't know every APIs and I may be wrong, but I don't think what you described is a solution. Please let me know if i'm wrong.
Thanks again for helping me make this app better !
Click to expand...
Click to collapse
1).
Have you tried using using System.Windows.Media and doing something like (in XAML):
<MediaElement x:Name="mediaControl" Source="soundfile.mp3/wma" AutoPlay="False" Width="0" Height="0" Margin="240,60" />
* Note the 0's so it's hidden.
** You can replace source's defined file location (assuming your not copying the file they select to local storage, renaming and defining it as one specific item name) to Source="{Binding filetoplay}".
Obviously when using binding your going to need to have something to bind to it (even if you did a "public string itemname {get; set;}" in a class).
Which you could always use IsolatedStorage like I said above in which you could do:
using (isolatedStorageFileStream)
{
SaveFile(e.Result, isolatedStorageFileStream);
//error is null function, go and do:
media.SetSource(isolatedStorageFileStream);
}
* Just know other steps are needed before you even get to that point but just an example. This is obviously where you previously grabbed the file, "created" it, saved it and set for playback (hence the .SetSource).
Then for playback wherever you needed it, you just throw: mediaControl.Play();.
Again, just an idea to get around XNA. It won't be simple if you're not familiar with IsolatedStorage and other aspects around it but you can get away from XNA.
2). Take a look at these, maybe they'll help you...
ScheduledNotification Class
Alarm Class
Reminder Class
Also check out the other items around the PeriodicTask.
Either way, good luck and best of luck with future development!
Thanks,
Lance
http://lance.compulsivetech.biz
@LanceSeidman
Click to expand...
Click to collapse
why can't i download it?? is it bcos my marketplace is signed as in portugal?
sarkvphilvs said:
why can't i download it?? is it bcos my marketplace is signed as in portugal?
Click to expand...
Click to collapse
Sorry, the app hasn't been published for portugal marketplace. I'll fix that soon.
testing right now. If you need a translator for spanish language, let me know how can i help you.
kryptum said:
Sorry, the app hasn't been published for portugal marketplace. I'll fix that soon.
Click to expand...
Click to collapse
thank u . likewise, if you need a translator for Portuguese, i'm avaiable
BigwaveMx said:
testing right now. If you need a translator for spanish language, let me know how can i help you.
Click to expand...
Click to collapse
sarkvphilvs said:
thank u . likewise, if you need a translator for Portuguese, i'm avaiable
Click to expand...
Click to collapse
Indeed, it could be really helpfull ! (until now I've used google translate for es, de & it :/).
Could I give you the resource .resx files so that you can file them up ?
kryptum said:
Indeed, it could be really helpfull ! (until now I've used google translate for es, de & it :/).
Could I give you the resource .resx files so that you can file them up ?
Click to expand...
Click to collapse
yes, send it to me. I send you back when I'm done.
I found this app on the Market for anyone that came from or is coming from Android. It's probably the best Google reader app.
Syncs and everything!
Has anyone downloaded or bought the app? What does the paid version do?
Thanks
Is it better/faster that NextGen Reader?
bilbo_b said:
Is it better/faster that NextGen Reader?
Click to expand...
Click to collapse
I don't know. I'll download NextGen and let you know though!
You can also check out this article that came out on PocketLint:
http://www.pocket-lint.com/news/43624/best-windows-phone-7-apps
I'm throttled on my HTC Radar (T-Mobile slowed down my Internet) and the app still downloads e articles pretty quick. I love it.
What is the diff between The trail and full version ?
HG! said:
What does the paid version do?
Click to expand...
Click to collapse
With paid version you get:
Multiple Live Tiles, you can pin any feed/folder to start
Full image caching, with Trial version the caching is limited to images of the newest 25 articles per sync
Option to change font size in article-reading
Hope this helps,
edoardo
PS: I'm the developer of Flux, with your purchase you also receive lots of Flux Love!
Thanks/ I think you can add this on the market place listing.
Second I am not able to make this app work since 4 days now. It is stuck at Syncing Subscription. Any idea ?
wpxbox said:
Second I am not able to make this app work since 4 days now. It is stuck at Syncing Subscription. Any idea ?
Click to expand...
Click to collapse
Sorry for the problem, could you please send us an email to support/@t/flux-app.com so we can further investigate the issue?
Thanks,
-E
I'm using omnia 7 and works fine, I like it Very useful, also in the trial version
I downloaded NextGen, and I guess it's all about tastes.
I found Flux satisfies me more.
@edonistart, under subscriptions- what is *misc?
For me is much better Reader2Go...
HG! said:
@edonistart, under subscriptions- what is *misc?
Click to expand...
Click to collapse
Under *misc are grouped all the subscriptions that don't belong to any folders.
I like your tastes!
-E
It seems you have issues with Google Account 2 Way authentication System. The trail version also does not work. It keeps on fetching feed with zero result.
wpxbox said:
It seems you have issues with Google Account 2 Way authentication System.
Click to expand...
Click to collapse
Thanks for reporting the problem, I'll try to implement it.
wpxbox said:
The trail version also does not work. It keeps on fetching feed with zero result.
Click to expand...
Click to collapse
Could you please send us an email to support/@t/flux-app.com so we can further investigate the issue?
Thanks,
-E
A couple of days ago I installed the software and i like it very well!!
Any update on support for Google's two way authentic ?
wpxbox said:
Any update on support for Google's two way authentic ?
Click to expand...
Click to collapse
Unfortunately we're using the Google ClientLogin Authentication, which doesn't support 2-step verification.
We'd need to adopt OAuth, maybe we'll add in a future release.
Thanks for reporting this problem!
edoardo
images not working
Hi edonistart.
I have downloaded your app Flux today as it look like a great google reader app. Their is one problem I can't get the images working on the tile view for articles or on my live tiles. How do I set this up in the settings?
Thanks
Mike
mikeegan77 said:
Their is one problem I can't get the images working on the tile view for articles or on my live tiles. How do I set this up in the settings?
Click to expand...
Click to collapse
Hi Mike, thanks for your support!
Go to settings and check these settings:
caching tab
- Cache images: wi-fi only (or always if you're not on a wi-fi)
- When not cached, download images: always
live tiles tab
Show image of newest unread: Yes
For the images to be shown, the article must have at least one image in the "preview" (the html got by the feed).
Hope this helps,
edoardo
PS: I'll follow up in email too, so to be sure that everything is working as expected.
edonistart said:
Hi Mike, thanks for your support!
Go to settings and check these settings:
caching tab
- Cache images: wi-fi only (or always if you're not on a wi-fi)
- When not cached, download images: always
live tiles tab
Show image of newest unread: Yes
For the images to be shown, the article must have at least one image in the "preview" (the html got by the feed).
Hope this helps,
edoardo
PS: I'll follow up in email too, so to be sure that everything is working as expected.
Click to expand...
Click to collapse
Sorry it didn't work, I have those settings already set. I have email you the xml file.
Evening all..
So I've had a quick look through the forums, and not really seeing much about this...
I'm finding that the stock album/gallery app, although brilliant, is really annoying me! When you load the app, it shows the "Pictures" tab.. which appears to be ALL images it finds on the device (regardless of '.nomedia' files exising) The thing I'm finding the most annoying about this, is if I send someone a photo on whatsapp, or they send me one, it shows in this pictures tab. So If I take a picture, then send it to someone, it shows up as a duplicate image. A bit frustrating because I like the app!
Has anyone found a way of making it respect .nomedia files? Coming from CM10.1 on my old phone, so used to seeing it all in different folders.. can't remember if they were hidden before or not..
Thanks!
+1
Sent from my Sony Xperia Z using Tapatalk 2!
+1 , or someone can mod it? ;D
Bump!
Sent from my C6603 using xda premium
+1 there should be an option to select which foldes are displayed in the album.
Sent from my C6603 using Tapatalk 2
maverick1103 said:
+1 there should be an option to select which foldes are displayed in the album.
Sent from my C6603 using Tapatalk 2
Click to expand...
Click to collapse
Yeah, I was thinking about where I would store white/blacklists for media if I would be ignoring the tools that have been given to me by Android OS (given the fact that they are ignoring the .nomedia files). As my phone is not rooted I am not able to explore the sqlite databases, but maybe someone with a rooted phone could have a look? It's a long shot, but it's worth trying . I'll be rooting my phone as soon as it's possible without unlocking the BL (and I know I might be waiting for a loooooong while, but it happened with the Motorola RAZR, so I figured as this device is officially unlockable developers might be able to find an exploit sooner?).
adzjwarner said:
Evening all..
So I've had a quick look through the forums, and not really seeing much about this...
I'm finding that the stock album/gallery app, although brilliant, is really annoying me! When you load the app, it shows the "Pictures" tab.. which appears to be ALL images it finds on the device (regardless of '.nomedia' files exising) The thing I'm finding the most annoying about this, is if I send someone a photo on whatsapp, or they send me one, it shows in this pictures tab. So If I take a picture, then send it to someone, it shows up as a duplicate image. A bit frustrating because I like the app!
Has anyone found a way of making it respect .nomedia files? Coming from CM10.1 on my old phone, so used to seeing it all in different folders.. can't remember if they were hidden before or not..
Thanks!
Click to expand...
Click to collapse
There is. Nomedia file in demo video folder try that file out.
Sent from my C6602 using xda app-developers app
TechGuru_x10 said:
There is. Nomedia file in demo video folder try that file out.
Sent from my C6602 using xda app-developers app
Click to expand...
Click to collapse
First thing I tried, thought maybe I was making the .nomedia file incorrectly. No dice i'm afraid!
.nomedia should work, but it might take a while before the media library does a full rescan. Reboot the phone, connect it to PC and move a file to it, ... Those things could trigger it.
Ambroos said:
.nomedia should work, but it might take a while before the media library does a full rescan. Reboot the phone, connect it to PC and move a file to it, ... Those things could trigger it.
Click to expand...
Click to collapse
Nomedia works until you add another photo to that folder
Sent from my C6603 using Tapatalk HD
the same thing is annoying me!! i came from s3 and i was using a custom rom with i don't know which album type... i've been looking all over the place for a solution or a way of porting the album from another rom or the phone!! is there any?
I also like the Album application and wish it gets "fixed"
Sony disregarding the ".nomedia" files is weird, since its android's standard way of dealing with media, although the ".nomedia" files are a really bad solution in itself since they provide no configuration options: Either you have media scanned or not (I hate having album covers appearing mixed up with my photos in the gallery, but cannot add a ".nomedia" file since that would make the system not find my music). Adding files with a specific key name in a folder manually is not a user friendly way of managing what folders to scan.
I always wondered why Android does not provide a system level interface to define what media to scan and where.
PS: The N900 provided a file where the scan paths and supported file types could be configured. I feel like android gave a step back in this regard comparing to maemo/meego.
Have you guys find out any way to hide images from Sony album app..?
hijagdeep said:
Have you guys find out any way to hide images from Sony album app..?
Click to expand...
Click to collapse
If you have a folder with pics which you don't wanna see in album app:
create a text file on PC with name .nomedia without content (nothing before the point!). Then move the text file in to this folder.
Hmm or is this only for songs??!^^ you have to try
You can also use apps to hide pics or videos like keepsafe or something.
gripfly said:
If you have a folder with pics which you don't wanna see in album app:
create a text file on PC with name .nomedia without content (nothing before the point!). Then move the text file in to this folder.
Hmm or is this only for songs??!^^ you have to try
You can also use apps to hide pics or videos like keepsafe or something.
Click to expand...
Click to collapse
This .nomedia method works till we add new picture to that folder..
After that , new image copied to that folder, shows in album app..
Sent from my Xperia ZL
hijagdeep said:
This .nomedia method works till we add new picture to that folder..
After that , new image copied to that folder, shows in album app..
Sent from my Xperia ZL
Click to expand...
Click to collapse
Aha, ok.
And then you have to delete .nomedia and take it again in? Or doesn't will hide again?
And when you restart?
We have to clear cache of album and media storage everytime to hide images in album app
Ok.. Thx for trying. Then the only thing which we can use is an app..
Gesendet von meinem C6603 mit Tapatalk
Yr, someone pls get the solution of this....
Sent from my Xperia ZL
This super annoys me to. In fact a couple of things annoy me with the app.
Here is my wish list for the Sony Album app.
1. That upon opening, it should start with the "My Albums" tab
2. That there be an option to sort photos other than date.
3. That when I want to select a wallpaper form my album app right from the home screen, I am not bombarded with the whole long list of 5000 photos. It should present me with folders to choose from.
4. If it wants to stick to displaying the "Pictures" tab as default upon opening, it should at least start with displaying only the camera album. Then a small shortcuts to enter all folders at once.
5. If it wants to stick to sorting only by date, it should at least follow the exif data of pictures. Sometimes after flashing a new ROM, I find my taken pictures in wrong orders. Most recent at the bottom and old ones at the top.
Sent from my C6603 using Tapatalk
Hello guys.
I wonder how to block some pictures/folders in my Gallery which is not taken by me.
There is different folders/pictures cames from blinkfeed or facebook.
i dont want to see this pics,
Any solution_?
alicine said:
Hello guys.
I wonder how to block some pictures/folders in my Gallery which is not taken by me.
There is different folders/pictures cames from blinkfeed or facebook.
i dont want to see this pics,
Any solution_?
Click to expand...
Click to collapse
Hide the folder..
Or put a empty text file in the folder with the name - ".nomedia.txt"
Dot in the strt iz imp...
Press thanks...
if it's helping you it must be thanked.
Sent from my GT-P3100 using xda premium
Hi
Greetings
I think its ".nomedia"
And save this file as all files in options and put into the folder which you want to hide
Sent from my HTC Sensation XE with Beats Audio Z715e using xda premium
i can hide some folders but ,
i cannot block Facebook and -My friends pictures .
shrex said:
Hi
Greetings
I think its ".nomedia"
And save this file as all files in options and put into the folder which you want to hide
Sent from my HTC Sensation XE with Beats Audio Z715e using xda premium
Click to expand...
Click to collapse
-
shrek, please let me know where is coming from Facebook pictures to gallery ?
are you rooted?
You don't need to be roted
if it's helping you it must be thanked.
Sent from my GT-P3100 using xda premium
redbull123 said:
are you rooted?
Click to expand...
Click to collapse
not yet .still virgin.
alicine said:
not yet .still virgin.
Click to expand...
Click to collapse
Cool, i found a method but root access was required. Now my gallery only shows 'My photos' and 'camera shots'.
Good luck!
Sent from my HTC One using xda premium
please could you share with us what did you do??
http://forum.xda-developers.com/showthread.php?t=2278511
You must be rooted and have a deodexed ROM though... If not then you'll break your gallery app.
thanks m8
alicine said:
please could you share with us what did you do??
Click to expand...
Click to collapse
hi
greetings,
open galary app
on the top you will have a bar (down arrow, i cannot remember) click their
you have option check albums over their ( the arrangement will change)
now click menu button and select show hide album
their you are
chose what is to be shown and what not
P.S you do not have to be rooted
shrex said:
hi
greetings,
open galary app
on the top you will have a bar (down arrow, i cannot remember) click their
you have option check albums over their ( the arrangement will change)
now click menu button and select show hide album
their you are
chose what is to be shown and what not
P.S you do not have to be rooted
Click to expand...
Click to collapse
shrex thanx for your attention .
but when i open Gallerry and push the ... button there is just "add online service" , "media servers" and "Tips&Helps" exist.
thats why i ca hide nothing.
when i join my photos and push the ... button there is "hide/show" albums.
the problem is on the Gallery floor.
there is lots of Facebook , Friends pictures.
i just want my photos and camera shoots.
alicine said:
please could you share with us what did you do??
Click to expand...
Click to collapse
I don't think the others understand exactly what you're asking...
Here's the link to my post where I asked the same question last week - the method with ES Explorer works 100%, I'm using it now - but root access and system write is required. I'm unsure about the 'engine freeze' method in Titanium Backup in one of the comments, so you could try that...
http://forum.xda-developers.com/showthread.php?p=41236599#post41236599
There's always pressing the menu in gallery main screen -> add online service -> disable Facebook. But that logs you out of Facebook and puts the pictures back once you log back in again...
redbull123 said:
I don't think the others understand exactly what you're asking...
Here's the link to my post where I asked the same question last week - the method with ES Explorer works 100%, I'm using it now - but root access and system write is required. I'm unsure about the 'engine freeze' method in Titanium Backup in one of the comments, so you could try that...
http://forum.xda-developers.com/showthread.php?p=41236599#post41236599
There's always pressing the menu in gallery main screen -> add online service -> disable Facebook. But that logs you out of Facebook and puts the pictures back once you log back in again...
Click to expand...
Click to collapse
@redbull123 i guess you are the only one who can understand what i mean
but normally we could do this without anything.why htc didnt support it
shrex said:
hi
greetings,
open galary app
on the top you will have a bar (down arrow, i cannot remember) click their
you have option check albums over their ( the arrangement will change)
now click menu button and select show hide album
their you are
chose what is to be shown and what not
P.S you do not have to be rooted
Click to expand...
Click to collapse
Yup.. Works great:good: !
alanchai said:
Yup.. Works great:good: !
Click to expand...
Click to collapse
Press back to go to the gallery homescreen. Do you still have all the facebook and friends pictures there along with 'camera shots' and 'my photos'?
Sent from my HTC One using xda premium
alicine said:
Hello guys.
I wonder how to block some pictures/folders in my Gallery which is not taken by me.
There is different folders/pictures cames from blinkfeed or facebook.
i dont want to see this pics,
Any solution_?
Click to expand...
Click to collapse
I see what you mean. I never noticed it before. I think these photos are stored online, so they don't take up phone storage (except for the first picture used in the gallery). So I really don't mind it myself.
stevedebi said:
I see what you mean. I never noticed it before. I think these photos are stored online, so they don't take up phone storage (except for the first picture used in the gallery). So I really don't mind it myself.
Click to expand...
Click to collapse
@stevedebi i guess storage keeps as thumbnail.In all case its not pretty to see someone elses pics in my Gallery when i get in there.
i have problem in pictures studio can't zoom it never (resolution: 1080x1920 , 2688x1520 ) , the problem only in studio app , another app like chrome zoom pictures work fine , and i check all settings all ok , android 4.4.3
any solutions!
ty
P.R.F.S said:
i have problem in pictures studio can't zoom it never (resolution: 1080x1920 , 2688x1520 ) , the problem only in studio app , another app like chrome zoom pictures work fine , and i check all settings all ok , android 4.4.3
any solutions!
ty
Click to expand...
Click to collapse
since your issue is only present when using that particular app, you might want to ask the dev instead of us. Doesn't looks like its related to the M7 itself. Have you tested this app on another phone to see if it have the same issue?
Can you provide a link to that app? I can't find any "pictures studio" on the play store, only "photo studio" is it the app you are talking about?
alray said:
since your issue is only present when using that particular app, you might want to ask the dev instead of us. Doesn't looks like its related to the M7 itself. Have you tested this app on another phone to see if it have the same issue?
Can you provide a link to that app? I can't find any "pictures studio" on the play store, only "photo studio" is it the app you are talking about?
Click to expand...
Click to collapse
m talking about default studio or by another name : gallery!
P.R.F.S said:
m talking about default studio or by another name : gallery!
Click to expand...
Click to collapse
ok sorry for the confusion
So you can't zoom photo when you are watching them from the default "gallery" app?
HAve you tried to clear cache of the app? Or maybe erasing the dalvik cache?
alray said:
ok sorry for the confusion
So you can't zoom photo when you are watching them from the default "gallery" app?
Exactly
HAve you tried to clear cache of the app? Or maybe erasing the dalvik cache?
is that will be delete my photo?
Click to expand...
Click to collapse
ty