swhoanglenin Posted October 18, 2021 Posted October 18, 2021 Hi, I'm a newbie! I am looking for a method to determine if my device is 32bit or 64bit? please help me!
Crystal_Mods100x Posted October 22, 2021 Posted October 22, 2021 Download an app called sd maid (in the app store) then open the app click overview then click the green circle button once its done scanning you should see categories with dropdown menus click "Device" category drop down menu arrow look for architechture if it says arm64-v8a first then its arm64 if its arm32-v7a first then its arm32 for me mines say arm64-v8a armeabi-v7 armeabi depending on your device it should be different or the same
MarioRossi93i Posted October 22, 2021 Posted October 22, 2021 local info = gg.getTargetInfo() if info.x64 then print("Device is 64bit") else print("Device is 32bit") end here lua script sample
CmP Posted October 22, 2021 Posted October 22, 2021 23 minutes ago, MarioRossi93i said: local info = gg.getTargetInfo() if info.x64 then print("Device is 64bit") else print("Device is 32bit") end here lua script sample The code is for determining whether chosen process is 32-bit or 64-bit, not the device. There can be 32-bit processes on 64-bit devices.
Question
swhoanglenin
Hi, I'm a newbie!
I am looking for a method to determine if my device is 32bit or 64bit? please help me!
3 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.