Skip to content
Snippets Groups Projects
Select Git revision
  • b025f4804065b3b87c8abf30350c940d269b89ae
  • master default protected
  • 230-add-non-free-duolingo-app-icon
  • 201-improve-app-metadata
4 results

AndroidManifest.xml

  • AndroidManifest.xml 1.26 KiB
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="ovh.ice.icecons">
    
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
    
            <activity android:name=".MainActivity">
    
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
    
                <intent-filter>
                    <action android:name="com.novalauncher.THEME" />
                </intent-filter>
    
                <intent-filter>
                    <action android:name="com.anddoes.launcher.THEME" />
                </intent-filter>
    
                <intent-filter>
                    <action android:name="com.gau.go.launcherex.theme" />
                </intent-filter>
    
                <intent-filter>
                    <action android:name="com.fede.launcher.THEME_ICONPACK" />
                </intent-filter>
    
                <intent-filter>
                    <action android:name="org.adw.launcher.THEMES" />
                </intent-filter>
    
            </activity>
    
        </application>
    
    </manifest>