Skip to content

Commit 06f1d06

Browse files
committed
chore: release 8.5.0-alpha.1
1 parent 1f0f025 commit 06f1d06

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

build.dev.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env bash
2+
# smaller version of build.sh that sets the commit hash to the current git commit hash and uses the package.json version
3+
4+
echo "Ensure adb is in PATH"
5+
export PATH="$ANDROID_HOME/platform-tools:$PATH"
6+
adb version
7+
8+
echo "Update submodule"
9+
git submodule update --init
10+
11+
echo "Cleanup old build and test artefacts"
12+
rm -rf consoleLog.txt
13+
rm -rf test-app/dist/*.xml
14+
15+
./gradlew cleanRuntime
16+
17+
./gradlew -PgitCommitVersion=$(git rev-parse HEAD)
18+
cp dist/nativescript-android-*.tgz dist/nativescript-android.tgz
19+

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@nativescript/android",
33
"description": "NativeScript for Android using v8",
4-
"version": "8.4.0",
4+
"version": "8.5.0-alpha.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/NativeScript/android.git"
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define NATIVE_SCRIPT_RUNTIME_VERSION "8.4.0-alpha.6"
2-
#define NATIVE_SCRIPT_RUNTIME_COMMIT_SHA "no commit sha was provided by build.gradle build"
1+
#define NATIVE_SCRIPT_RUNTIME_VERSION "0.0.0.0"
2+
#define NATIVE_SCRIPT_RUNTIME_COMMIT_SHA "RUNTIME_COMMIT_SHA_PLACEHOLDER"

0 commit comments

Comments
 (0)