-
Notifications
You must be signed in to change notification settings - Fork 826
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (42 loc) · 1.21 KB
/
build.gradle
File metadata and controls
51 lines (42 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.github.hiteshsondhi88.sampleffmpeg"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0.0"
}
sourceSets.main {
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
jni.srcDirs = [] //disable automatic ndk-build
}
packagingOptions {
exclude 'META-INF/services/javax.annotation.processing.Processor'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
splits {
abi {
enable true
reset()
include "x86", "armeabi", "armeabi-v7a"
universalApk false
}
}
}
dependencies {
compile 'com.squareup.dagger:dagger-compiler:1.2.2'
compile 'com.squareup.dagger:dagger:1.2.2'
compile 'com.jakewharton:butterknife:5.1.2'
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile 'com.squareup.assertj:assertj-android:1.0.0'
compile project(':FFmpegAndroid')
}