Jump to content
  • 0

About the functions provided by gameguardian


fateonlyzero

Question

6 answers to this question

Recommended Posts

1 hour ago, fateonlyzero said:

Is there a function in gameguardian that can read the phone model code? It is similar to the machine code that reads the computer.

path = io.open('/system/build.prop', 'r')
readID = path:read('*a')

regID = '0x7e8fe762351230886d9c3d5801a159bda4475bb6000000000000000000000000'

checkID = readID:match('recovery%_id='..regID)
--if nil then do action
print(checkID)
print(regID)

Check your build.prop.

There is a lot of information about your device.

Link to comment
Share on other sites

ok thanks

[added 4 minutes later]
2 hours ago, bukandewa said:

path = io.open('/system/build.prop', 'r')
readID = path:read('*a')

regID = '0x7e8fe762351230886d9c3d5801a159bda4475bb6000000000000000000000000'

checkID = readID:match('recovery%_id='..regID)
--if nil then do action
print(checkID)
print(regID)

Check your build.prop.

There is a lot of information about your device.

i don't find build.prop

Link to comment
Share on other sites

9 hours ago, bukandewa said:

path = io.open('/system/build.prop', 'r')
readID = path:read('*a')

regID = '0x7e8fe762351230886d9c3d5801a159bda4475bb6000000000000000000000000'

checkID = readID:match('recovery%_id='..regID)
--if nil then do action
print(checkID)
print(regID)

Check your build.prop.

There is a lot of information about your device.

how to read build.prop without root?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.