summaryrefslogtreecommitdiff
path: root/docs/posts/2020-03-03-Playing-With-Android-TV.html
blob: f783e50a755d1fa972963bf78dbce5a9016bd5df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
    
    <link rel="stylesheet" href="https://unpkg.com/latex.css/style.min.css" />
    <link rel="stylesheet" href="/assets/main.css" />
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Tinkering with an Android TV</title>
    <meta name="og:site_name" content="Navan Chauhan" />
    <link rel="canonical" href="https://web.navan.dev/" />
    <meta name="twitter:url" content="https://web.navan.dev/" />
    <meta name="og:url" content="https://web.navan.dev/" />
    <meta name="twitter:title" content="Tinkering with an Android TV" />
    <meta name="og:title" content="Tinkering with an Android TV" />
    <meta name="description" content="Tinkering with an Android TV" />
    <meta name="twitter:description" content="Tinkering with an Android TV" />
    <meta name="og:description" content="Tinkering with an Android TV" />
    <meta name="twitter:card" content="summary_large_image" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="shortcut icon" href="/images/favicon.png" type="image/png" />
    <link rel="alternate" href="/feed.rss" type="application/rss+xml" title="Subscribe to Navan Chauhan" />
    <meta name="twitter:image" content="https://web.navan.dev/images/opengraph/posts/2020-03-03-Playing-With-Android-TV.png" />
    <meta name="og:image" content="https://web.navan.dev/images/opengraph/posts/2020-03-03-Playing-With-Android-TV.png" />
    <link rel="manifest" href="manifest.json" />
    <meta name="google-site-verification" content="LVeSZxz-QskhbEjHxOi7-BM5dDxTg53x2TwrjFxfL0k" />
    <script data-goatcounter="https://navanchauhan.goatcounter.com/count"
        async src="//gc.zgo.at/count.js"></script>
    <script defer data-domain="web.navan.dev" src="https://plausible.io/js/plausible.js"></script>
    
</head>
<body>
    <nav style="display: block;">
|
<a href="/">home</a> |
<a href="/about/">about/links</a> |
<a href="/posts/">posts</a> |
<a href="/publications/">publications</a> |
<a href="/repo/">iOS repo</a> |
<a href="/feed.rss">RSS Feed</a> |
</nav>
    
<main>

	<h1>Tinkering with an Android TV</h1>

<p>So I have an Android TV, this posts covers everything I have tried on it</p>

<h2>Contents</h2>

<ol>
<li><a href="#IP-Address">Getting TV's IP Address</a></li>
<li><a href="#Developer-Settings">Enable Developer Settings</a></li>
<li><a href="#Enable-ADB">Enable ADB</a></li>
<li><a href="#Connect-ADB">Connect ADB</a></li>
<li><a href="#">Manipulating Packages</a></li>
</ol>

<h2>IP-Address</h2>

<p><em>These steps should be similar for all Android-TVs</em></p>

<ul>
<li>Go To Settings</li>
<li>Go to Network</li>
<li>Advanced Settings</li>
<li>Network Status</li>
<li>Note Down IP-Address</li>
</ul>

<p>The other option is to go to your router's server page and get connected devices</p>

<h2>Developer-Settings</h2>

<ul>
<li>Go To Settings</li>
<li>About</li>
<li>Continously click on the "Build" option until it says "You are a Developer"</li>
</ul>

<h2>Enable-ADB</h2>

<ul>
<li>Go to Settings</li>
<li>Go to Developer Options</li>
<li>Scroll untill you find ADB Debugging and enable that option</li>
</ul>

<h2>Connect-ADB</h2>

<ul>
<li>Open Terminal (Make sure you have ADB installed)</li>
<li>Enter the following command <code>adb connect &lt;IP_ADDRESS&gt;</code></li>
<li>To test the connection run <code>adb logcat</code></li>
</ul>

<h2>Manipulating Apps / Packages</h2>

<h3>Listing Packages</h3>

<ul>
<li><code>adb shell</code></li>
<li><code>pm list packages</code></li>
</ul>

<h3>Installing Packages</h3>

<ul>
<li><code>adb install -r package.apk</code></li>
</ul>

<h3>Uninstalling Packages</h3>

<ul>
<li><code>adb uninstall com.company.yourpackagename</code></li>
</ul>

	<blockquote>If you have scrolled this far, consider subscribing to my mailing list <a href="https://listmonk.navan.dev/subscription/form">here.</a> You can subscribe to either a specific type of post you are interested in, or subscribe to everything with the "Everything" list.</blockquote>
	<script data-isso="//comments.navan.dev/"
        src="//comments.navan.dev/js/embed.min.js"></script>
	<section id="isso-thread">
	    <noscript>Javascript needs to be activated to view comments.</noscript>
	</section>
</main>


<script src="assets/manup.min.js"></script>
<script src="/pwabuilder-sw-register.js"></script>    
</body>
</html>