Skip to content

Commit 1ba16a7

Browse files
committed
tv support
1 parent 727ebac commit 1ba16a7

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

.idea/deploymentTargetSelector.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId = "com.caniwebview.android"
1212
minSdk = 24
1313
targetSdk = 35
14-
versionCode = 2
15-
versionName = "0.0.2"
14+
versionCode = 3
15+
versionName = "0.0.3"
1616

1717
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1818
}

app/src/main/AndroidManifest.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@
44

55
<uses-permission android:name="android.permission.INTERNET" />
66

7+
<uses-feature
8+
android:name="android.software.leanback"
9+
android:required="false" />
10+
<uses-feature
11+
android:name="android.hardware.touchscreen"
12+
android:required="false" />
13+
714
<application
815
android:allowBackup="true"
16+
android:banner="@drawable/ic_baseline_android_24"
917
android:dataExtractionRules="@xml/data_extraction_rules"
1018
android:fullBackupContent="@xml/backup_rules"
1119
android:icon="@mipmap/ic_launcher"
@@ -20,8 +28,8 @@
2028
android:label="@string/app_name">
2129
<intent-filter>
2230
<action android:name="android.intent.action.MAIN" />
23-
2431
<category android:name="android.intent.category.LAUNCHER" />
32+
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
2533
</intent-filter>
2634
</activity>
2735
</application>

0 commit comments

Comments
 (0)