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

AndroidManifest.xml

Blame
  • AndroidManifest.xml 1.40 KiB
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="org.benoitharrault.ameixanonfree"
        android:installLocation="auto">
    
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">
            <activity android:name=".activities.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=".activities.LicenseActivity" />
            <activity android:name=".activities.IconActivity" />
        </application>
    </manifest>