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

View file

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