Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8bc18fab authored by Adnan Begovic's avatar Adnan Begovic
Browse files

CMFileManager: Lollipopification

Change-Id: I1702cf147b8ebc68f3a24175fa34cf397d823280
parent 7540d726
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -22,11 +22,14 @@ LOCAL_SRC_FILES += $(call all-java-files-under, themes/src)
LOCAL_SRC_FILES += $(call all-java-files-under, libs/android-syntax-highlight/src)
LOCAL_SRC_FILES += $(call all-java-files-under, libs/color-picker-view/src)

LOCAL_STATIC_JAVA_LIBRARIES := libtruezip
LOCAL_AAPT_FLAGS := --auto-add-overlay

LOCAL_STATIC_JAVA_LIBRARIES += libtruezip
LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4

LOCAL_RESOURCE_DIR += $(addprefix $(LOCAL_PATH)/, themes/res res)

LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, themes/res res)
LOCAL_AAPT_INCLUDE_ALL_RESOURCES := true
LOCAL_AAPT_FLAGS := --auto-add-overlay

LOCAL_PACKAGE_NAME := CMFileManager
LOCAL_CERTIFICATE := platform
+10 −12
Original line number Diff line number Diff line
@@ -16,12 +16,12 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.cyanogenmod.filemanager"
  android:versionCode="103"
  android:versionName="2.0.0">
  android:versionCode="104"
  android:versionName="3.0.0">

  <original-package android:name="com.cyanogenmod.filemanager" />

  <uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
  <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="21" />

  <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
@@ -39,7 +39,7 @@
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@style/FileManager.Theme.Holo.Light"
    android:theme="@style/FileManager.Theme.Material.Light"
    android:supportsRtl="true">

    <meta-data
@@ -67,6 +67,7 @@
      android:label="@string/app_name"
      android:launchMode="singleTop"
      android:uiOptions="none"
      android:theme="@style/FileManager.Theme.Material.Light.NoActionBar"
      android:windowSoftInputMode="adjustNothing"
      android:configChanges="orientation|keyboardHidden|screenSize"
      android:exported="true">
@@ -99,7 +100,7 @@
      android:label="@string/picker"
      android:uiOptions="none"
      android:configChanges="orientation|keyboardHidden|screenSize"
      android:theme="@style/FileManager.Theme.Holo.Light.Overlay"
      android:theme="@style/FileManager.Theme.Material.Light.Overlay"
      android:exported="true">
      <intent-filter>
        <action android:name="android.intent.action.GET_CONTENT" />
@@ -120,7 +121,6 @@
    <activity
      android:name=".activities.preferences.SettingsPreferences"
      android:label="@string/pref"
      android:icon="@drawable/ic_launcher_settings"
      android:exported="false">
      <intent-filter>
         <category android:name="android.intent.category.PREFERENCE" />
@@ -131,7 +131,7 @@
      android:name=".activities.ShortcutActivity"
      android:label="@string/app_name"
      android:uiOptions="none"
      android:theme="@style/FileManager.Theme.Holo.Light.Overlay"
      android:theme="@style/FileManager.Theme.Material.Light.Overlay"
      android:exported="true">
      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
@@ -142,7 +142,7 @@
      android:name=".activities.ChangeLogActivity"
      android:label="@string/app_name"
      android:uiOptions="none"
      android:theme="@style/FileManager.Theme.Holo.Light.Overlay"
      android:theme="@style/FileManager.Theme.Material.Light.Overlay"
      android:exported="false">
      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
@@ -152,8 +152,7 @@
    <activity
      android:name=".activities.EditorActivity"
      android:label="@string/editor"
      android:configChanges="orientation|keyboardHidden|screenSize"
      android:icon="@drawable/ic_launcher_editor">
      android:configChanges="orientation|keyboardHidden|screenSize">
      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <action android:name="android.intent.action.EDIT" />
@@ -184,7 +183,6 @@
      android:name=".themes.ThemeActivity"
      android:label="@string/app_name"
      android:permission="com.cyanogenmod.filemanager.permissions.READ_THEME"
      android:icon="@drawable/ic_launcher_themes"
      android:exported="true">
      <intent-filter>
        <action android:name="com.cyanogenmod.filemanager.actions.MAIN_THEME" />
@@ -197,7 +195,7 @@
      android:label="@string/app_name"
      android:uiOptions="none"
      android:configChanges="orientation|keyboardHidden|screenSize"
      android:theme="@android:style/Theme.Holo.Light.Dialog"
      android:theme="@android:style/Theme.Material.Light.Dialog"
      android:exported="true">
      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
−119 B
Loading image diff...
−374 B
Loading image diff...
+366 B
Loading image diff...
Loading