mirror of
https://github.com/thelinkin3000/SonicLair.git
synced 2026-01-07 14:48:47 -05:00
This adds performance on Android TV, a lot of TVs use somewhat limited cpus or lack ram, therefore Capacitor lagged a lot, even on somewhat high-end devices like the Chromecast with Google TV.
33 lines
810 B
Groovy
33 lines
810 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.7.0-RC'
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.2.1'
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0"
|
|
classpath("com.google.dagger:hilt-android-gradle-plugin:2.38.1")
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
apply from: "variables.gradle"
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|