Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.71.0] Android release AAB static asset (image, video, not js bundle) missing #35865

Closed
mym0404 opened this issue Jan 18, 2023 · 6 comments
Closed
Labels
Bug Component: Image Platform: Android Android applications. Resolution: PR Submitted A pull request with a fix has been provided.

Comments

@mym0404
Copy link
Contributor

mym0404 commented Jan 18, 2023

Description

I bumped RN from 0.70.2 to 0.71.0

When I bundle .aab, our local resources assets(image, video, ...) is missing.

I bundled aab with the command ./gradlew bundleRelease.

I know that I don't have to manually run command react-native bundle ....

But when I build an .apk file with ./gradlew assembleRelease, then it works well.

Also, in my CD build log, assets are bundled like that.

There is no problem with the JS bundle(index.android.bundle) but static resources.

I tried shrinkResources false but no luck.

...
info Done writing bundle output
info Copying 775 asset files
info Done copying assets
...

Anyway, this issue can be fixed temporarily with bundle asset manually with npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res command before ./gradlew bundleRelease.

Version Info

  • RN: 0.71.0
  • Android Gradle Plugin: 7.4.0
  • metro-react-native-babel-preset: 0.73.5

app/build.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.facebook.react'
apply plugin: 'kotlin-android'
apply plugin: 'kotlinx-serialization'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"


import com.android.build.OutputFile

/**
 * This is the configuration block to customize your React Native Android app.
 * By default you don't need to apply any configuration, just uncomment the lines you need.
 */
react {
    /* Folders */
    //   The root of your project, i.e. where "package.json" lives. Default is '..'
    // root = file("../")
    //   The folder where the react-native NPM package is. Default is ../node_modules/react-native
    // reactNativeDir = file("../node-modules/react-native")
    //   The folder where the react-native Codegen package is. Default is ../node_modules/react-native-codegen
    // codegenDir = file("../node-modules/react-native-codegen")
    //   The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
    // cliFile = file("../node_modules/react-native/cli.js")

    /* Variants */
    //   The list of variants to that are debuggable. For those we're going to
    //   skip the bundling of the JS bundle and the assets. By default is just 'debug'.
    //   If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
    // debuggableVariants = ["liteDebug", "prodDebug"]

    /* Bundling */
    //   A list containing the node command and its flags. Default is just 'node'.
    // nodeExecutableAndArgs = ["node"]
    //
    //   The command to run when bundling. By default is 'bundle'
    // bundleCommand = "ram-bundle"
    //
    //   The path to the CLI configuration file. Default is empty.
    // bundleConfig = file(../rn-cli.config.js)
    //
    //   The name of the generated asset file containing your JS bundle
    // bundleAssetName = "MyApplication.android.bundle"
    //
    //   The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
//     entryFile = file("../js/MyApplication.android.js")
    //
    //   A list of extra flags to pass to the 'bundle' commands.
    //   See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
    // extraPackagerArgs = []

    /* Hermes Commands */
    //   The hermes compiler command to run. By default it is 'hermesc'
    // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
    //
    //   The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
    // hermesFlags = ["-O", "-output-source-map"]
}

/**
 * Set this to true to create four separate APKs instead of one,
 * one for each native architecture. This is useful if you don't
 * use App Bundles (https://developer.android.com/guide/app-bundle/)
 * and want to have separate APKs to upload to the Play Store.
 */
def enableSeparateBuildPerCPUArchitecture = false

/**
 * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
 */
def enableProguardInReleaseBuilds = true

/**
 * The preferred build flavor of JavaScriptCore.
 *
 * For example, to use the international variant, you can use:
 * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
 *
 * The international variant includes ICU i18n library and necessary data
 * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
 * give correct results when using with locales other than en-US.  Note that
 * this variant is about 6MiB larger per architecture than default.
 */
def jscFlavor = 'org.webkit:android-jsc:+'

/**
 * Private function to get the list of Native Architectures you want to build.
 * This reads the value from reactNativeArchitectures in your gradle.properties
 * file and works together with the --active-arch-only flag of react-native run-android.
 */
def reactNativeArchitectures() {
    def value = project.getProperties().get("reactNativeArchitectures")
    return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
}


android {
    ndkVersion rootProject.ext.ndkVersion

    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion
    kotlinOptions {
        jvmTarget = "1.8"
    }

    defaultConfig {
        ...
    }

    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include(*reactNativeArchitectures())
        }
    }
    signingConfigs {
        ...
    }

    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }
        release {
            signingConfig signingConfigs.release
            minifyEnabled enableProguardInReleaseBuilds
            shrinkResources enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }

    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // https://developer.android.com/studio/build/configure-apk-splits.html
            // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc.
            def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        defaultConfig.versionCode * 1000 + versionCodes.get(abi)
            }

        }
    }
}

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar", "*.aar"])

    // The version of react-native is set by the React Native Gradle Plugin
    implementation("com.facebook.react:react-android")

    implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")

    if (hermesEnabled.toBoolean()) {
        implementation("com.facebook.react:hermes-android")
    } else {
        implementation jscFlavor
    }
}

apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

Version

0.71.0

Output of npx react-native info

System:
    OS: macOS 12.6
    CPU: (16) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
    Memory: 312.07 MB / 32.00 GB
    Shell: 5.8.1 - /bin/zsh
  Binaries:
    Node: 16.13.0 - /usr/local/bin/node
    Yarn: 1.22.19 - ~/.yarn/bin/yarn
    npm: 8.1.0 - /usr/local/bin/npm
    Watchman: 2023.01.02.00 - /usr/local/bin/watchman
  Managers:
    CocoaPods: 1.11.3 - /usr/local/bin/pod
  SDKs:
    iOS SDK:
      Platforms: DriverKit 22.2, iOS 16.2, macOS 13.1, tvOS 16.1, watchOS 9.1
    Android SDK:
      API Levels: 23, 27, 28, 29, 30, 31, 32, 33
      Build Tools: 28.0.3, 29.0.2, 29.0.3, 30.0.2, 30.0.3, 31.0.0, 33.0.0
      System Images: android-30 | Google APIs Intel x86 Atom, android-30 | Google Play Intel x86 Atom, android-32 | Google APIs Intel x86 Atom_64, android-33 | Google APIs Intel x86 Atom_64, android-33 | Google Play Intel x86 Atom_64
      Android NDK: 23.0.7344513-beta4
  IDEs:
    Android Studio: 2022.1 AI-221.6008.13.2211.9477386
    Xcode: 14.2/14C18 - /usr/bin/xcodebuild
  Languages:
    Java: 11.0.14 - /usr/bin/javac
  npmPackages:
    @react-native-community/cli: Not Found
    react: 18.2.0 => 18.2.0 
    react-native: 0.71.0 => 0.71.0 
    react-native-macos: Not Found
  npmGlobalPackages:
    *react-native*: Not Found

Steps to reproduce

  1. Bundle .aab with ./gradlew bundleRelease

Snack, code example, screenshot, or link to a repository

The following screenshots are Android Studio apk analyzer.
The apk files are downloaded from Google play console [App bundle explorer] - [Download] - [Signed, universal APK]

I uploaded binary to Google play console as .aab.

Build with 0.71.0 - Res excluded

image

Build with 0.70.2 - Res included

image

@cortinico
Copy link
Contributor

I've just tested on a plain 0.71 project as follows:

  1. npx react-native init RN071
  2. yarn && cd android && ./gradlew bundleRelease to create the release .aap
  3. Inpsect what's inside the release bundle:
unzip -l app/build/outputs/bundle/release/app-release.aab
Archive:  app/build/outputs/bundle/release/app-release.aab
  Length      Date    Time    Name
---------  ---------- -----   ----
       56  01-01-1981 01:01   BUNDLE-METADATA/com.android.tools.build.gradle/app-metadata.properties
     6993  01-01-1981 01:01   BUNDLE-METADATA/com.android.tools.build.libraries/dependencies.pb
      625  01-01-1981 01:01   BundleConfig.pb
       12  01-01-1981 01:01   base/assets.pb
   744708  01-01-1981 01:01   base/assets/index.android.bundle
  7239708  01-01-1981 01:01   base/dex/classes.dex
  1014768  01-01-1981 01:01   base/lib/arm64-v8a/libc++_shared.so
     4008  01-01-1981 01:01   base/lib/arm64-v8a/libcxxcomponents.so
  1293792  01-01-1981 01:01   base/lib/arm64-v8a/libfabricjni.so
     5640  01-01-1981 01:01   base/lib/arm64-v8a/libfb.so
   168560  01-01-1981 01:01   base/lib/arm64-v8a/libfbjni.so
   745320  01-01-1981 01:01   base/lib/arm64-v8a/libfolly_runtime.so
   149392  01-01-1981 01:01   base/lib/arm64-v8a/libglog.so
    38224  01-01-1981 01:01   base/lib/arm64-v8a/libglog_init.so
  1948048  01-01-1981 01:01   base/lib/arm64-v8a/libhermes.so
   220760  01-01-1981 01:01   base/lib/arm64-v8a/libhermes_executor.so
    10328  01-01-1981 01:01   base/lib/arm64-v8a/libimagepipeline.so
   108288  01-01-1981 01:01   base/lib/arm64-v8a/libjsi.so
    41168  01-01-1981 01:01   base/lib/arm64-v8a/libjsijniprofiler.so
    50000  01-01-1981 01:01   base/lib/arm64-v8a/libjsinspector.so
    38088  01-01-1981 01:01   base/lib/arm64-v8a/liblogger.so
    75800  01-01-1981 01:01   base/lib/arm64-v8a/libmapbufferjni.so
    30776  01-01-1981 01:01   base/lib/arm64-v8a/libnative-filters.so
   448616  01-01-1981 01:01   base/lib/arm64-v8a/libnative-imagetranscoder.so
   647784  01-01-1981 01:01   base/lib/arm64-v8a/libreact_codegen_rncore.so
     7072  01-01-1981 01:01   base/lib/arm64-v8a/libreact_config.so
     4432  01-01-1981 01:01   base/lib/arm64-v8a/libreact_debug.so
   210592  01-01-1981 01:01   base/lib/arm64-v8a/libreact_nativemodule_core.so
   159672  01-01-1981 01:01   base/lib/arm64-v8a/libreact_newarchdefaults.so
   164752  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_animations.so
    64648  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_attributedstring.so
    78616  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_componentregistry.so
   159704  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_core.so
     3832  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_debug.so
    46952  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_graphics.so
    42440  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_imagemanager.so
    51232  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_leakchecker.so
    55528  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_mapbuffer.so
   272560  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_mounting.so
    87936  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_runtimescheduler.so
   184920  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_scheduler.so
    51648  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_telemetry.so
    59400  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_templateprocessor.so
   148144  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_textlayoutmanager.so
   196752  01-01-1981 01:01   base/lib/arm64-v8a/libreact_render_uimanager.so
     6168  01-01-1981 01:01   base/lib/arm64-v8a/libreact_utils.so
    49816  01-01-1981 01:01   base/lib/arm64-v8a/libreactnativeblob.so
   770240  01-01-1981 01:01   base/lib/arm64-v8a/libreactnativejni.so
     6000  01-01-1981 01:01   base/lib/arm64-v8a/libreactperfloggerjni.so
   137992  01-01-1981 01:01   base/lib/arm64-v8a/librrc_image.so
    53704  01-01-1981 01:01   base/lib/arm64-v8a/librrc_root.so
   131448  01-01-1981 01:01   base/lib/arm64-v8a/librrc_scrollview.so
   217200  01-01-1981 01:01   base/lib/arm64-v8a/librrc_text.so
   196952  01-01-1981 01:01   base/lib/arm64-v8a/librrc_textinput.so
    95032  01-01-1981 01:01   base/lib/arm64-v8a/librrc_unimplementedview.so
   286792  01-01-1981 01:01   base/lib/arm64-v8a/librrc_view.so
     4088  01-01-1981 01:01   base/lib/arm64-v8a/libruntimeexecutor.so
   140104  01-01-1981 01:01   base/lib/arm64-v8a/libturbomodulejsijni.so
   169208  01-01-1981 01:01   base/lib/arm64-v8a/libyoga.so
   605420  01-01-1981 01:01   base/lib/armeabi-v7a/libc++_shared.so
     2576  01-01-1981 01:01   base/lib/armeabi-v7a/libcxxcomponents.so
  1012044  01-01-1981 01:01   base/lib/armeabi-v7a/libfabricjni.so
     3924  01-01-1981 01:01   base/lib/armeabi-v7a/libfb.so
   117584  01-01-1981 01:01   base/lib/armeabi-v7a/libfbjni.so
   546044  01-01-1981 01:01   base/lib/armeabi-v7a/libfolly_runtime.so
    98700  01-01-1981 01:01   base/lib/armeabi-v7a/libglog.so
    18836  01-01-1981 01:01   base/lib/armeabi-v7a/libglog_init.so
  1308692  01-01-1981 01:01   base/lib/armeabi-v7a/libhermes.so
   151224  01-01-1981 01:01   base/lib/armeabi-v7a/libhermes_executor.so
     9900  01-01-1981 01:01   base/lib/armeabi-v7a/libimagepipeline.so
    70792  01-01-1981 01:01   base/lib/armeabi-v7a/libjsi.so
    21112  01-01-1981 01:01   base/lib/armeabi-v7a/libjsijniprofiler.so
    28996  01-01-1981 01:01   base/lib/armeabi-v7a/libjsinspector.so
    18652  01-01-1981 01:01   base/lib/armeabi-v7a/liblogger.so
    48508  01-01-1981 01:01   base/lib/armeabi-v7a/libmapbufferjni.so
    13960  01-01-1981 01:01   base/lib/armeabi-v7a/libnative-filters.so
   251516  01-01-1981 01:01   base/lib/armeabi-v7a/libnative-imagetranscoder.so
   475576  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_codegen_rncore.so
     4956  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_config.so
     3092  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_debug.so
   145212  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_nativemodule_core.so
   116140  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_newarchdefaults.so
   123752  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_animations.so
    40096  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_attributedstring.so
    53024  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_componentregistry.so
   108916  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_core.so
     2640  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_debug.so
    28240  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_graphics.so
    22200  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_imagemanager.so
    29600  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_leakchecker.so
    31100  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_mapbuffer.so
   194168  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_mounting.so
    52868  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_runtimescheduler.so
   126772  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_scheduler.so
    29472  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_telemetry.so
    36916  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_templateprocessor.so
   115768  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_textlayoutmanager.so
   130412  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_render_uimanager.so
     4372  01-01-1981 01:01   base/lib/armeabi-v7a/libreact_utils.so
    26132  01-01-1981 01:01   base/lib/armeabi-v7a/libreactnativeblob.so
   580636  01-01-1981 01:01   base/lib/armeabi-v7a/libreactnativejni.so
     4076  01-01-1981 01:01   base/lib/armeabi-v7a/libreactperfloggerjni.so
    97356  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_image.so
    31172  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_root.so
    91812  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_scrollview.so
   165584  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_text.so
   153052  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_textinput.so
    64600  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_unimplementedview.so
   213180  01-01-1981 01:01   base/lib/armeabi-v7a/librrc_view.so
     2648  01-01-1981 01:01   base/lib/armeabi-v7a/libruntimeexecutor.so
    98032  01-01-1981 01:01   base/lib/armeabi-v7a/libturbomodulejsijni.so
   112976  01-01-1981 01:01   base/lib/armeabi-v7a/libyoga.so
  1008968  01-01-1981 01:01   base/lib/x86/libc++_shared.so
     2596  01-01-1981 01:01   base/lib/x86/libcxxcomponents.so
  1221092  01-01-1981 01:01   base/lib/x86/libfabricjni.so
     4084  01-01-1981 01:01   base/lib/x86/libfb.so
   167420  01-01-1981 01:01   base/lib/x86/libfbjni.so
   783020  01-01-1981 01:01   base/lib/x86/libfolly_runtime.so
   145596  01-01-1981 01:01   base/lib/x86/libglog.so
    38496  01-01-1981 01:01   base/lib/x86/libglog_init.so
  2251788  01-01-1981 01:01   base/lib/x86/libhermes.so
   210888  01-01-1981 01:01   base/lib/x86/libhermes_executor.so
     9848  01-01-1981 01:01   base/lib/x86/libimagepipeline.so
   107400  01-01-1981 01:01   base/lib/x86/libjsi.so
    41504  01-01-1981 01:01   base/lib/x86/libjsijniprofiler.so
    51236  01-01-1981 01:01   base/lib/x86/libjsinspector.so
    39024  01-01-1981 01:01   base/lib/x86/liblogger.so
    74008  01-01-1981 01:01   base/lib/x86/libmapbufferjni.so
    22100  01-01-1981 01:01   base/lib/x86/libnative-filters.so
   530088  01-01-1981 01:01   base/lib/x86/libnative-imagetranscoder.so
   643728  01-01-1981 01:01   base/lib/x86/libreact_codegen_rncore.so
     5520  01-01-1981 01:01   base/lib/x86/libreact_config.so
     3124  01-01-1981 01:01   base/lib/x86/libreact_debug.so
   209460  01-01-1981 01:01   base/lib/x86/libreact_nativemodule_core.so
   151356  01-01-1981 01:01   base/lib/x86/libreact_newarchdefaults.so
   186232  01-01-1981 01:01   base/lib/x86/libreact_render_animations.so
    66828  01-01-1981 01:01   base/lib/x86/libreact_render_attributedstring.so
    78024  01-01-1981 01:01   base/lib/x86/libreact_render_componentregistry.so
   157936  01-01-1981 01:01   base/lib/x86/libreact_render_core.so
     2644  01-01-1981 01:01   base/lib/x86/libreact_render_debug.so
    51580  01-01-1981 01:01   base/lib/x86/libreact_render_graphics.so
    42868  01-01-1981 01:01   base/lib/x86/libreact_render_imagemanager.so
    51652  01-01-1981 01:01   base/lib/x86/libreact_render_leakchecker.so
    57132  01-01-1981 01:01   base/lib/x86/libreact_render_mapbuffer.so
   267424  01-01-1981 01:01   base/lib/x86/libreact_render_mounting.so
    85480  01-01-1981 01:01   base/lib/x86/libreact_render_runtimescheduler.so
   173748  01-01-1981 01:01   base/lib/x86/libreact_render_scheduler.so
    52892  01-01-1981 01:01   base/lib/x86/libreact_render_telemetry.so
    59744  01-01-1981 01:01   base/lib/x86/libreact_render_templateprocessor.so
   160976  01-01-1981 01:01   base/lib/x86/libreact_render_textlayoutmanager.so
   191692  01-01-1981 01:01   base/lib/x86/libreact_render_uimanager.so
     4868  01-01-1981 01:01   base/lib/x86/libreact_utils.so
    49028  01-01-1981 01:01   base/lib/x86/libreactnativeblob.so
   743728  01-01-1981 01:01   base/lib/x86/libreactnativejni.so
     4588  01-01-1981 01:01   base/lib/x86/libreactperfloggerjni.so
   135044  01-01-1981 01:01   base/lib/x86/librrc_image.so
    53080  01-01-1981 01:01   base/lib/x86/librrc_root.so
   127740  01-01-1981 01:01   base/lib/x86/librrc_scrollview.so
   226732  01-01-1981 01:01   base/lib/x86/librrc_text.so
   216304  01-01-1981 01:01   base/lib/x86/librrc_textinput.so
    92360  01-01-1981 01:01   base/lib/x86/librrc_unimplementedview.so
   297932  01-01-1981 01:01   base/lib/x86/librrc_view.so
     2668  01-01-1981 01:01   base/lib/x86/libruntimeexecutor.so
   134012  01-01-1981 01:01   base/lib/x86/libturbomodulejsijni.so
   185136  01-01-1981 01:01   base/lib/x86/libyoga.so
  1051016  01-01-1981 01:01   base/lib/x86_64/libc++_shared.so
     3816  01-01-1981 01:01   base/lib/x86_64/libcxxcomponents.so
  1320968  01-01-1981 01:01   base/lib/x86_64/libfabricjni.so
     5872  01-01-1981 01:01   base/lib/x86_64/libfb.so
   174096  01-01-1981 01:01   base/lib/x86_64/libfbjni.so
   852704  01-01-1981 01:01   base/lib/x86_64/libfolly_runtime.so
   157512  01-01-1981 01:01   base/lib/x86_64/libglog.so
    38600  01-01-1981 01:01   base/lib/x86_64/libglog_init.so
  2064744  01-01-1981 01:01   base/lib/x86_64/libhermes.so
   223632  01-01-1981 01:01   base/lib/x86_64/libhermes_executor.so
    10608  01-01-1981 01:01   base/lib/x86_64/libimagepipeline.so
   110968  01-01-1981 01:01   base/lib/x86_64/libjsi.so
    41688  01-01-1981 01:01   base/lib/x86_64/libjsijniprofiler.so
    51624  01-01-1981 01:01   base/lib/x86_64/libjsinspector.so
    38480  01-01-1981 01:01   base/lib/x86_64/liblogger.so
    77104  01-01-1981 01:01   base/lib/x86_64/libmapbufferjni.so
    31048  01-01-1981 01:01   base/lib/x86_64/libnative-filters.so
   567672  01-01-1981 01:01   base/lib/x86_64/libnative-imagetranscoder.so
   665760  01-01-1981 01:01   base/lib/x86_64/libreact_codegen_rncore.so
     7184  01-01-1981 01:01   base/lib/x86_64/libreact_config.so
     4464  01-01-1981 01:01   base/lib/x86_64/libreact_debug.so
   217512  01-01-1981 01:01   base/lib/x86_64/libreact_nativemodule_core.so
   161296  01-01-1981 01:01   base/lib/x86_64/libreact_newarchdefaults.so
   181320  01-01-1981 01:01   base/lib/x86_64/libreact_render_animations.so
    67344  01-01-1981 01:01   base/lib/x86_64/libreact_render_attributedstring.so
    80336  01-01-1981 01:01   base/lib/x86_64/libreact_render_componentregistry.so
   165056  01-01-1981 01:01   base/lib/x86_64/libreact_render_core.so
     3880  01-01-1981 01:01   base/lib/x86_64/libreact_render_debug.so
    50216  01-01-1981 01:01   base/lib/x86_64/libreact_render_graphics.so
    42672  01-01-1981 01:01   base/lib/x86_64/libreact_render_imagemanager.so
    52600  01-01-1981 01:01   base/lib/x86_64/libreact_render_leakchecker.so
    57232  01-01-1981 01:01   base/lib/x86_64/libreact_render_mapbuffer.so
   295384  01-01-1981 01:01   base/lib/x86_64/libreact_render_mounting.so
    88280  01-01-1981 01:01   base/lib/x86_64/libreact_render_runtimescheduler.so
   186272  01-01-1981 01:01   base/lib/x86_64/libreact_render_scheduler.so
    52536  01-01-1981 01:01   base/lib/x86_64/libreact_render_telemetry.so
    61728  01-01-1981 01:01   base/lib/x86_64/libreact_render_templateprocessor.so
   158208  01-01-1981 01:01   base/lib/x86_64/libreact_render_textlayoutmanager.so
   199928  01-01-1981 01:01   base/lib/x86_64/libreact_render_uimanager.so
     6216  01-01-1981 01:01   base/lib/x86_64/libreact_utils.so
    50304  01-01-1981 01:01   base/lib/x86_64/libreactnativeblob.so
   786456  01-01-1981 01:01   base/lib/x86_64/libreactnativejni.so
     6096  01-01-1981 01:01   base/lib/x86_64/libreactperfloggerjni.so
   141624  01-01-1981 01:01   base/lib/x86_64/librrc_image.so
    54704  01-01-1981 01:01   base/lib/x86_64/librrc_root.so
   134288  01-01-1981 01:01   base/lib/x86_64/librrc_scrollview.so
   230208  01-01-1981 01:01   base/lib/x86_64/librrc_text.so
   215176  01-01-1981 01:01   base/lib/x86_64/librrc_textinput.so
    97264  01-01-1981 01:01   base/lib/x86_64/librrc_unimplementedview.so
   301400  01-01-1981 01:01   base/lib/x86_64/librrc_view.so
     3912  01-01-1981 01:01   base/lib/x86_64/libruntimeexecutor.so
   142976  01-01-1981 01:01   base/lib/x86_64/libturbomodulejsijni.so
   178376  01-01-1981 01:01   base/lib/x86_64/libyoga.so
     3426  01-01-1981 01:01   base/manifest/AndroidManifest.xml
       85  01-01-1981 01:01   base/native.pb
      230  01-01-1981 01:01   base/res/anim-v21/fragment_fast_out_extra_slow_in.xml
      549  01-01-1981 01:01   base/res/anim/abc_fade_in.xml
      549  01-01-1981 01:01   base/res/anim/abc_fade_out.xml
     1458  01-01-1981 01:01   base/res/anim/abc_grow_fade_in_from_bottom.xml
      650  01-01-1981 01:01   base/res/anim/abc_popup_enter.xml
      650  01-01-1981 01:01   base/res/anim/abc_popup_exit.xml
     1458  01-01-1981 01:01   base/res/anim/abc_shrink_fade_out_from_bottom.xml
      555  01-01-1981 01:01   base/res/anim/abc_slide_in_bottom.xml
      556  01-01-1981 01:01   base/res/anim/abc_slide_in_top.xml
      555  01-01-1981 01:01   base/res/anim/abc_slide_out_bottom.xml
      556  01-01-1981 01:01   base/res/anim/abc_slide_out_top.xml
      536  01-01-1981 01:01   base/res/anim/abc_tooltip_enter.xml
      536  01-01-1981 01:01   base/res/anim/abc_tooltip_exit.xml
     2923  01-01-1981 01:01   base/res/anim/btn_checkbox_to_checked_box_inner_merged_animation.xml
     5501  01-01-1981 01:01   base/res/anim/btn_checkbox_to_checked_box_outer_merged_animation.xml
     2495  01-01-1981 01:01   base/res/anim/btn_checkbox_to_checked_icon_null_animation.xml
     4686  01-01-1981 01:01   base/res/anim/btn_checkbox_to_unchecked_box_inner_merged_animation.xml
     3312  01-01-1981 01:01   base/res/anim/btn_checkbox_to_unchecked_check_path_merged_animation.xml
     2479  01-01-1981 01:01   base/res/anim/btn_checkbox_to_unchecked_icon_null_animation.xml
     3659  01-01-1981 01:01   base/res/anim/btn_radio_to_off_mtrl_dot_group_animation.xml
     3899  01-01-1981 01:01   base/res/anim/btn_radio_to_off_mtrl_ring_outer_animation.xml
     1884  01-01-1981 01:01   base/res/anim/btn_radio_to_off_mtrl_ring_outer_path_animation.xml
     3659  01-01-1981 01:01   base/res/anim/btn_radio_to_on_mtrl_dot_group_animation.xml
     3659  01-01-1981 01:01   base/res/anim/btn_radio_to_on_mtrl_ring_outer_animation.xml
     1942  01-01-1981 01:01   base/res/anim/btn_radio_to_on_mtrl_ring_outer_path_animation.xml
      547  01-01-1981 01:01   base/res/anim/catalyst_fade_in.xml
      547  01-01-1981 01:01   base/res/anim/catalyst_fade_out.xml
      741  01-01-1981 01:01   base/res/anim/catalyst_push_up_in.xml
      745  01-01-1981 01:01   base/res/anim/catalyst_push_up_out.xml
      392  01-01-1981 01:01   base/res/anim/catalyst_slide_down.xml
      392  01-01-1981 01:01   base/res/anim/catalyst_slide_up.xml
     2133  01-01-1981 01:01   base/res/animator/fragment_close_enter.xml
     2133  01-01-1981 01:01   base/res/animator/fragment_close_exit.xml
      543  01-01-1981 01:01   base/res/animator/fragment_fade_enter.xml
      543  01-01-1981 01:01   base/res/animator/fragment_fade_exit.xml
     2135  01-01-1981 01:01   base/res/animator/fragment_open_enter.xml
     2135  01-01-1981 01:01   base/res/animator/fragment_open_exit.xml
      453  01-01-1981 01:01   base/res/color-v21/abc_btn_colored_borderless_text_material.xml
      587  01-01-1981 01:01   base/res/color-v23/abc_btn_colored_borderless_text_material.xml
      624  01-01-1981 01:01   base/res/color-v23/abc_btn_colored_text_material.xml
      734  01-01-1981 01:01   base/res/color-v23/abc_color_highlight_material.xml
      814  01-01-1981 01:01   base/res/color-v23/abc_tint_btn_checkable.xml
     1753  01-01-1981 01:01   base/res/color-v23/abc_tint_default.xml
      898  01-01-1981 01:01   base/res/color-v23/abc_tint_edittext.xml
      601  01-01-1981 01:01   base/res/color-v23/abc_tint_seek_thumb.xml
      898  01-01-1981 01:01   base/res/color-v23/abc_tint_spinner.xml
      935  01-01-1981 01:01   base/res/color-v23/abc_tint_switch_track.xml
      471  01-01-1981 01:01   base/res/color/abc_background_cache_hint_selector_material_dark.xml
      473  01-01-1981 01:01   base/res/color/abc_background_cache_hint_selector_material_light.xml
      676  01-01-1981 01:01   base/res/color/abc_btn_colored_text_material.xml
      856  01-01-1981 01:01   base/res/color/abc_hint_foreground_material_dark.xml
      864  01-01-1981 01:01   base/res/color/abc_hint_foreground_material_light.xml
      525  01-01-1981 01:01   base/res/color/abc_primary_text_disable_only_material_dark.xml
      529  01-01-1981 01:01   base/res/color/abc_primary_text_disable_only_material_light.xml
      521  01-01-1981 01:01   base/res/color/abc_primary_text_material_dark.xml
      525  01-01-1981 01:01   base/res/color/abc_primary_text_material_light.xml
      737  01-01-1981 01:01   base/res/color/abc_search_url_text.xml
      529  01-01-1981 01:01   base/res/color/abc_secondary_text_material_dark.xml
      533  01-01-1981 01:01   base/res/color/abc_secondary_text_material_light.xml
      866  01-01-1981 01:01   base/res/color/abc_tint_btn_checkable.xml
     1805  01-01-1981 01:01   base/res/color/abc_tint_default.xml
      950  01-01-1981 01:01   base/res/color/abc_tint_edittext.xml
      652  01-01-1981 01:01   base/res/color/abc_tint_seek_thumb.xml
      950  01-01-1981 01:01   base/res/color/abc_tint_spinner.xml
      983  01-01-1981 01:01   base/res/color/abc_tint_switch_track.xml
      519  01-01-1981 01:01   base/res/color/switch_thumb_material_dark.xml
      523  01-01-1981 01:01   base/res/color/switch_thumb_material_light.xml
      272  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
      227  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_000.png
      404  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_btn_check_to_on_mtrl_015.png
      464  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_000.png
      563  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_btn_radio_to_on_mtrl_015.png
     1096  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
     1243  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
      226  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
      171  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
      167  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_divider_mtrl_alpha.9.png
      244  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_focused_holo.9.png
      212  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_longpressed_holo.9.png
      208  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_pressed_holo_dark.9.png
      208  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_pressed_holo_light.9.png
      228  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_dark.9.png
      229  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_list_selector_disabled_holo_light.9.png
      738  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
     1098  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_popup_background_mtrl_mult.9.png
      201  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
      196  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
      272  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
      205  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
      196  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
      345  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_spinner_mtrl_am_alpha.9.png
      484  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_switch_track_mtrl_alpha.9.png
      190  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
      278  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_text_select_handle_left_mtrl.png
      396  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_text_select_handle_middle_mtrl.png
      262  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_text_select_handle_right_mtrl.png
      186  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
      192  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_textfield_default_mtrl_alpha.9.png
      178  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
      178  01-01-1981 01:01   base/res/drawable-hdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
      212  01-01-1981 01:01   base/res/drawable-hdpi-v4/notification_bg_low_normal.9.png
      225  01-01-1981 01:01   base/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png
      212  01-01-1981 01:01   base/res/drawable-hdpi-v4/notification_bg_normal.9.png
      225  01-01-1981 01:01   base/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png
      107  01-01-1981 01:01   base/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png
      345  01-01-1981 01:01   base/res/drawable-ldrtl-hdpi-v17/abc_spinner_mtrl_am_alpha.9.png
      318  01-01-1981 01:01   base/res/drawable-ldrtl-mdpi-v17/abc_spinner_mtrl_am_alpha.9.png
      417  01-01-1981 01:01   base/res/drawable-ldrtl-xhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
      525  01-01-1981 01:01   base/res/drawable-ldrtl-xxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
      437  01-01-1981 01:01   base/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png
      267  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
      214  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_000.png
      321  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_btn_check_to_on_mtrl_015.png
      324  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_000.png
      356  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png
      754  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
      825  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
      216  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
      173  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
      167  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_divider_mtrl_alpha.9.png
      222  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_focused_holo.9.png
      211  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_longpressed_holo.9.png
      207  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_pressed_holo_dark.9.png
      207  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_pressed_holo_light.9.png
      217  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_dark.9.png
      217  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_list_selector_disabled_holo_light.9.png
      541  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
      776  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_popup_background_mtrl_mult.9.png
      159  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
      145  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
      197  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
      203  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
      194  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
      327  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_spinner_mtrl_am_alpha.9.png
      395  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_switch_track_mtrl_alpha.9.png
      186  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
      203  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_text_select_handle_left_mtrl.png
      310  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_text_select_handle_middle_mtrl.png
      186  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_text_select_handle_right_mtrl.png
      181  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
      178  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_textfield_default_mtrl_alpha.9.png
      178  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
      178  01-01-1981 01:01   base/res/drawable-mdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
      215  01-01-1981 01:01   base/res/drawable-mdpi-v4/notification_bg_low_normal.9.png
      223  01-01-1981 01:01   base/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png
      215  01-01-1981 01:01   base/res/drawable-mdpi-v4/notification_bg_normal.9.png
      223  01-01-1981 01:01   base/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png
       98  01-01-1981 01:01   base/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png
      227  01-01-1981 01:01   base/res/drawable-v21/abc_action_bar_item_background_material.xml
     3280  01-01-1981 01:01   base/res/drawable-v21/abc_btn_colored_material.xml
      776  01-01-1981 01:01   base/res/drawable-v21/abc_dialog_material_background.xml
     2156  01-01-1981 01:01   base/res/drawable-v21/abc_edit_text_material.xml
      480  01-01-1981 01:01   base/res/drawable-v21/abc_list_divider_material.xml
     2250  01-01-1981 01:01   base/res/drawable-v21/notification_action_background.xml
      302  01-01-1981 01:01   base/res/drawable-v23/abc_control_background_material.xml
      943  01-01-1981 01:01   base/res/drawable-v29/autofill_inline_suggestion_chip_background.xml
      290  01-01-1981 01:01   base/res/drawable-watch-v20/abc_dialog_material_background.xml
      280  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
      281  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_000.png
      432  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_btn_check_to_on_mtrl_015.png
      651  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
      785  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
     1526  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
     1731  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
      229  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
      228  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
      167  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_divider_mtrl_alpha.9.png
      244  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_focused_holo.9.png
      214  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_longpressed_holo.9.png
      209  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_pressed_holo_dark.9.png
      209  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_pressed_holo_light.9.png
      236  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
      235  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_list_selector_disabled_holo_light.9.png
      966  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
     1544  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_popup_background_mtrl_mult.9.png
      267  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
      267  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
      391  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
      208  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
      198  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
      448  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
      618  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_switch_track_mtrl_alpha.9.png
      194  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
      335  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_text_select_handle_left_mtrl.png
      585  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl.png
      318  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_text_select_handle_right_mtrl.png
      189  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
      187  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
      184  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
      182  01-01-1981 01:01   base/res/drawable-xhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
      221  01-01-1981 01:01   base/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png
      252  01-01-1981 01:01   base/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png
      221  01-01-1981 01:01   base/res/drawable-xhdpi-v4/notification_bg_normal.9.png
      247  01-01-1981 01:01   base/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png
      138  01-01-1981 01:01   base/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png
      286  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_ab_share_pack_mtrl_alpha.9.png
      307  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
      593  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
      984  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
     1208  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
     2463  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
     2834  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
      237  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_cab_background_top_mtrl_alpha.9.png
      224  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_ic_commit_search_api_mtrl_alpha.png
      171  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_divider_mtrl_alpha.9.png
      245  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_focused_holo.9.png
      221  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_longpressed_holo.9.png
      212  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_pressed_holo_dark.9.png
      212  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_pressed_holo_light.9.png
      260  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_dark.9.png
      258  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_list_selector_disabled_holo_light.9.png
     1779  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_menu_hardkey_panel_mtrl_mult.9.png
     2305  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_popup_background_mtrl_mult.9.png
      322  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_scrubber_control_off_mtrl_alpha.png
      403  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
      595  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
      210  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_scrubber_primary_mtrl_alpha.9.png
      207  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_scrubber_track_mtrl_alpha.9.png
      524  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
      851  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
      204  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
      420  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl.png
      753  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_text_select_handle_middle_mtrl.png
      422  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_text_select_handle_right_mtrl.png
      199  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_textfield_activated_mtrl_alpha.9.png
      200  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_textfield_default_mtrl_alpha.9.png
      187  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_textfield_search_activated_mtrl_alpha.9.png
      186  01-01-1981 01:01   base/res/drawable-xxhdpi-v4/abc_textfield_search_default_mtrl_alpha.9.png
      275  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_000.png
      476  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png
      785  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png
      946  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_015.png
     2505  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00001.9.png
     2816  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_btn_switch_to_on_mtrl_00012.9.png
      415  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_000.png
      631  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_scrubber_control_to_pressed_mtrl_005.png
      430  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_spinner_mtrl_am_alpha.9.png
      813  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_switch_track_mtrl_alpha.9.png
      202  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_tab_indicator_mtrl_alpha.9.png
      513  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_text_select_handle_left_mtrl.png
      513  01-01-1981 01:01   base/res/drawable-xxxhdpi-v4/abc_text_select_handle_right_mtrl.png
      736  01-01-1981 01:01   base/res/drawable/abc_btn_borderless_material.xml
      512  01-01-1981 01:01   base/res/drawable/abc_btn_check_material.xml
     1561  01-01-1981 01:01   base/res/drawable/abc_btn_check_material_anim.xml
     1830  01-01-1981 01:01   base/res/drawable/abc_btn_default_mtrl_shape.xml
      512  01-01-1981 01:01   base/res/drawable/abc_btn_radio_material.xml
     1405  01-01-1981 01:01   base/res/drawable/abc_btn_radio_material_anim.xml
      290  01-01-1981 01:01   base/res/drawable/abc_cab_background_internal_bg.xml
      211  01-01-1981 01:01   base/res/drawable/abc_cab_background_top_material.xml
      873  01-01-1981 01:01   base/res/drawable/abc_ic_ab_back_material.xml
     1262  01-01-1981 01:01   base/res/drawable/abc_ic_arrow_drop_right_black_24dp.xml
      829  01-01-1981 01:01   base/res/drawable/abc_ic_clear_material.xml
      782  01-01-1981 01:01   base/res/drawable/abc_ic_go_search_api_material.xml
      809  01-01-1981 01:01   base/res/drawable/abc_ic_menu_copy_mtrl_am_alpha.xml
     1149  01-01-1981 01:01   base/res/drawable/abc_ic_menu_cut_mtrl_alpha.xml
      934  01-01-1981 01:01   base/res/drawable/abc_ic_menu_overflow_material.xml
      810  01-01-1981 01:01   base/res/drawable/abc_ic_menu_paste_mtrl_am_alpha.xml
      934  01-01-1981 01:01   base/res/drawable/abc_ic_menu_selectall_mtrl_alpha.xml
      995  01-01-1981 01:01   base/res/drawable/abc_ic_menu_share_mtrl_alpha.xml
      955  01-01-1981 01:01   base/res/drawable/abc_ic_search_api_material.xml
      972  01-01-1981 01:01   base/res/drawable/abc_ic_voice_search_api_material.xml
     2036  01-01-1981 01:01   base/res/drawable/abc_item_background_holo_dark.xml
     2044  01-01-1981 01:01   base/res/drawable/abc_item_background_holo_light.xml
      422  01-01-1981 01:01   base/res/drawable/abc_list_selector_background_transition_holo_dark.xml
      424  01-01-1981 01:01   base/res/drawable/abc_list_selector_background_transition_holo_light.xml
     2125  01-01-1981 01:01   base/res/drawable/abc_list_selector_holo_dark.xml
     2133  01-01-1981 01:01   base/res/drawable/abc_list_selector_holo_light.xml
       20  01-01-1981 01:01   base/res/drawable/abc_ratingbar_indicator_material.xml
       20  01-01-1981 01:01   base/res/drawable/abc_ratingbar_material.xml
       20  01-01-1981 01:01   base/res/drawable/abc_ratingbar_small_material.xml
     1639  01-01-1981 01:01   base/res/drawable/abc_seekbar_thumb_material.xml
      616  01-01-1981 01:01   base/res/drawable/abc_seekbar_tick_mark_material.xml
     1735  01-01-1981 01:01   base/res/drawable/abc_seekbar_track_material.xml
     1655  01-01-1981 01:01   base/res/drawable/abc_spinner_textfield_background_material.xml
      689  01-01-1981 01:01   base/res/drawable/abc_star_black_48dp.xml
      647  01-01-1981 01:01   base/res/drawable/abc_star_half_black_48dp.xml
      524  01-01-1981 01:01   base/res/drawable/abc_switch_thumb_material.xml
      488  01-01-1981 01:01   base/res/drawable/abc_tab_indicator_material.xml
      457  01-01-1981 01:01   base/res/drawable/abc_text_cursor_material.xml
     1290  01-01-1981 01:01   base/res/drawable/abc_textfield_search_material.xml
      666  01-01-1981 01:01   base/res/drawable/abc_vector_test.xml
     3232  01-01-1981 01:01   base/res/drawable/btn_checkbox_checked_mtrl.xml
     1099  01-01-1981 01:01   base/res/drawable/btn_checkbox_checked_to_unchecked_mtrl_animation.xml
     3202  01-01-1981 01:01   base/res/drawable/btn_checkbox_unchecked_mtrl.xml
     1088  01-01-1981 01:01   base/res/drawable/btn_checkbox_unchecked_to_checked_mtrl_animation.xml
     2020  01-01-1981 01:01   base/res/drawable/btn_radio_off_mtrl.xml
     1031  01-01-1981 01:01   base/res/drawable/btn_radio_off_to_on_mtrl_animation.xml
     1872  01-01-1981 01:01   base/res/drawable/btn_radio_on_mtrl.xml
     1035  01-01-1981 01:01   base/res/drawable/btn_radio_on_to_off_mtrl_animation.xml
      751  01-01-1981 01:01   base/res/drawable/notification_bg.xml
      753  01-01-1981 01:01   base/res/drawable/notification_bg_low.xml
      314  01-01-1981 01:01   base/res/drawable/notification_icon_background.xml
      319  01-01-1981 01:01   base/res/drawable/notification_tile_bg.xml
      889  01-01-1981 01:01   base/res/drawable/redbox_top_border_background.xml
     1232  01-01-1981 01:01   base/res/drawable/rn_edit_text_material.xml
      335  01-01-1981 01:01   base/res/drawable/test_level_drawable.xml
      469  01-01-1981 01:01   base/res/drawable/tooltip_frame_dark.xml
      471  01-01-1981 01:01   base/res/drawable/tooltip_frame_light.xml
      180  01-01-1981 01:01   base/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0.xml
      193  01-01-1981 01:01   base/res/interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1.xml
      180  01-01-1981 01:01   base/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0.xml
      193  01-01-1981 01:01   base/res/interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1.xml
      186  01-01-1981 01:01   base/res/interpolator/btn_radio_to_off_mtrl_animation_interpolator_0.xml
      186  01-01-1981 01:01   base/res/interpolator/btn_radio_to_on_mtrl_animation_interpolator_0.xml
      404  01-01-1981 01:01   base/res/interpolator/fast_out_slow_in.xml
     2216  01-01-1981 01:01   base/res/layout-v21/notification_action.xml
     2677  01-01-1981 01:01   base/res/layout-v21/notification_action_tombstone.xml
     6318  01-01-1981 01:01   base/res/layout-v21/notification_template_custom_big.xml
     2432  01-01-1981 01:01   base/res/layout-v21/notification_template_icon_group.xml
     3192  01-01-1981 01:01   base/res/layout-v22/abc_alert_dialog_button_bar_material.xml
     2736  01-01-1981 01:01   base/res/layout-v26/abc_screen_toolbar.xml
     2517  01-01-1981 01:01   base/res/layout-watch-v20/abc_alert_dialog_button_bar_material.xml
     2835  01-01-1981 01:01   base/res/layout-watch-v20/abc_alert_dialog_title_material.xml
     1758  01-01-1981 01:01   base/res/layout/abc_action_bar_title_item.xml
      588  01-01-1981 01:01   base/res/layout/abc_action_bar_up_container.xml
     1244  01-01-1981 01:01   base/res/layout/abc_action_menu_item_layout.xml
      656  01-01-1981 01:01   base/res/layout/abc_action_menu_layout.xml
      589  01-01-1981 01:01   base/res/layout/abc_action_mode_bar.xml
     1366  01-01-1981 01:01   base/res/layout/abc_action_mode_close_item_material.xml
     3884  01-01-1981 01:01   base/res/layout/abc_activity_chooser_view.xml
     2684  01-01-1981 01:01   base/res/layout/abc_activity_chooser_view_list_item.xml
     3101  01-01-1981 01:01   base/res/layout/abc_alert_dialog_button_bar_material.xml
     5875  01-01-1981 01:01   base/res/layout/abc_alert_dialog_material.xml
     3326  01-01-1981 01:01   base/res/layout/abc_alert_dialog_title_material.xml
     4461  01-01-1981 01:01   base/res/layout/abc_cascading_menu_item_layout.xml
     2063  01-01-1981 01:01   base/res/layout/abc_dialog_title_material.xml
      462  01-01-1981 01:01   base/res/layout/abc_expanded_menu_layout.xml
      717  01-01-1981 01:01   base/res/layout/abc_list_menu_item_checkbox.xml
     1170  01-01-1981 01:01   base/res/layout/abc_list_menu_item_icon.xml
     2985  01-01-1981 01:01   base/res/layout/abc_list_menu_item_layout.xml
      714  01-01-1981 01:01   base/res/layout/abc_list_menu_item_radio.xml
     1503  01-01-1981 01:01   base/res/layout/abc_popup_menu_header_item_layout.xml
     4985  01-01-1981 01:01   base/res/layout/abc_popup_menu_item_layout.xml
      722  01-01-1981 01:01   base/res/layout/abc_screen_content_include.xml
     1346  01-01-1981 01:01   base/res/layout/abc_screen_simple.xml
     1261  01-01-1981 01:01   base/res/layout/abc_screen_simple_overlay_action_mode.xml
     2642  01-01-1981 01:01   base/res/layout/abc_screen_toolbar.xml
     5031  01-01-1981 01:01   base/res/layout/abc_search_dropdown_item_icons_2line.xml
     9654  01-01-1981 01:01   base/res/layout/abc_search_view.xml
     1711  01-01-1981 01:01   base/res/layout/abc_select_dialog_material.xml
     2379  01-01-1981 01:01   base/res/layout/abc_tooltip.xml
     3101  01-01-1981 01:01   base/res/layout/autofill_inline_suggestion.xml
      828  01-01-1981 01:01   base/res/layout/custom_dialog.xml
     1111  01-01-1981 01:01   base/res/layout/dev_loading_view.xml
     1004  01-01-1981 01:01   base/res/layout/fps_view.xml
      643  01-01-1981 01:01   base/res/layout/notification_template_part_chronometer.xml
      630  01-01-1981 01:01   base/res/layout/notification_template_part_time.xml
     1858  01-01-1981 01:01   base/res/layout/redbox_item_frame.xml
      928  01-01-1981 01:01   base/res/layout/redbox_item_title.xml
     5290  01-01-1981 01:01   base/res/layout/redbox_view.xml
     1322  01-01-1981 01:01   base/res/layout/select_dialog_item_material.xml
     2082  01-01-1981 01:01   base/res/layout/select_dialog_multichoice_material.xml
     2074  01-01-1981 01:01   base/res/layout/select_dialog_singlechoice_material.xml
      701  01-01-1981 01:01   base/res/layout/support_simple_spinner_dropdown_item.xml
      428  01-01-1981 01:01   base/res/menu/example_menu.xml
      428  01-01-1981 01:01   base/res/menu/example_menu2.xml
     3056  01-01-1981 01:01   base/res/mipmap-hdpi-v4/ic_launcher.png
     5024  01-01-1981 01:01   base/res/mipmap-hdpi-v4/ic_launcher_round.png
     2096  01-01-1981 01:01   base/res/mipmap-mdpi-v4/ic_launcher.png
     2858  01-01-1981 01:01   base/res/mipmap-mdpi-v4/ic_launcher_round.png
     4569  01-01-1981 01:01   base/res/mipmap-xhdpi-v4/ic_launcher.png
     7098  01-01-1981 01:01   base/res/mipmap-xhdpi-v4/ic_launcher_round.png
     6464  01-01-1981 01:01   base/res/mipmap-xxhdpi-v4/ic_launcher.png
    10676  01-01-1981 01:01   base/res/mipmap-xxhdpi-v4/ic_launcher_round.png
     8946  01-01-1981 01:01   base/res/mipmap-xxxhdpi-v4/ic_launcher.png
    15523  01-01-1981 01:01   base/res/mipmap-xxxhdpi-v4/ic_launcher_round.png
     2885  01-01-1981 01:01   base/res/xml/rn_dev_preferences.xml
   308307  01-01-1981 01:01   base/resources.pb
        6  01-01-1981 01:01   base/root/META-INF/androidx.activity_activity.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.annotation_annotation-experimental.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.appcompat_appcompat-resources.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.appcompat_appcompat.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.arch.core_core-runtime.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.autofill_autofill.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.core_core.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.cursoradapter_cursoradapter.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.customview_customview.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.drawerlayout_drawerlayout.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.emoji2_emoji2-views-helper.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.emoji2_emoji2.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.fragment_fragment.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.interpolator_interpolator.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.lifecycle_lifecycle-livedata-core.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.lifecycle_lifecycle-livedata.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.lifecycle_lifecycle-process.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.lifecycle_lifecycle-runtime.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.lifecycle_lifecycle-viewmodel-savedstate.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.lifecycle_lifecycle-viewmodel.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.loader_loader.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.savedstate_savedstate.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.startup_startup-runtime.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.swiperefreshlayout_swiperefreshlayout.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.tracing_tracing.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.vectordrawable_vectordrawable-animated.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.vectordrawable_vectordrawable.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.versionedparcelable_versionedparcelable.version
        6  01-01-1981 01:01   base/root/META-INF/androidx.viewpager_viewpager.version
       56  01-01-1981 01:01   base/root/META-INF/com/android/build/gradle/app-metadata.properties
      926  01-01-1981 01:01   base/root/kotlin/annotation/annotation.kotlin_builtins
     3685  01-01-1981 01:01   base/root/kotlin/collections/collections.kotlin_builtins
      200  01-01-1981 01:01   base/root/kotlin/coroutines/coroutines.kotlin_builtins
      758  01-01-1981 01:01   base/root/kotlin/internal/internal.kotlin_builtins
    14151  01-01-1981 01:01   base/root/kotlin/kotlin.kotlin_builtins
     2301  01-01-1981 01:01   base/root/kotlin/ranges/ranges.kotlin_builtins
     2338  01-01-1981 01:01   base/root/kotlin/reflect/reflect.kotlin_builtins
      218  01-01-1981 01:01   base/root/okhttp3/internal/publicsuffix/NOTICE
    37730  01-01-1981 01:01   base/root/okhttp3/internal/publicsuffix/publicsuffixes.gz
    76570  01-01-1981 01:01   META-INF/ANDROIDD.SF
     1375  01-01-1981 01:01   META-INF/ANDROIDD.RSA
    76521  01-01-1981 01:01   META-INF/MANIFEST.MF
---------                     -------
 51786949                     630 files

I can see that res is included correctly.

Also your 2 screenshots are a bit confusing as I see they mention APK size, while I believe the problem you're referring to is to .aab

Plus in the second screenshot I see you still have res. So I'd like to understand better what's going on.

@renchap
Copy link
Contributor

renchap commented Jan 18, 2023

I am seeing the same issue with our app after upgrading to 0.71.

There is a res/ folder in the AAB, but it does not include any of the assets in android/app/build/generated/res/react/release/. It includes assets used by other libraries used in this app (Intercom, or the react-native-bootsplash files from android/app/src/main/res/).

@cortinico
Copy link
Contributor

After further investigation this is actually a valid bug.
The fix is forthcoming and will be included in 0.71.1. Thanks for reporting it @mym0404

@cortinico cortinico added Resolution: PR Submitted A pull request with a fix has been provided. Bug and removed Needs: Triage 🔍 Needs: Author Feedback labels Jan 18, 2023
cortinico added a commit to cortinico/react-native that referenced this issue Jan 18, 2023
Summary:
When downgrading from AGP 7.4 to 7.3 we were forced to resort to older APIs
to bundle resources. It seems like we haven't properly wired the task to make sure
resources generated by Metro are correctly accounted before the generation of
release app bundles/apks.

This fixes it. This fix can also be removed once we are on AGP 7.4
Fixes facebook#35865

Changelog:
[Android] [Fixed] - Fix for resources not correctly bundlded on release appbundles

Differential Revision: D42573450

fbshipit-source-id: f3f3ed228788e9c406e066b63e70f20fd0f4daeb
@meetajhu
Copy link

@cortinico your pR https://github.com/facebook/react-native/pull/35872/files changes fixed this issue. For me even assemblerelease also had missing static assets. Thanks

kelset pushed a commit that referenced this issue Jan 19, 2023
Summary:
Pull Request resolved: #35872

When downgrading from AGP 7.4 to 7.3 we were forced to resort to older APIs
to bundle resources. It seems like we haven't properly wired the task to make sure
resources generated by Metro are correctly accounted before the generation of
release app bundles/apks.

This fixes it. This fix can also be removed once we are on AGP 7.4
Fixes #35865

Changelog:
[Android] [Fixed] - Fix for resources not correctly bundlded on release appbundles

Reviewed By: cipolleschi

Differential Revision: D42573450

fbshipit-source-id: a810924315f72e02e4c988ae86112bf0a06a9ce5
OlimpiaZurek pushed a commit to OlimpiaZurek/react-native that referenced this issue May 22, 2023
…ook#35872)

Summary:
Pull Request resolved: facebook#35872

When downgrading from AGP 7.4 to 7.3 we were forced to resort to older APIs
to bundle resources. It seems like we haven't properly wired the task to make sure
resources generated by Metro are correctly accounted before the generation of
release app bundles/apks.

This fixes it. This fix can also be removed once we are on AGP 7.4
Fixes facebook#35865

Changelog:
[Android] [Fixed] - Fix for resources not correctly bundlded on release appbundles

Reviewed By: cipolleschi

Differential Revision: D42573450

fbshipit-source-id: a810924315f72e02e4c988ae86112bf0a06a9ce5
@waleedshkt
Copy link

I'm settling on RN v0.69.10 owing to some dependencies not fully caught up with the latest RN version.

Strangely, all my RN apps that don't have RNGestureHandler installed are all building successfully using ./gradlew bundleRelease command and are not crashing. There is no index.android.bundle related error popping in them.

But for those in which I have react-navigation drawer installed, there is a requirement for RNGestureHandler. And for these the above-mentioned error is arising.

For now, I'm using the temp solution similar to the one above as provided by @mym0404. But there is a duplicate-resources issue arising which again has its own fix by deleting drawable-* and raw folders from the res directory. BUT then I have react-native-splash-screen installed which requires a launch_screen.xml file in a res/layout folder. And in this xml file, there is a <ImageView/> component having android:src="@drawable/launch_screen" prop.

And so after applying the fix for duplicate-resources error, a new error of drawable/launch_screen.png not found is coming!

So, I'm stuck here. Any help on solving this will be greatly appreciated!

@vozaldi
Copy link

vozaldi commented Oct 30, 2023

Still experiencing this in 0.72.6, at the moment I noticed that sometimes bundleRelease doesn't execute metro.

I had to run ./gradlew clean followed by ./gradlew bundleRelease and wait for the compile again.

Finally the important thing is I had to make sure metro command is executed in the compile process:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Component: Image Platform: Android Android applications. Resolution: PR Submitted A pull request with a fix has been provided.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants