Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Remove comments not need in Manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
Canato committed Sep 27, 2020
1 parent da32956 commit 0dccb1a
Showing 1 changed file with 13 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
<?xml version="1.0" encoding="utf-8"?><!--
Copyright 2015 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -15,33 +14,30 @@
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.basicpermissions">

<!-- BEGIN_INCLUDE(manifest) -->
package="com.example.android.basicpermissions">

<!-- Note that all required permissions are declared here in the Android manifest.
On Android M and above, use of these permissions is only requested at run time. -->
<uses-permission android:name="android.permission.CAMERA"/>
<!-- END_INCLUDE(manifest) -->
<uses-permission android:name="android.permission.CAMERA" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light">
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- Activity that only displays the camera preview. -->
<activity
android:name=".camera.CameraPreviewActivity"
android:exported="false"/>
android:name=".camera.CameraPreviewActivity"
android:exported="false" />

</application>

Expand Down

0 comments on commit 0dccb1a

Please sign in to comment.