-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathgradle.properties
More file actions
55 lines (45 loc) · 2.03 KB
/
gradle.properties
File metadata and controls
55 lines (45 loc) · 2.03 KB
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
VERSION_NAME=0.0.15-SNAPSHOT
GROUP=software.amazon.app.platform
org.gradle.jvmargs=-Xmx8g -Dfile.encoding=UTF-8
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true
org.gradle.configuration-cache.parallel=true
kotlin.mpp.stability.nowarn=true
kotlin.mpp.enableCInteropCommonization=true
kotlin.native.distribution.downloadFromMaven=true
kotlin.native.ignoreDisabledTargets=true
# https://youtrack.jetbrains.com/issue/KT-82395
kotlin.incremental.js=false
kotlin.incremental.js.klib=false
org.jetbrains.compose.experimental.uikit.enabled=true
# This property does not work when setting up publishing through the DSL as we do.
# SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_HOST=CENTRAL_PORTAL
# Keep this set to false by default, otherwise publishing to Maven local is extremely slow. There is a bug:
# https://github.com/gradle/gradle/issues/26256
RELEASE_SIGNING_ENABLED=false
POM_DESCRIPTION=The App Platform is a lightweight application framework for state and memory management suitable for Kotlin Multiplatform projects, in particular Android, iOS, JVM, native and Web.
POM_INCEPTION_YEAR=2025
POM_URL=https://github.com/amzn/app-platform/
POM_SCM_URL=https://github.com/amzn/app-platform/
POM_SCM_CONNECTION=scm:git:git://github.com/amzn/app-platform.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://git@github.com/amzn/app-platform.git
POM_LICENCE_NAME=Apache-2.0
POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=last-mile-dat
POM_DEVELOPER_NAME=Driver Assistance Technology
POM_DEVELOPER_URL=https://github.com/amzn
android.useAndroidX=true
android.enableJetifier=false
# AGP 8.13's bundled lint cannot read Kotlin 2.4 metadata.
# TODO: Remove when upgrading AGP.
android.experimental.lint.version=9.2.1
android.nonTransitiveRClass=true
android.defaults.buildfeatures.buildconfig=false
android.defaults.buildfeatures.aidl=false
android.defaults.buildfeatures.renderscript=false
android.defaults.buildfeatures.resvalues=false
android.defaults.buildfeatures.shaders=false