Advertisement
Guest User

Untitled

a guest
Dec 4th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 0.84 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    package="ru.avasites.batterysave">
  5.  
  6.     <uses-permission android:name="android.permission.VIBRATE" />
  7.  
  8.     <application
  9.        android:allowBackup="true"
  10.        android:icon="@mipmap/ic_launcher"
  11.        android:label="@string/app_name"
  12.        android:roundIcon="@mipmap/ic_launcher_round"
  13.        android:supportsRtl="true"
  14.        android:theme="@style/AppTheme">
  15.         <activity android:name=".MainActivity">
  16.             <intent-filter>
  17.                 <action android:name="android.intent.action.MAIN" />
  18.  
  19.                 <category android:name="android.intent.category.LAUNCHER" />
  20.             </intent-filter>
  21.         </activity>
  22.  
  23.     </application>
  24.  
  25. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement