-
Notifications
You must be signed in to change notification settings - Fork 957
/
Copy pathgradle.properties
137 lines (122 loc) · 3.47 KB
/
gradle.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# Tencent is pleased to support the open source community by making
# Hippy available.
#
# Copyright (C) 2019 THL A29 Limited, a Tencent company.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
android.enableJetifier=true
android.useAndroidX=true
android.disableAutomaticComponentCreation=true
org.gradle.jvmargs = -Xms1024m -Xmx4096m
org.gradle.warning.mode=all
#
# Specifies Android archives base name
#
# Equals to setting android.archivesBaseName property in the build.gradle file.
# Default is android-sdk
#
ARCHIVES_BASE_NAME=android-sdk
#
# Specifies CMake version
#
# Equals to setting android.externalNativeBuild.cmake.version property in the build.gradle file.
# Default is 3.22.1
#
CMAKE_VERSION=3.22.1
#
# Specifies Android NDK version
#
# Equals to setting android.ndkVersion property in the build.gradle file.
# Default is 25.0.8775105
#
NDK_VERSION=25.0.8775105
#
# Specifies SDK version
#
VERSION_NAME=unspecified
#
# Whether to skip build C/C++ code
#
# The default is false,
# if you want to build C/C++ code in the other build system, set to true.
#
SKIP_CMAKE_AND_NINJA=false
#
# ABI Filters
#
# Use specific ABIs to build C/C++ code, affect both debug and release build types.
#
# Please note that armeabi(legacy) will be built using the armeabi_v7a architecture,
# and the artifacts will be copied to the armeabi directory.
#
INCLUDE_ABI_ARMEABI=false
INCLUDE_ABI_ARMEABI_V7A=true
INCLUDE_ABI_ARM64_V8A=true
INCLUDE_ABI_X86=false
INCLUDE_ABI_X86_64=false
#
# V8 Component
#
# The following prebuilt V8 versions are available:
# * 10.6.194 (recommend)
# * 9.8.177.13
# * 7.7.299.17 (minimum size without inspector features, by [TBS X5 Team](https://x5.tencent.com/))
# * 7.7.299.15 (minimum version)
#
# You can also specify the absolute path to the V8 component to use,
# e.g. /opt/v8-component
#
V8_COMPONENT=10.6.194
#
# Whether to hide library symbols
#
# * true(recommend): hide non-export symbols from library:
# it can very substantially improve load times of libraries,
# produce more optimized code, reduce size of libraries
# and prevent symbol clashes.
# * false: export all symbols from library:
# it can expose all internal symbols to 3rd libraries,
# will be increase the size of library.
#
HIDDEN_LIBRARY_SYMBOL=true
#
# Specifies which STL to use for this SDK
#
# Equals to setting -DANDROID_STL macro in the cmake.arguments property,
# recommend STL is c++_static.
#
ANDROID_STL=c++_static
#
# Exclude library files from artifacts
#
# When you want to obtain these library files manually,
# you can set the name (separated by semicolons) of the library files
# to be excluded from the artifacts.
#
EXCLUDE_LIBRARY_FILES=
#features
ENABLE_SO_DOWNLOAD=false
ENABLE_BUGLY_REPORT=false
#
# Specifies maven publish artifact ID
#
# The following names are available:
# * hippy-common: for release build
# * hippy-debug: for debug build
#
PUBLISH_ARTIFACT_ID=hippy-common
#
# Specifies maven publish group ID
#
PUBLISH_GROUP_ID=com.tencent.hippy