| 1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 26
- defaultConfig {
- minSdkVersion 18
- targetSdkVersion 26
- versionCode 1
- versionName "2.6"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- ndk {
- abiFilters "armeabi-v7a", "arm64-v8a", "x86", "mips"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- // uncomment these lines to compile so files
- // externalNativeBuild {
- // ndkBuild {
- // path 'src/main/cpp/Android.mk'
- // }
- // }
- }
- dependencies {
- implementation fileTree(dir: 'libx264.libs', include: ['*.jar'])
- androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- implementation 'com.android.support:appcompat-v7:26.1.0'
- testImplementation 'junit:junit:4.12'
- }
|