Update gradle

pull/590/head
jhengazuki 4 months ago
parent b9b712891a
commit c2f0c0cad6
  1. 7
      app/build.gradle
  2. 4
      catvod/build.gradle
  3. 7
      chaquo/build.gradle
  4. 4
      quickjs/build.gradle
  5. 2
      settings.gradle

@ -5,8 +5,9 @@ plugins {
android {
namespace 'com.fongmi.android.tv'
compileSdk 36
flavorDimensions = ["mode", "abi"]
compileSdk {
version = release(36)
}
defaultConfig {
applicationId "com.fongmi.android.tv"
@ -22,6 +23,8 @@ android {
}
}
flavorDimensions = ["mode", "abi"]
productFlavors {
leanback {
dimension "mode"

@ -5,7 +5,9 @@ plugins {
android {
namespace 'com.github.catvod.crawler'
compileSdk 36
compileSdk {
version = release(36)
}
defaultConfig {
minSdk 24

@ -6,8 +6,9 @@ plugins {
android {
namespace 'com.fongmi.chaquo'
compileSdk 36
flavorDimensions = ["abi"]
compileSdk {
version = release(36)
}
defaultConfig {
minSdk 24
@ -20,6 +21,8 @@ android {
}
}
flavorDimensions = ["abi"]
productFlavors {
arm64_v8a {
dimension "abi"

@ -5,7 +5,9 @@ plugins {
android {
namespace 'com.fongmi.android.tv.quickjs'
compileSdk 36
compileSdk {
version = release(36)
}
defaultConfig {
minSdk 24

@ -2,7 +2,6 @@ pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
jcenter()
google()
}
}
@ -10,7 +9,6 @@ dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
jcenter()
google()
flatDir { dirs "$rootDir/app/libs" }
maven { url "https://jitpack.io" }

Loading…
Cancel
Save