react / react/react-native

Autolinking android regression

Đang mở
#55,653 7 bình luận 0 reaction 0 người được giao Xem trên GitHub

Chưa có ai nhận issue này.

API: Linking Impact: Regression Needs: Triage :mag: Platform: Android
Ngôn ngữ chính
C++
Star
127k
Fork
25.3k
Merge trung bình
1 ngày 23 giờ
Pull request đã merge (30 ngày)
4

Mô tả

Description

In React Native 0.84, the autolinking Gradle plugin (GeneratePackageListTask.kt) fails to generate correct fully qualified class names (FQCNs) when a library registers multiple React packages via react-native.config.js. Only the first package gets resolved; subsequent packages are emitted as bare class names with no import or qualification, causing a compilation error.

  • React Native: 0.84.0
  • Affected plugin: @react-native/gradle-pluginGeneratePackageListTask.kt
  • Affected library (example): react-native-appsflyer@6.17.8

I think the bug was introduced here https://github.com/facebook/react-native/pull/54736/changes

Steps to reproduce

Any library that registers multiple packages in its react-native.config.js will trigger this:

// node_modules/react-native-appsflyer/react-native.config.js
module.exports = {
  dependency: {
    platforms: {
      android: {
        packageImportPath: [
          'import com.appsflyer.reactnative.RNAppsFlyerPackage;',
          'import com.appsflyer.reactnative.PCAppsFlyerPackage;',
        ].join('\n'),
        packageInstance: [
          'new RNAppsFlyerPackage()',
          'new PCAppsFlyerPackage()',
        ].join(',\n'),
      },
    },
  },
};
Expected generated PackageList.java
// react-native-appsflyer
new com.appsflyer.reactnative.RNAppsFlyerPackage(),
new com.appsflyer.reactnative.PCAppsFlyerPackage(),
Actual generated PackageList.java
// react-native-appsflyer
new com.appsflyer.reactnative.RNAppsFlyerPackage(),
new PCAppsFlyerPackage(),
React Native Version

0.84.0

Affected Platforms

Other (please specify), Runtime - Android

Output of npx @react-native-community/cli info
System:
  OS: macOS 26.3
  CPU: (12) arm64 Apple M3 Pro
  Memory: 5.38 GB / 36.00 GB
  Shell:
    version: "5.9"
    path: /bin/zsh
Binaries:
  Node:
    version: 24.11.1
    path: ~/.asdf/installs/nodejs/24.11.1/bin/node
  Yarn:
    version: 4.12.0
    path: ~/.asdf/installs/nodejs/24.11.1/bin/yarn
  npm:
    version: 6.14.16
    path: ~/Desktop/repositories/g1-monorepo/node_modules/.bin/npm
  Watchman:
    version: 2025.03.10.00
    path: /opt/homebrew/bin/watchman
Managers:
  CocoaPods:
    version: 1.16.2
    path: /Users/marian.iordache/.asdf/shims/pod
SDKs:
  iOS SDK:
    Platforms:
      - DriverKit 25.2
      - iOS 26.2
      - macOS 26.2
      - tvOS 26.2
      - visionOS 26.2
      - watchOS 26.2
  Android SDK:
    API Levels:
      - "31"
      - "33"
      - "34"
      - "35"
      - "36"
      - "36"
    Build Tools:
      - 34.0.0
      - 35.0.0
      - 35.0.1
      - 36.0.0
    System Images:
      - android-30 | Google APIs ARM 64 v8a
      - android-30 | Google Play ARM 64 v8a
      - android-34 | Google APIs ARM 64 v8a
      - android-36 | Google Play ARM 64 v8a
    Android NDK: Not Found
IDEs:
  Android Studio: 2025.2 AI-252.28238.7.2523.14688667
  Xcode:
    version: 26.2/17C52
    path: /usr/bin/xcodebuild
Languages:
  Java:
    version: 17.0.10
    path: /usr/bin/javac
  Ruby:
    version: 3.4.4
    path: /Users/marian.iordache/.asdf/shims/ruby
npmPackages:
  "@react-native-community/cli": Not Found
  react: Not Found
  react-native: Not Found
  react-native-macos: Not Found
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: true
  newArchEnabled: true
iOS:
  hermesEnabled: true
  newArchEnabled: true
Stacktrace or Logs
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
/Users/marian.iordache/Desktop/repositories/ReproducerAutolinking/android/app/build/generated/autolinking/src/main/java/com/facebook/react/PackageList.java:60: error: cannot find symbol
new PCAppsFlyerPackage(),
    ^
  symbol:   class PCAppsFlyerPackage
  location: class PackageList
1 error

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler output below.
  /Users/marian.iordache/Desktop/repositories/ReproducerAutolinking/android/app/build/generated/autolinking/src/main/java/com/facebook/react/PackageList.java:60: error: cannot find symbol
  new PCAppsFlyerPackage(),
      ^
    symbol:   class PCAppsFlyerPackage
    location: class PackageList
  1 error

* Try:
> Check your code and dependencies to fix the compilation error(s)
> Run with --scan to generate a Build Scan (Powered by Develocity).

BUILD FAILED in 8s
error Failed to install the app. Command failed with exit code 1: ./gradlew app:installDebug -PreactNativeDevServerPort=8081
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
/Users/marian.iordache/Desktop/repositories/ReproducerAutolinking/android/app/build/generated/autolinking/src/main/java/com/facebook/react/PackageList.java:60: error: cannot find symbol
new PCAppsFlyerPackage(), ^ symbol: class PCAppsFlyerPackage location: class PackageList
1 error FAILURE: Build failed with an exception. * What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler output below. /Users/marian.iordache/Desktop/repositories/ReproducerAutolinking/android/app/build/generated/autolinking/src/main/java/com/facebook/react/PackageList.java:60: error: cannot find symbol new PCAppsFlyerPackage(), ^ symbol: class PCAppsFlyerPackage location: class PackageList 1 error * Try:
> Check your code and dependencies to fix the compilation error(s)
> Run with --scan to generate a Build Scan (Powered by Develocity). BUILD FAILED in 8s.
info Run CLI with --verbose flag for more details.
MANDATORY Reproducer

https://github.com/Summys/ReproducerAutolinking

Screenshots and Videos

No response

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Hướng nghiên cứu

Bắt đầu trong GeneratePackageListTask.kt thuộc @react-native/gradle-plugin và chạy project ReproducerAutolinking bắt buộc để kiểm tra PackageList.java được tạo. Theo dõi việc xử lý nhiều mục packageImportPath; hoàn tất khi mọi package đã đăng ký đều được định danh đầy đủ trong file được tạo và Android build thành công.

Do mô hình lập chỉ mục viết ra từ nội dung của issue.

Đánh giá

Công nghệ
android, kotlin, react-native
Lĩnh vực
build-system, mobile
Loại issue
Lỗi
Độ khó
3/5
Thời gian dự kiến
1-2 ngày
Mức độ hoạt động
Sôi nổi
Độ rõ ràng
Đặc tả rõ ràng
Mức phù hợp với người mới
74/100

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.