Bundle wear app (#3074)

pull/3054/head
Alex Baker 1 year ago committed by GitHub
parent 105757af53
commit b583d04e8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -44,4 +44,6 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: release
path: app/build/outputs/**
path: |
app/build/outputs/**
wear/build/outputs/**

@ -13,6 +13,8 @@ class Firebase @Inject constructor() {
fun addTask(source: String) {}
fun completeTask(source: String) {}
val subscribeCooldown = false
val moreOptionsBadge = false
val moreOptionsSolid = false

@ -44,7 +44,7 @@ platform :android do
desc "Bundle"
lane :bundle do
gradle(
task: "bundleGoogleplayRelease",
task: "app:bundleGoogleplayRelease wear:bundleRelease",
properties: {
"tasksKeyAlias": ENV["KEY_ALIAS"],
"tasksStoreFile": ENV["KEY_PATH"],

@ -17,13 +17,28 @@ android {
versionName = "1.0"
}
signingConfigs {
create("release") {
val tasksKeyAlias: String? by project
val tasksStoreFile: String? by project
val tasksStorePassword: String? by project
val tasksKeyPassword: String? by project
keyAlias = tasksKeyAlias
storeFile = file(tasksStoreFile ?: "none")
storePassword = tasksStorePassword
keyPassword = tasksKeyPassword
}
}
buildTypes {
release {
isMinifyEnabled = false
isMinifyEnabled = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
signingConfig = signingConfigs.getByName("release")
}
}
compileOptions {

Loading…
Cancel
Save