From 0a2eb2a03c84614c319605c9c1eed5ce2f75082b Mon Sep 17 00:00:00 2001
From: jiaojizu <jiaojizu@454eff88-639b-444f-9e54-f578c98de674>
Date: 星期三, 08 三月 2017 08:50:26 +0800
Subject: [PATCH] 

---
 VisitFace/RtspNativeCodec/app/build.gradle |   35 +++++++++++++++++++++++++++++++++++
 1 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/VisitFace/RtspNativeCodec/app/build.gradle b/VisitFace/RtspNativeCodec/app/build.gradle
new file mode 100644
index 0000000..45cb545
--- /dev/null
+++ b/VisitFace/RtspNativeCodec/app/build.gradle
@@ -0,0 +1,35 @@
+apply plugin: 'com.android.application'
+android {
+    compileSdkVersion 23
+    buildToolsVersion '23.0.2'
+
+    defaultConfig {
+        applicationId 'com.example.nativecodec'
+        minSdkVersion 21
+        targetSdkVersion 22
+        ndk {
+            abiFilters 'x86' // , 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a'
+        }
+        externalNativeBuild {
+            cmake {
+                arguments '-DANDROID_PLATFORM=android-21',
+                        '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=gnustl_static'
+            }
+        }
+    }
+    buildTypes {
+        release {
+            minifyEnabled = false
+            proguardFiles getDefaultProguardFile('proguard-android.txt'),
+                    'proguard-rules.pro'
+        }
+    }
+    externalNativeBuild {
+        cmake {
+            path 'src/main/cpp/CMakeLists.txt'
+        }
+    }
+}
+
+dependencies {
+}
\ No newline at end of file

--
Gitblit v1.8.0