-3

I downloaded an app onto my phone and the app features some nice images, which I would like to download for my own use (not breaking any copyright issues).

Is there any way to access the app's drawable folders and save the images?

CodyBugstein
  • 21,984
  • 61
  • 207
  • 363
  • If the app is FOSS, then you might already be able to access the images under a free license. If not you will have to contact the developer as @Laps has mentioned. – Ed_Fernando Oct 03 '14 at 11:37
  • 1
    Designers spends their time to make images and designs. You shouldn't take someone's Time Consuming and hard work just like that. – Jigar Oct 03 '14 at 11:47
  • @Jigar Thank you for the preaching, but I do not "take" anyone's hard work "just like that" – CodyBugstein Oct 03 '14 at 12:05

1 Answers1

3

Not without decompiling the .apk file. I think your best bet would be to contact the developer and ask him for the images. If it isn't breaking copyright or anything (s)he might just send it to you.

Lars de Bruijn
  • 1,430
  • 10
  • 15
  • "Not without decompiling the .apk file." - This is not true. It is possible to access other packages' Resources programmatically. – Mike M. Oct 03 '14 at 12:17