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

AndroidManifest.xml

Blame
  • user avatar
    1C3 authored
    643473a0
    History
    AndroidManifest.xml 1.70 KiB
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="ovh.ice.icecons"
        android:minSdkVersion="16"
        android:targetSdkVersion="23"
        android:versionCode="10"
        android:versionName="2.6">
    
        <uses-permission android:name="android.permission.SET_WALLPAPER" />
        <uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
    
        <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="android.intent.action.MAIN" />
    
                    <category android:name="com.anddoes.launcher.THEME" />
                </intent-filter>
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <action android:name="org.adw.launcher.THEMES" />
    
                    <category android:name="android.intent.category.DEFAULT" />
                </intent-filter>
            </activity>
            <activity android:name=".WallpaperActivity" />
            <activity android:name=".WallpaperSetActivity" />
            <activity android:name=".LicenseActivity" />
            <activity android:name=".IconActivity"></activity>
        </application>
    
    </manifest>