pull/2351/head
kunfei 2 years ago
parent 8ee74daf8d
commit 59455bba41
  1. 7
      app/build.gradle
  2. 1
      epublib/build.gradle

@ -17,7 +17,6 @@ def gitCommits = Integer.parseInt('git rev-list HEAD --count'.execute().text.tri
android { android {
compileSdk 33 compileSdk 33
buildToolsVersion "33.0.0"
namespace 'io.legado.app' namespace 'io.legado.app'
kotlinOptions { kotlinOptions {
jvmTarget = "11" jvmTarget = "11"
@ -92,16 +91,16 @@ android {
} }
} }
flavorDimensions "mode" flavorDimensions.add("mode")
productFlavors { productFlavors {
app { app {
dimension "mode" dimension "mode"
manifestPlaceholders = [APP_CHANNEL_VALUE: "app"] manifestPlaceholders.put("APP_CHANNEL_VALUE", "app")
} }
google { google {
dimension "mode" dimension "mode"
applicationId "io.legado.play" applicationId "io.legado.play"
manifestPlaceholders = [APP_CHANNEL_VALUE: "google"] manifestPlaceholders.put("APP_CHANNEL_VALUE", "google")
} }
} }
compileOptions { compileOptions {

@ -4,7 +4,6 @@ plugins {
android { android {
compileSdk 33 compileSdk 33
//buildToolsVersion '32.0.0'
namespace 'me.ag2s.epublib' namespace 'me.ag2s.epublib'
defaultConfig { defaultConfig {
minSdk 21 minSdk 21

Loading…
Cancel
Save