12345678910111213141516171819202122232425262728293031 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 22
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 22
- ndk {
- abiFilters "armeabi","x86"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- }
- dependencies {
- implementation 'com.android.support:support-v4:22.2.1'
- }
|