Android/iOS app product description photos - ps

What tools/application/webs do they use to make nice description photos?
e.g https://play.google.com/store/apps/details?id=com.instamag.activity
The demo pictures are very nice, any PS templates I can use?

If you want screenshots of your phone running your iOS app, I used this with excellent success:
https://itunes.apple.com/us/app/screenshot-maker-pro/id673545271?mt=8
For android, you could just use this:
http://developer.android.com/distribute/tools/promote/device-art.html

Related

React Native open Source sdk

Hi i am developing a social app using react-native.Most part is done. I want to embed a video calling feature upto 4 participants. Is there any open source sdk which i can use for this purpose?Thanks in advance.
Please try this, I have not personally tried.
https://github.com/EnableX/One-to-One-Video-Calling-Open-Source-React-Native-Application

How to share device gallery or captured images in social media like Facebook, watsapp by using titanium studio?

I want to share device gallery images to social media like (Facebook, WhatsApp, Twitter, Google+) by using Titanium Studio.
I have a button to capture the images. When image is captured i want to share that image through device supported sharing applications.
There are several ways to do this:
Use built-in modules like Facebook. See more in Appcelerator documentation
Use some of the modules created by others, e.g. social.napp.dk - you can also browse/search for more options on gitt.io :-)
/John

dropbox ios api - get thumbnails of all photos

I'm trying to implement my own dropbox photo chooser for iPhone, using dropBox SDK. I can't use the normal chooser because I have a different design.
At the moment I'm succeeding only in receiving meta data for all images, but I can't get thumbnails at all.
Is it a possible thing to do? thanks.
THis is probaby way too late but the new sdk has thumbail batch downloads.
Search for "GetThumbnailBatch" in the code.

How do access native APIs with Sencha Touch?

If I wanted to create a mobile app that allows the user to take pictures with their phone, record audio notes and record video, how would I do that?
I was browsing through the Sencha Touch 2 API and while I see documentation on video and audio files, it seems like it is just providing a way for me to access files stored on the phone - not actual triggers to record, or take pictures.
Am I missing something?
How would I do what I want?
In order for Sencha Touch to have access to your phone capabilities, you need to use a product like Phone Gap
Unless there is a HTML5 api for doing those sorts of things I don't think you can do that. I know on PhoneGap there are native extensions added into that platform for access to things like microphone, camera, etc. I don't know if Sencha Touch has added any of those sorts of extensions in order for you do this.
Just thinking out of the box here, but you might be able to put Sencha javascript into a Web View from within an Android Java process. Then the Java code could expose an object in its process as an extension point to the Javascript engine for access to Camera, Microphone, what not.

Play brightcove videos

I want to play a remote video hosted in Brightcove. As Brightcove URLs are links to players not direct links to video files the AVPlayer won't do it.
I know Brightcove provides an API but can't find any good examples for iOS nor documentation.
Any help/pointing direction appreciated.
I haven't used Brightcove, but poking around their site, I see they have two APIs: a Player API and a Media API. It sounds like the Media API is what you want — it's documented as giving direct references to the videos. The page has a link to several examples.
You can also lift alot of the code from their Oneplanet demo source. In fact the whole playlist and video player mechanism can be practically copied into your project so all you need to do is pass a video or playlist ID into their initwithnibandplaylist function in their view controller and you're good to go.
I hope this helps your question. There is a renditions which contain direct video link.
Here is a link for api link.
http://support.brightcove.com/en/video-cloud/docs/accessing-video-content-media-api
renditions is a javascript object containing multiple video links based on resolutions such as 360,460, 720.
You can find the direct link to the video via the media api, bypassing the player API entirely. You need a pro account and a token:
http://support.brightcove.com/en/docs/getting-started-media-api
Alternatively, you can create a simple "player" without any controls (just a video window actually) and make your own HTML controls totally outside of Brightcove to trigger almost anything you'd want to do via the player API.
There is also a Brightcove iOS SDK. It is really two SDKs one for the Media API and one that includes a MediaPlayer. If you want to use the AVPlayer you can use the Media API iOS SDK. Here is the docs for that:
http://docs.brightcove.com/en/video-cloud/mobile-sdks/brightcove-player-sdk-for-ios