This commit is contained in:
Felix 2020-04-23 21:15:49 +02:00
parent b68468797d
commit 7b9dcdfd2f
2 changed files with 16 additions and 8 deletions

View file

@ -1,6 +1,10 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
id 'kotlin-android-extensions'
// id 'com.github.triplet.play' version '2.6.2'
}
String appName = "Chaosflix"
String versionString = new File("versionfile").text.trim()
@ -94,6 +98,7 @@ configurations {
}
dependencies {
implementation project(':touch')
implementation project(':leanback')
// implementation project(':touch')
// implementation project(':leanback')
implementation project(':common')
}

View file

@ -1,14 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.nicidienase.chaosflix.app">
xmlns:tools="http://schemas.android.com/tools"
package="de.nicidienase.chaosflix">
<application
android:name="de.nicidienase.chaosflix.ChaosflixApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:label="${label}"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
</application>