Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/wear-os-hex-editor-watchface.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-03-15 11:35:31 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-03-15 11:35:31 +0300
commit84baa17a62e39aa7bc05f9685faa65ca18128e16 (patch)
treeff73d4bec03694c1f2e452929e677d3f7bae0ece
parent3b96ceeb90bb4efc098fd3af645021655511ea5d (diff)
Minor fixes
-rw-r--r--.gitignore1
-rw-r--r--app/build.gradle7
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index eb96297..9961c4f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -85,3 +85,4 @@ lint/tmp/
# lint/reports/
.idea
+*.jar
diff --git a/app/build.gradle b/app/build.gradle
index 073654a..5b62b2b 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -20,6 +20,13 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
+
+ applicationVariants.all { variant ->
+ variant.outputs.all { output ->
+ def formattedDate = new Date().format('yyMMdd-HHmmss')
+ outputFileName = "HexEditorWatchface-v${defaultConfig.versionCode}-${formattedDate}.apk"
+ }
+ }
}
dependencies {