Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion '25.0.2'
  6.  
  7. defaultConfig {
  8. applicationId "yanghai.example.com.ffmpegtestapp"
  9. minSdkVersion 24
  10. targetSdkVersion 25
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14.  
  15. ndk {
  16. moduleName "jnilib"
  17. ldLibs "log", "avformat"
  18. cFlags "-I${project.buildDir}/../src/main/jni/include"
  19. abiFilters "armeabi-v7a"
  20. }
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. sourceSets.main {
  29. jni.srcDirs = ['src/main/jni']
  30. jniLibs.srcDirs = ['src/main/jni/libs']
  31. }
  32. }
  33.  
  34. dependencies {
  35. compile fileTree(dir: 'libs', include: ['*.jar'])
  36. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  37. exclude group: 'com.android.support', module: 'support-annotations'
  38. })
  39. compile 'com.android.support:appcompat-v7:25.3.1'
  40. testCompile 'junit:junit:4.12'
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement