The StartActivity is the first activity which will be launched in the baby monitor, and in the future will list the two main options: become a monitor or a listener.
30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="protect.babymonitor"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="17"
|
|
android:targetSdkVersion="17" />
|
|
<uses-permission android:required="true" android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:required="true" android:name="android.permission.RECORD_AUDIO"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name="protect.babymonitor.StartActivity"
|
|
android:label="@string/app_name"
|
|
>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|