Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.maxim.smsled" >
  4. <uses-permission android:name="android.permission.CAMERA"></uses-permission>
  5. <uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
  6. <receiver android:name=".IncomingSms"
  7. android:enabled="true"
  8. android:exported="true">
  9. <intent-filter>
  10. <action android:name="android.provider.Telephony.SMS_RECEIVED" />
  11. </intent-filter>
  12. </receiver>
  13.  
  14. <application
  15. android:allowBackup="true"
  16. android:icon="@mipmap/ic_launcher"
  17. android:label="@string/app_name"
  18. android:supportsRtl="true"
  19. android:theme="@style/AppTheme" >
  20. <activity android:name=".MainActivity" >
  21. <intent-filter>
  22. <action android:name="android.intent.action.MAIN" />
  23.  
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. </application>
  28.  
  29. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement