Advertisement
asmaadahood

Untitled

Jun 4th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.57 KB | None | 0 0
  1. AndroidManifest.xml
  2. *********************
  3. <?xml version="1.0" encoding="utf-8"?><!--
  4.  Copyright 2013 The Android Open Source Project
  5.  
  6.  Licensed under the Apache License, Version 2.0 (the "License");
  7.  you may not use this file except in compliance with the License.
  8.  You may obtain a copy of the License at
  9.  
  10.      http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12.  Unless required by applicable law or agreed to in writing, software
  13.  distributed under the License is distributed on an "AS IS" BASIS,
  14.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  See the License for the specific language governing permissions and
  16.  limitations under the License.
  17. -->
  18. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  19.     package="com.example.android.displayingbitmaps"
  20.     android:versionCode="1"
  21.     android:versionName="1.0">
  22.  
  23.     <!-- Min/target SDK versions (<uses-sdk>) managed by build.gradle -->
  24.  
  25.     <uses-permission android:name="android.permission.CALL_PHONE" />
  26.     <uses-permission android:name="android.permission.INTERNET" />
  27.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  28.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  29.     <uses-permission android:name="android.permission.SEND_SMS" />
  30.  
  31.     <application
  32.         android:allowBackup="true"
  33.         android:description="@string/intro_message"
  34.         android:icon="@drawable/ic_launcher"
  35.         android:label="@string/app_name"
  36.         android:theme="@style/AppThemeDark">
  37.         <activity
  38.             android:name=".ui.ImageGridActivity"
  39.             android:label="@string/app_name" />
  40.         xmlns:app="http://schemas.android.com/apk/res-auto"
  41.         <activity
  42.             android:name=".ui.ImageDetailActivity"
  43.             android:label="@string/app_name"
  44.             android:parentActivityName=".ui.ImageGridActivity"
  45.             android:theme="@style/AppThemeDark.FullScreen">
  46.             <meta-data
  47.                 android:name="android.support.PARENT_ACTIVITY"
  48.                 android:value=".ui.ImageGridActivity" />
  49.         </activity>
  50.         <activity android:name="com.example.android.NagariaActivity" />
  51.         <activity android:name="com.example.android.AluminumActivity" />
  52.         <activity android:name="com.example.android.MainActivity">
  53.             <intent-filter>
  54.                 <action android:name="android.intent.action.MAIN" />
  55.  
  56.                 <category android:name="android.intent.category.LAUNCHER" />
  57.             </intent-filter>
  58.         </activity>
  59.     </application>
  60.  
  61. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement