How to link to apps on the app store for song download - ios7

I am creating music App in which I want to give the download song functionality.
On download button click a alerts comes up which have buy song option,on buy song it will move to iTunes.

Related

How to customize the main store listing in the google console?

I have question is their way to customize the main store listing? I want to remove the table requirements because the app want to apply on the phone devices not in the tablet devices.
I read some articles or post that I need to go this section in the google console.
Reach and devices -> Device Catalog
You can limit your app to Phones only from the app manifest for more on this see this answer.
for Google Play store listing, you can add 1 screenshot for each tablet size using a phone screen shot, in that way you will only target phones.
the problem with "Device Catalog" approach that you will need to do this every time new devices were added to google play console which is very hard to do.

How to pass the MediaLibrary to the AudioService and start playing from specific song in flutter

I have all the UI and logic to read songs from the device and I made my own loagic for playlists because android 10 has a bug. Anyways, so I'm looking on the audio_service package. The example has it all, but the Media library is hardcoded. Despite the name I can imagine this as Playlist with a list of songs.
How can I pass the playlist chosen to play. Maybe Shared preferences?
And another question: Is there a way from which song to start playing the playlist?

Can I put a live photo into the iOS Simulator?

I want to create an app to display a live photo. But I don't have an iPhone 6S. Is there a opportunity to put a live photo into the iOS Simulator?
Thanks!
The interface has improved greatly since this was originally asked/answered. It's now very easy to do this.
Go to Photos App and find the LivePhoto(s) you want to put on your (simulated) device.
Select the photo(s), go to File-> Export-> Export Unmodified Original For n Photo....
The saved files will be exported to your Desktop. There will be two files for each LivePhoto.
Drag both files (for each live photo) onto the simulator device.
LivePhotos are created and automatically placed in your simulated device's photo gallery.
Original Answer:
This is how I did it. Using the PhotosUI interface, my app asks for a LivePhoto. Using the PHAsset it gives me, I save a local copy of the .mov file and the high quality .png image. These two files are the "LivePhoto".
In Xcode, I go to Devices with my phone connected, select the app, click on the settings cog icon at the bottom and select download container. Go to Finder, right click on the .xcappdata file I just downloaded, select ShowPackageContents and the files are where I wrote them. I drag them into the app (Xcode is open - drop them on the navigator pane on the left), and they will be added to the app's bundle.
It is possible to put live photo into simulator, You need a video file, and an image file (because a Live photo is a combination of these two). And then using Photos Framework, you can save the live photo in gallery
PHPhotoLibrary.shared().performChanges({
let request = PHAssetCreationRequest.forAsset()
request.addResource(with: .photo, fileURL: imageUrl, options: nil)
request.addResource(with: .pairedVideo, fileURL: videoUrl, options: nil)
}) { (success, error) in
print(success)
print(error?.localizedDescription ?? "error")
}
The only way I've found is pretty clumsy: Get a live photo into your iCloud photo stream, then connect your simulator to your iCloud account. The live photos will then be available in your simulator's photo library.
As you might expect, the "get a live photo..." step can be tricky--you may need a friend with an iPhone 6s/6s+ to iMessage you one. Although some services like Facebook and Google Photos support Live Photo viewing in-app, they don't appear to support downloading them to your Photo Library while retaining their live-ness.

Image not showing up with other hashtagged images and Gramblr

I am not a developer but I am a university researcher studying informal education through social media.
Recently I just had my account disabled when I tested the application gramblr for uploading photos to Instagram. As I have a few members of my learning community who wanted to participate but could not afford a smartphone I wanted to find them alternate options.
Presently anything I upload and tag does not show up amidst other images with the same tag.
This is a big problem as I am the lead researcher and the community organizer, and I lead through example, as well as create various educational avenues through the use of tags.
Please help me to resolve this issue as soon as is possible.
Thank you
-Lily
I was having the same problem. Gramblr actually broke my Instagram account. I had to delete it and start with a new account. Here is how I figured out how to upload photos from my PC with no smart phone:
1 - Download and install BlueStacks: http://www.bluestacks.com/ When running, this program will produce an environment in which you can run popular apps on your computer.
2 - Search for the Instagram app within the BlueStacks App Player & install it. Also search for the Roots Browser app and install it as well (you'll use this app to upload photos from your computer.)
3 - Open Instagram inside BlueStacks & either register a new account or sign in with an existing one.
4 - Open the Roots Browser app and navigate to the desired folder where you will be storing images copied from your computer. I chose SD Card > Pictures. Pull the image(s) into the folder & drop it. It will ask you where you want to send it - choose Instagram.
5 - Open the Instagram app. To upload photos from your computer you must go into the Instagram settings (maybe under Advanced Settings) and disable/uncheck the Instagram camera. In the lastest updates the placement of this checkbox option has changed, so it may take some looking around to find it.
6 - In the Instagram app, click on the camera icon to upload a photo. Choose gallery & then navigate through your Root Browser to the folder where you dragged in your chosen image(s). Choose an image.
7 - Post as you would normally by following the prompts/icons to progress.
I ran into 1 more issue. It turns out that my BlueStacks Instagram app would get stuck after choosing the photo & trying to continue with posting. The screen would turn black & nothing happened for a very long time. I ended up having to update my graphics card drivers & that fixed the problem. If you need help updating your graphics card driver(s) see the http://www.ma-config.com/en website. It will help you to figure out what drivers can be updated. You'll have to download the proper version for your computer operating system & install it on your computer. Double click the icon on your desktop after installation to run it & then hit the refresh button in the browser on the ma-config website. Follow prompts to download drivers needed.
This is the method that worked for me. There are several other methods if you search YouTube with combinations of words including BlueStack & Instagram.
Blue stacks has tons of adware/malware etc. according to my security software, the better work around is dropbox. Put the image in drop box on your computer, then on your phone select your photo from dropbox. A bit long winded but it works.

How do I add a song to itunes using Applescript and make a vote for it?

Since iTunes 8.1 has iTunes DJ I want to be able to upload songs from one of my computers to another that runs iTunes 8.1, and add these to the Library on iTunes. After that, I want to make that song the next song in iTunes, but only if no other song has been "requested" more times through the Apple Remote application.
Doug's AppleScripts for iTunes has a script called Play Album Next In Party Shuffle. It seems like a good jumping-off point. iTunes DJ and Party Shuffle are apparently the same thing as far as scripts are concerned.