android - SMS_SEND permission causes compile error and alert antivirus -



android - SMS_SEND permission causes compile error and alert antivirus -

basically, searched through net , found big, fat 0 that.

my app using sms sending service , need sms_send permission. when add together , run - eclipse says have errors in code , antivirus alert blocked android.trojan.sms_send.nr. don't care latter - because doesn't show without sms_send permission.

all found in lint error checking: "looks permissions granted scheme apps

permissions protection level signature or signatureorsystem granted scheme apps. if app regular non-system app, never able utilize these permissions."

but matters - other app tha utilize permission fine. happened? need service in app.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mypackage.etc" android:versioncode="1" android:versionname="1.0"> <uses-sdk android:minsdkversion="16" android:targetsdkversion="19" /> <uses-permission android:name="android.permission.send_sms" /> <application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:theme="@style/apptheme"> <activity android:name=".mainactivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> </application>

your android av software (f-secure?) blocking code based on heuristics or signature. most if not all android av software worthless i'd remove first. assuming not using rooted device must picking manifest scan or utilize of bundle manager.

the "signature or signatureorsystem" not applicable send_sms permission , whilst may find utilize using signature permission cross (identically signed) applications, unlikely using this.

please show manifest.

android android-manifest android-permissions

Comments

Popular posts from this blog

xslt - DocBook 5 to PDF transform failing with error: "fo:flow" is missing child elements. Required content model: marker* -

mediawiki - How do I insert tables inside infoboxes on Wikia pages? -

Local Service User Logged into Windows -