Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
8f2bf2d
feat(device-utils): add getAndClearColdStartLocalNotification for iOS…
huhuanming Jun 9, 2026
3de625b
chore: bump version to 3.0.55
huhuanming Jun 9, 2026
55226a4
feat(chart-webview): warm-driver + offline chart instrumentation
huhuanming Jun 9, 2026
a129867
feat(chart-webview): Android pause-when-idle + debug toggle + attach …
huhuanming Jun 10, 2026
42893bd
fix(chart-webview): parent-checked forceDetach on pooled dispose (And…
huhuanming Jun 10, 2026
ade2ccd
chore(chart-webview): drop debug instrumentation, keep necessary nati…
huhuanming Jun 10, 2026
28c09b0
chore: bump version to 3.0.56
huhuanming Jun 10, 2026
e27735d
feat: add configurable android assetHost for chart webview
huhuanming Jun 10, 2026
d32b317
chore: bump version to 3.0.57
huhuanming Jun 10, 2026
249167b
fix(chart-webview): harden Android pooled WebView reuse & assetHost
huhuanming Jun 10, 2026
7967901
fix(device-utils): make iOS cold-start notification take atomic
huhuanming Jun 10, 2026
c6e247b
chore: bump version to 3.0.58
huhuanming Jun 10, 2026
b86fa5d
Add cache pruning APIs for APKs and bundles
huhuanming Jun 10, 2026
5860421
Protect APKs during cache cleanup; robust deletions
huhuanming Jun 10, 2026
8ed9b54
chore: bump version to 3.0.59
huhuanming Jun 10, 2026
63cc99a
Bump iOS pods and clarify bundle comment
huhuanming Jun 11, 2026
3e9b826
chore: bump version to 3.0.60
huhuanming Jun 11, 2026
e387886
fix: resolve split-bundle segments after eval to fix "Requiring unkno…
huhuanming Jun 11, 2026
a48c474
chore: wire all native modules into the example app for build verific…
huhuanming Jun 11, 2026
a5fae96
chore: bump version to 3.0.61
huhuanming Jun 11, 2026
14443b6
Update Podfile.lock
huhuanming Jun 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,8 @@ scripts/nitro-view/template/android/.gradle
# generated by react-native-builder-bob
native-modules/*/lib/
native-views/*/lib/

# generated by Android externalNativeBuild (CMake/ndk) for any module
native-modules/*/android/.cxx/
native-views/*/android/.cxx/
**/android/.cxx/
17 changes: 17 additions & 0 deletions example/react-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,23 @@ android {
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}

// Several transitive deps (e.g. google-auth-library-*) ship duplicate
// META-INF metadata jars; without this the MergeJavaRes task fails with
// DuplicateRelativeFileException. Example-app packaging only.
packagingOptions {
resources {
pickFirsts += [
"META-INF/INDEX.LIST",
"META-INF/DEPENDENCIES",
"META-INF/LICENSE",
"META-INF/LICENSE.txt",
"META-INF/NOTICE",
"META-INF/NOTICE.txt",
"META-INF/*.kotlin_module",
]
}
}
}

dependencies {
Expand Down
Loading