Skip to content

Commit

Permalink
v2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Neamar committed Nov 23, 2015
1 parent 5598f53 commit 511abdf
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.neamar.kiss"
android:versionCode="68"
android:versionName="2.13.1">
android:versionCode="69"
android:versionName="2.14.0">

<permission
android:name="com.android.launcher.permission.INSTALL_SHORTCUT"
Expand Down Expand Up @@ -39,7 +38,7 @@
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<!-- To autorotation toggle -->
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS" />

<uses-feature
android:name="android.hardware.telephony"
Expand All @@ -57,8 +56,9 @@
android:name="android.hardware.camera.flash"
android:required="false" />

<uses-sdk android:minSdkVersion="10"
android:targetSdkVersion="22"/>
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="22" />

<application
android:allowBackup="true"
Expand Down Expand Up @@ -101,7 +101,7 @@
<activity
android:name="fr.neamar.kiss.SettingsActivity"
android:label="@string/activity_setting"
android:theme="@style/SettingTheme"></activity>
android:theme="@style/SettingTheme" />

<!-- On new app installed or sdcard mount / unmount refresh the list -->
<receiver android:name=".broadcast.NewAppInstalledHandler">
Expand All @@ -121,14 +121,18 @@
</receiver>

<!-- On incoming messages, add user to history -->
<receiver android:name=".broadcast.IncomingSmsHandler" android:enabled="false">
<receiver
android:name=".broadcast.IncomingSmsHandler"
android:enabled="false">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>

<!-- On incoming calls, add user to history -->
<receiver android:name=".broadcast.IncomingCallHandler" android:enabled="false">
<receiver
android:name=".broadcast.IncomingCallHandler"
android:enabled="false">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
Expand Down

0 comments on commit 511abdf

Please sign in to comment.