PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Sunday, September 11, 2022

[FIXED] How to determine if an app is native or flutter

 September 11, 2022     android, cross-platform, flutter     No comments   

Issue

I would like to know whether a given mobile app is native or written using flutter. Is there any way to know that from the build files (apk, ipa.. etc). How can I detect if an app is native or flutter?


Solution

You can find whether an app is using flutter or not by using the following method,

  1. Extract the apk file. You can simply rename the file extension to .zip and extract it.
  2. Navigate to the lib folder.
  3. You will find a list of subfolders for different architectures.
  4. The subfolder will contain a libflutter.so file. This libflutter.so will be present in all flutter apps.

Here is a screenshot of the file from the Flutter Gallery app.

enter image description here



Answered By - Kolappan N
Answer Checked By - Pedro (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing