How do I detect if the app uses React Native, given APK file?

前端 未结 3 1822
滥情空心
滥情空心 2021-02-07 15:52

I downloaded APK file from Google Play, and want to know if the develop of the application have used React Native library. What\'s a quick and stable way to do that? (Would be e

3条回答
  •  醉梦人生
    2021-02-07 16:47

    Not sure if this proven way.

    Download the apk from the store to your PC, I used APK Downloader FireFox extension (if you don't have the app apk already).

    Open apk with Zip software (I am on Linux so I used Ark). Now you can see parts of the project.

    Go to res->layout and search for com_facebook..., In my case it was com_facebook_activity_layout.xml. If you have one layout with com_facebook in it then this apk was created with React.

提交回复
热议问题