Home | History | Annotate | Download | only in main
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2014 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <!-- Declare the contents of this Android application.  The namespace
     18      attribute brings in the Android platform namespace, and the package
     19      supplies a unique name for the application.  When writing your
     20      own application, the package name must be changed from "com.example.*"
     21      to come from a domain that you own or have control over. -->
     22 <manifest
     23     xmlns:android="http://schemas.android.com/apk/res/android"
     24     package="org.drrickorang.loopback"
     25 
     26     android:versionCode="27"
     27     android:versionName="0.10.5">
     28 
     29     <uses-permission android:name="android.permission.RECORD_AUDIO"/>
     30     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
     31     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
     32     <uses-permission android:name="android.permission.STORAGE" />
     33     <uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT" />
     34     <uses-permission android:name="android.permission.VIBRATE" />
     35     <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
     36 
     37     <application
     38         android:label="@string/app_name"
     39         android:icon="@drawable/ic_launcher"
     40         android:name="LoopbackApplication">
     41         <activity
     42             android:name="org.drrickorang.loopback.LoopbackActivity"
     43             android:theme="@android:style/Theme.Holo.Light"
     44             android:configChanges="orientation|keyboardHidden|screenLayout"
     45             android:launchMode="singleTop"
     46             android:screenOrientation="portrait">
     47             <intent-filter>
     48                 <action android:name="android.intent.action.MAIN"/>
     49                 <category android:name="android.intent.category.LAUNCHER"/>
     50             </intent-filter>
     51         </activity>
     52 
     53         <service android:name=".AudioTestService" />
     54 
     55         <activity
     56             android:name="org.drrickorang.loopback.SettingsActivity"
     57             android:parentActivityName="org.drrickorang.loopback.LoopbackActivity"
     58             android:theme="@android:style/Theme.Holo.Light"
     59             android:configChanges="orientation|screenLayout"
     60             android:windowSoftInputMode="stateAlwaysHidden"
     61             >
     62             <meta-data
     63                 android:name="android.support.PARENT_ACTIVITY"
     64                 android:value="org.drrickorang.loopback.LoopbackActivity"/>
     65         </activity>
     66 
     67         <activity
     68             android:name="org.drrickorang.loopback.AboutActivity"
     69             android:label="About"
     70             android:parentActivityName="org.drrickorang.loopback.LoopbackActivity"
     71             android:theme="@android:style/Theme.Holo.Light">
     72             <meta-data
     73                 android:name="android.support.PARENT_ACTIVITY"
     74                 android:value="org.drrickorang.loopback.LoopbackActivity" />
     75         </activity>
     76 
     77         <activity
     78             android:name=".RecorderBufferPeriodActivity"
     79             android:label="Recorder Buffer Period Histogram"
     80             android:parentActivityName="org.drrickorang.loopback.LoopbackActivity"
     81             android:theme="@android:style/Theme.Holo.Light">
     82             <meta-data
     83                 android:name="android.support.PARENT_ACTIVITY"
     84                 android:value="org.drrickorang.loopback.LoopbackActivity" />
     85         </activity>
     86 
     87         <activity
     88             android:name=".PlayerBufferPeriodActivity"
     89             android:label="Player Buffer Period Histogram"
     90             android:parentActivityName="org.drrickorang.loopback.LoopbackActivity"
     91             android:theme="@android:style/Theme.Holo.Light">
     92             <meta-data
     93                 android:name="android.support.PARENT_ACTIVITY"
     94                 android:value="org.drrickorang.loopback.LoopbackActivity" />
     95         </activity>
     96 
     97     </application>
     98 </manifest>
     99