mirror of
https://github.com/bbara04/Purefin.git
synced 2026-03-31 17:10:08 +02:00
feat: make prerequisits for app publication
This commit is contained in:
@@ -17,8 +17,8 @@ android {
|
||||
applicationId = "hu.bbara.purefin.tv"
|
||||
minSdk = 29
|
||||
targetSdk = 36
|
||||
versionCode = 1
|
||||
versionName = "1.0"
|
||||
versionCode = 2000001
|
||||
versionName = "0.1"
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
@@ -11,11 +11,12 @@
|
||||
android:required="false" />
|
||||
<uses-feature
|
||||
android:name="android.software.leanback"
|
||||
android:required="false" />
|
||||
android:required="true" />
|
||||
|
||||
<application
|
||||
android:name=".TvApplication"
|
||||
android:allowBackup="true"
|
||||
android:banner="@drawable/banner"
|
||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||
android:fullBackupContent="@xml/backup_rules"
|
||||
android:icon="@mipmap/purefin_logo"
|
||||
@@ -30,7 +31,6 @@
|
||||
android:theme="@style/Theme.Purefin">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
||||
</intent-filter>
|
||||
|
||||
16
app-tv/src/main/res/drawable/banner.xml
Normal file
16
app-tv/src/main/res/drawable/banner.xml
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape android:shape="rectangle">
|
||||
<solid android:color="#3DDC84" />
|
||||
</shape>
|
||||
</item>
|
||||
<item
|
||||
android:gravity="center"
|
||||
android:height="140dp"
|
||||
android:width="140dp">
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/purefin_logo_foreground" />
|
||||
</item>
|
||||
</layer-list>
|
||||
Reference in New Issue
Block a user