-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create app-store-family-sharing.html
- Loading branch information
Showing
1 changed file
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="description" content="How to Share App Store Purchases with Family"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="canonical" href="http://tsachev.us/blog/dad-hack-app-store-family-sharing" /> | ||
<style> | ||
body { | ||
line-height: 1.6; | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; | ||
font-size: 17px; | ||
color: #2d3748; | ||
padding: 0 20px; | ||
margin: 0; | ||
background-color: #fff; | ||
} | ||
#maincontent { | ||
max-width: 680px; | ||
margin: 60px auto; | ||
padding: 0 20px; | ||
} | ||
h1, h2 { | ||
line-height: 1.2; | ||
} | ||
h1 { | ||
font-size: 2em; | ||
margin-bottom: 0.5em; | ||
font-weight: 600; | ||
} | ||
.date { | ||
color: #4a5568; | ||
margin-bottom: 2em; | ||
} | ||
ul { | ||
padding-left: 1.5em; | ||
margin-bottom: 1.5em; | ||
} | ||
li { | ||
margin-bottom: 0.5em; | ||
} | ||
a { | ||
color: #2b6cb0; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
} | ||
.back-link { | ||
margin-top: 3em; | ||
padding-top: 1em; | ||
border-top: 1px solid #e2e8f0; | ||
} | ||
</style> | ||
<title>Dad Hack: How to Share App Store Purchases with Family</title> | ||
</head> | ||
<body> | ||
<div id="maincontent"> | ||
<h1>Dad Hack: How to Actually Share App Store Purchases with Your Family</h1> | ||
<div class="date">Mar 2025</div> | ||
|
||
<p>Found myself in a classic parent moment yesterday. My older daughter wanted to learn Minecraft on her iPad, so I bought it for $6.99. When my younger one predictably wanted it too, the App Store presented me with the option to buy it again.</p> | ||
|
||
<p>After Reddit search, I found the solution:</p> | ||
|
||
<ol> | ||
<li>Open the App Store on your iOS device</li> | ||
<li>Tap your account icon in the upper right corner</li> | ||
<li>Select "Apps"</li> | ||
<li>Choose the family member account where you originally bought the app</li> | ||
<li>Find the app and tap the cloud icon to download (no second payment needed!)</li> | ||
</ol> | ||
|
||
<p>Seems obvious in hindsight, but Apple doesn't make this clear at all. This works for any app eligible for Family Sharing, not just Minecraft.</p> | ||
|
||
<div class="back-link"> | ||
<a href="/">← Home</a> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |