K
K
ken30122019-08-29 01:44:37
Android
ken3012, 2019-08-29 01:44:37

How to find out permission values ​​in AndroidManifest?

Android 8.1 device, LG Nexus
There is one app that gives out free food coupons.
But it only shows up on one device.
I want to bypass this lock and get a lot of food, please help.
I reflash my cell phone, insert a new SIM card, change IMEI, change MAC addresses and another ip address, of course.
But they recognize me.
How can I find out what data the application is using to fire me?
I looked at AndroidManifest.xml for access requests, this is what I got in response:

<uses-feature android:name="android.hardware.location" android:required="false"/>
    <uses-feature android:name="android.hardware.location.network" android:required="false"/>
    <uses-feature android:name="android.hardware.location.gps" android:required="false"/>

    <uses-feature android:name="android.hardware.telephony" android:required="false"/>
    <uses-feature android:name="android.hardware.telephony.cdma" android:required="false"/>
    <uses-feature android:name="android.hardware.telephony.gsm" android:required="false"/>

    <uses-feature android:glEsVersion="0x00020000" android:required="true"/>

    <uses-feature android:name="android.hardware.camera" android:required="false"/>
    <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
    <uses-feature android:name="android.hardware.camera.flash" android:required="false"/>

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
    <uses-permission android:maxSdkVersion="19" android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <uses-permission android:name="com.xxx.android.prod.permission.MAPS_RECEIVE"/>
    <uses-permission android:name="android.permission.WAKE_LOCK"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.CAMERA"/>

    <uses-permission-sdk-23 android:name="android.permission.READ_PHONE_STATE"/>
    <uses-permission-sdk-23 android:name="android.permission.READ_CONTACTS"/>

    <permission android:name="com.xxx.android.prod.permission.C2D_MESSAGE" android:protectionLevel="signature"/>
    <permission android:name="com.xxx.android.prod.permission.MAPS_RECEIVE" android:protectionLevel="signature"/>

    <uses-permission android:name="com.xxx.android.prod.permission.C2D_MESSAGE"/>
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
    <uses-permission android:name="android.permission.VIBRATE"/>

    <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/>
    <uses-permission android:name="com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE"/>

How to find out what parameters the application receives (can receive) by the above permissions?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question