Skip to content

Commit 2ab8fd1

Browse files
authored
Merge pull request #1618 from NativeScript/vmutafov/release-into-master
Release into master
2 parents fa31074 + 94c54c8 commit 2ab8fd1

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
6.5.1
2+
==
3+
4+
## Bug Fixes
5+
6+
- [Cleanup of warnings / possible not checked nullpointers (#1610)](https://github.com/NativeScript/android-runtime/pull/1610)
7+
8+
- [[metadata] not rebuilding on json api usage change (#1589)](https://github.com/NativeScript/android-runtime/issues/1589)
9+
10+
111
6.5.0
212
==
313

build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ for emulator in $listOfEmulators; do
5555
find ~/.android/avd/${emulator}.avd -type f -name 'config.ini' -exec cat {} +
5656

5757
echo "Run Android Runtime unit tests for $emulator"
58-
$ANDROID_HOME/platform-tools/adb devices
59-
$ANDROID_HOME/platform-tools/adb -e logcat -c
60-
$ANDROID_HOME/platform-tools/adb -e logcat > consoleLog.txt&
61-
$ANDROID_HOME/platform-tools/adb -e logcat > consoleLog$emulator.txt&
58+
$ANDROID_HOME/platform-tools/adb wait-for-device
59+
$ANDROID_HOME/platform-tools/adb -s emulator-5554 logcat -c
60+
$ANDROID_HOME/platform-tools/adb -s emulator-5554 logcat > consoleLog.txt&
61+
$ANDROID_HOME/platform-tools/adb -s emulator-5554 logcat > consoleLog$emulator.txt&
6262

6363
if [ "$1" != 'unit_tests_only' ]; then
6464
./gradlew runtests

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tns-android",
33
"description": "NativeScript Runtime for Android",
4-
"version": "6.5.0",
4+
"version": "6.6.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/NativeScript/android-runtime.git"

0 commit comments

Comments
 (0)