android_frameworks_base/packages/Osu2/AndroidManifest.xml
Peter Qiu da277b23c3 Osu2: basic app setup
This defines MainActivity, which is the entry point
to the app.  All the resource files are copied from
the legacy Osu/ app, and might be updated in the future.

Bug: 62388032
Test: Manually start activity via adb
      "am start -n com.android.osu/.MainActivity"

Change-Id: I5b81fb8fc58fd94d5de2dbdb1e46b7ff6a40760b
2017-06-14 09:34:45 -07:00

35 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.osu">
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name">
<activity android:name=".MainActivity" android:exported="true">
</activity>
</application>
</manifest>