Skip to content

Commit 7c9f63c

Browse files
authored
Release 55.8.1 (#112)
* Release 55.8.1
1 parent 490267e commit 7c9f63c

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

AnylineExamples/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44
}
55

66
ext {
7-
anylinesdk_version = "55.7.1"
7+
anylinesdk_version = "55.8.1"
88
timber_version = "5.0.1"
99
leakcanary_version = "2.9.1"
1010

1111
anyline_examples_version_code = 13
12-
anyline_examples_version_name = "55.7.1"
12+
anyline_examples_version_name = "55.8.1"
1313
}
1414

1515
android {

AnylineExamples/app/src/main/res/values/strings_license.xml.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
Option 2: Manual setup
1414
1. Copy this file to strings_license.xml (same directory)
1515
2. Replace YOUR_LICENSE_KEY_HERE with your actual license key
16+
3. Delete this file
1617
1718
Get your license key at: https://documentation.anyline.com/main-component/license-key-generation.html
1819
-->

AnylineExamples/scripts/generate_license_key.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,10 @@ cat > "$OUTPUT_FILE" << EOF
2828
EOF
2929

3030
echo "Generated $OUTPUT_FILE with license key"
31+
32+
# Remove the .example file as it's not allowed in res/values folder
33+
EXAMPLE_FILE="$SCRIPT_DIR/../app/src/main/res/values/strings_license.xml.example"
34+
if [ -f "$EXAMPLE_FILE" ]; then
35+
rm "$EXAMPLE_FILE"
36+
echo "Removed $EXAMPLE_FILE"
37+
fi

0 commit comments

Comments
 (0)