Skip to content

Commit

Permalink
Merge branch 'main' into feat/ada-url-y-search-params
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker authored Mar 28, 2024
2 parents 152c1ae + f43f591 commit a0539cf
Show file tree
Hide file tree
Showing 7 changed files with 439 additions and 240 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nativescript/android",
"description": "NativeScript for Android using v8",
"version": "8.7.0-alpha.1",
"version": "8.7.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/android.git"
Expand Down
622 changes: 409 additions & 213 deletions test-app/runtime/src/main/cpp/include/zip.h

Large diffs are not rendered by default.

55 changes: 29 additions & 26 deletions test-app/runtime/src/main/cpp/include/zipconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,44 +4,47 @@
/*
zipconf.h -- platform specific include file
This file was generated automatically by ./make_zipconf.sh
based on ../config.h.
This file was generated automatically by CMake
based on ../cmake-zipconf.h.in.
*/

#define LIBZIP_VERSION "0.11"
#define LIBZIP_VERSION_MAJOR 0
#define LIBZIP_VERSION_MINOR 11
#define LIBZIP_VERSION_MICRO 2
#define LIBZIP_VERSION "1.10.1"
#define LIBZIP_VERSION_MAJOR 1
#define LIBZIP_VERSION_MINOR 10
#define LIBZIP_VERSION_MICRO 1

#define ZIP_STATIC



#if !defined(__STDC_FORMAT_MACROS)
#define __STDC_FORMAT_MACROS 1
#endif
#include <inttypes.h>

typedef int8_t zip_int8_t;
#define ZIP_INT8_MIN INT8_MIN
#define ZIP_INT8_MAX INT8_MAX

typedef uint8_t zip_uint8_t;
#define ZIP_UINT8_MAX UINT8_MAX

typedef int16_t zip_int16_t;
#define ZIP_INT16_MIN INT16_MIN
#define ZIP_INT16_MAX INT16_MAX

typedef uint16_t zip_uint16_t;
#define ZIP_UINT16_MAX UINT16_MAX

typedef int32_t zip_int32_t;
#define ZIP_INT32_MIN INT32_MIN
#define ZIP_INT32_MAX INT32_MAX

typedef uint32_t zip_uint32_t;
#define ZIP_UINT32_MAX UINT32_MAX

typedef int64_t zip_int64_t;
#define ZIP_INT64_MIN INT64_MIN
#define ZIP_INT64_MAX INT64_MAX

typedef uint64_t zip_uint64_t;
#define ZIP_UINT64_MAX UINT64_MAX

#define ZIP_INT8_MIN (-ZIP_INT8_MAX-1)
#define ZIP_INT8_MAX 0x7f
#define ZIP_UINT8_MAX 0xff

#define ZIP_INT16_MIN (-ZIP_INT16_MAX-1)
#define ZIP_INT16_MAX 0x7fff
#define ZIP_UINT16_MAX 0xffff

#define ZIP_INT32_MIN (-ZIP_INT32_MAX-1L)
#define ZIP_INT32_MAX 0x7fffffffL
#define ZIP_UINT32_MAX 0xffffffffLU

#define ZIP_INT64_MIN (-ZIP_INT64_MAX-1LL)
#define ZIP_INT64_MAX 0x7fffffffffffffffLL
#define ZIP_UINT64_MAX 0xffffffffffffffffULL

#endif /* zipconf.h */
#endif /* zipconf.h */
Binary file modified test-app/runtime/src/main/libs/arm64-v8a/libzip.a
Binary file not shown.
Binary file modified test-app/runtime/src/main/libs/armeabi-v7a/libzip.a
Binary file not shown.
Binary file modified test-app/runtime/src/main/libs/x86/libzip.a
Binary file not shown.
Binary file modified test-app/runtime/src/main/libs/x86_64/libzip.a
Binary file not shown.

0 comments on commit a0539cf

Please sign in to comment.