Skip to content

Commit

Permalink
Added INTERNET permission for ACRA
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulAnnekov committed Oct 13, 2013
1 parent f5ee19b commit edb6a4b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions NFC Unlocker/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.steelrat.nfcunlocker"
android:versionCode="1"
android:versionName="1.0" >
android:versionCode="2"
android:versionName="1.0.1" >

<!-- API 10 - minimum level that supports NFC in its present form -->
<uses-sdk
Expand All @@ -12,7 +12,9 @@
<!-- Allow KeyguardLock to disable keyguard -->
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.NFC" />

<!-- Allow ACRA to send exceptions reports -->
<uses-permission android:name="android.permission.INTERNET" />

<uses-feature
android:name="android.hardware.nfc"
android:required="true" />
Expand All @@ -30,7 +32,8 @@
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter>
<action android:name="android.nfc.action.TAG_DISCOVERED" />
<category android:name="android.intent.category.DEFAULT" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
Expand Down

0 comments on commit edb6a4b

Please sign in to comment.