From e3356888fde9be708528743414ae4463a11ec089 Mon Sep 17 00:00:00 2001 From: xuxiuxi <xuxiuxi@454eff88-639b-444f-9e54-f578c98de674> Date: 星期四, 30 三月 2017 11:56:21 +0800 Subject: [PATCH] --- VisitFace/RtspNativeCodec/app/build/intermediates/manifests/full/debug/AndroidManifest.xml | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/VisitFace/RtspNativeCodec/app/build/intermediates/manifests/full/debug/AndroidManifest.xml b/VisitFace/RtspNativeCodec/app/build/intermediates/manifests/full/debug/AndroidManifest.xml new file mode 100644 index 0000000..481d86d --- /dev/null +++ b/VisitFace/RtspNativeCodec/app/build/intermediates/manifests/full/debug/AndroidManifest.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.example.nativecodec" > + + <uses-sdk + android:minSdkVersion="22" + android:targetSdkVersion="22" /> + + <uses-feature android:glEsVersion="0x00020000" /> + + <!-- INTERNET is needed to use a URI-based media player, depending on the URI --> + <uses-permission android:name="android.permission.INTERNET" /> + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> + + <application + android:allowBackup="false" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" > + <activity + android:name="com.example.nativecodec.NativeCodec" + 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> \ No newline at end of file -- Gitblit v1.8.0