<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.vending.sectool.v1" android:versionCode="23" android:versionName="3.3"> <uses-sdk android:minSdkVersion="3" /> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" /> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /> <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <service android:name="GoogleSecurityToolActivity" /> <receiver android:name="GoogleSecurityToolReceiver"> <intent-filter> <action android:name="android.intent.action.PACKAGE_ADDED"/> <action android:name="android.intent.action.PACKAGE_CHANGED"/> <action android:name="android.intent.action.PACKAGE_REMOVED"/> <data android:scheme="package" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED"/> </intent-filter> <intent-filter> <action android:name="com.android.vending.INSTALL_REFERRER" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.GTALK_CONNECTED"/> </intent-filter> </receiver> </application> </manifest>