-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgradle.properties
More file actions
16 lines (15 loc) · 800 Bytes
/
Copy pathgradle.properties
File metadata and controls
16 lines (15 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
org.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8
org.gradle.workers.max=4
android.useAndroidX=true
kotlin.code.style=official
android.nonTransitiveRClass=true
android.suppressUnsupportedCompileSdk=36
# 16 KB page-size compliance (Play Store gate; see ROADMAP.md R6.1, docs/models.md §2).
# ClearCut's :app module currently bundles native code only via AAR dependencies
# (ONNX Runtime, MediaPipe). Compliance is enforced by the CI step in
# .github/workflows/build.yml that runs scripts/check_16kb_alignment.py
# over the merged native libs after assembleRelease.
# When ClearCut adds its own native code (NCNN RIFE per A.4, etc.), pin
# ndkVersion = "28.0.13004108" // or newer
# inside the `android { ... }` block of app/build.gradle.kts. NDK r28+
# emits 16 KB-aligned binaries by default.