Android app uses system signature

Source: Internet
Author: User

Android m platform requires permissions when writing app tests using Mediarecoder to record calls up and down through Audiosource.voice_call

<android:name= "Android.permission.CAPTURE_AUDIO_OUTPUT"/>  <android:name= "Android.permission.RECORD_AUDIO"/>< android:name = "Android.permission.WRITE_EXTERNAL_STORAGE"/>   

But in requesting permission

<android:name= "Android.permission.CAPTURE_AUDIO_OUTPUT"/>

, the app will crash out

The reason is that this privilege is not open to third-party apps, and the app should be signed with the System app signature.

Solution:

Add in ①androidmanifest.xml

<xmlns:android= "http://schemas.android.com/apk/res/android"       Android:shareduserid= "Android.uid.system"      Package= " Com.thundersoft.tsrecoder ">

Pass

Android:shareduserid= "Android.uid.system"

Let the app have system permissions

② in the android.mk.

Local_certificate: = Platform

Sign the app with a system signature

Android app uses system signature

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.