mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
-New build for LiblinphoneSdk -New build for LinphoneSdk -New run for Liblinphone tester -New run for Linphone tester
53 lines
2 KiB
XML
53 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.linphone.tester"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="14"
|
|
android:targetSdkVersion="23" />
|
|
|
|
<instrumentation
|
|
android:targetPackage="org.linphone.tester"
|
|
android:name="org.linphone.tester.TestRunner" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name="org.linphone.tester.MainActivity"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="nosensor"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="org.linphone.tester.LogsActivity"
|
|
android:label="@string/title_activity_logs"
|
|
android:screenOrientation="nosensor"
|
|
android:launchMode="singleTask">
|
|
</activity>
|
|
<activity
|
|
android:name="org.linphone.tester.SuitesActivity"
|
|
android:label="@string/title_activity_suites"
|
|
android:screenOrientation="nosensor"
|
|
android:launchMode="singleTask">
|
|
</activity>
|
|
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
</application>
|
|
</manifest>
|