]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - AndroidManifest.xml
Fix performance of unpacking zip files.
[Dictionary.git] / AndroidManifest.xml
index 0b999634986edeaf1f5edcd74057e2c3a4da0dc2..359bc0db309b541f30367c0164c8806b85be597f 100644 (file)
@@ -2,16 +2,19 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.hughes.android.dictionary"
     android:installLocation="auto"
-    android:versionCode="63"
-    android:versionName="5.2.6" >
+    android:versionCode="86"
+    android:versionName="5.3.5" >
 
     <uses-sdk
         android:minSdkVersion="10"
-        android:targetSdkVersion="19" />
+        android:targetSdkVersion="23" />
 
     <uses-feature
         android:name="android.hardware.touchscreen"
         android:required="false" />
+    <uses-feature
+        android:name="android.software.leanback"
+        android:required="false" />
 
     <uses-permission android:name="android.permission.INTERNET" />
     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
     <application
         android:name=".DictionaryApplication"
         android:allowBackup="true"
+        android:resizeableActivity="true"
         android:icon="@drawable/icon"
+        android:banner="@drawable/banner_tv"
         android:label="@string/app_name"
+        android:supportsRtl="true"
         android:theme="@style/AppBaseThemeDark" >
         <meta-data
             android:name="com.google.android.backup.api_key"
 
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />
+            </intent-filter>
 
             <!--
-            <intent-filter>
-                <action android:name="android.intent.action.SEND" />
-                <category android:name="android.intent.category.DEFAULT" />
-                <data android:mimeType="text/plain" />
-               </intent-filter>
                <meta-data android:name="android.app.searchable" android:resource="@xml/searchable"/>
                                                <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
@@ -51,6 +56,7 @@
         <activity
             android:name=".DictionaryActivity"
             android:label="@string/app_name"
+            android:windowSoftInputMode="adjustResize"
             android:parentActivityName=".DictionaryActivity" >
 
             <!-- Parent activity meta-data to support API level 7+ -->
            @author Dominik Köppl
                        Added two different intents to catch simple and advanced queries from other external applications.
             -->
+            <intent-filter>
+                <action android:name="android.intent.action.PROCESS_TEXT" />
+                <category android:name="android.intent.category.DEFAULT" />
+                <data android:mimeType="text/plain" />
+            </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.SEND" />
+                <category android:name="android.intent.category.DEFAULT" />
+                <data android:mimeType="text/plain" />
+            </intent-filter>
             <intent-filter>
                 <action android:name="android.intent.action.SEARCH" />