Skip to content

Instantly share code, notes, and snippets.

@illuzor
Last active September 28, 2018 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save illuzor/90ccfd1e224b21171757c2a1909565bb to your computer and use it in GitHub Desktop.
Save illuzor/90ccfd1e224b21171757c2a1909565bb to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.illuzor.lesson.wallpapers">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".screens.CategoriesActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".screens.GalleryActivity" />
<activity android:name=".screens.WallpaperActivity"/>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.illuzor.lesson.wallpapers.SHARE_WALLPAPER"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/files" />
</provider>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment