Skip to content

Commit 928cc3b

Browse files
committed
1.6.0.1
1 parent 761e765 commit 928cc3b

File tree

4 files changed

+45
-7
lines changed

4 files changed

+45
-7
lines changed

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@ publish:
5555
@echo -e "Retrieved Version: ${VERSION}\n\n Hit enter if you have\n 1. Incremented the version\n 2. Updated the release notes\n\n Otherwise cancel target now."
5656
@read
5757

58-
@echo "Check"
59-
@$(MAKE) check
58+
# @echo "Check"
59+
# @$(MAKE) check
6060

6161
@$(MAKE) clean # Required as 'publishBundle' publishes all .aab's in archive dir
62-
@$(MAKE) baseline-profile
62+
@#$(MAKE) baseline-profile
6363

6464
@echo "Pushing latest changes";git add .;git commit -m "${VERSION}";git push
6565

6666
@$(MAKE) build-apk
6767
@$(MAKE) create-gh-release
6868

69-
@$(MAKE) build-aab
70-
@$(MAKE) publish-bundle
69+
# @$(MAKE) build-aab
70+
# @$(MAKE) publish-bundle
7171

7272
publish-bundle:
7373
@echo "Publish Bundle"

app/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ android {
8989
"$versionName.apk"
9090
}
9191
}
92+
dependenciesInfo {
93+
// Disables dependency metadata when building APKs.
94+
includeInApk = false
95+
// Disables dependency metadata when building Android App Bundles.
96+
includeInBundle = false
97+
}
9298
}
9399

94100
// https://www.jetbrains.com/help/kotlin-multiplatform-dev/compose-compiler.html#compose-compiler-options-dsl

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ android.nonTransitiveRClass=true
1212
android.uniquePackageNames=true
1313
android.nonFinalResIds=false
1414
# ======= Version =======
15-
version=1.6.0
16-
versionCode=61
15+
version=1.6.0.1
16+
versionCode=62

0 commit comments

Comments
 (0)