You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
6 years ago
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 25
|
||
|
buildToolsVersion '26.0.2'
|
||
|
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
defaultConfig {
|
||
|
applicationId "com.frank.living"
|
||
|
minSdkVersion 17
|
||
|
targetSdkVersion 25
|
||
|
versionCode 1001
|
||
|
versionName "1.0.1"
|
||
|
flavorDimensions "800400"
|
||
|
|
||
|
ndk {
|
||
|
abiFilters 'armeabi', 'armeabi-v7a', 'arm64-v8a'
|
||
|
}
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
productFlavors {
|
||
|
all32 { minSdkVersion 17 }
|
||
|
all64 { minSdkVersion 17 }
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
jniLibs.srcDirs = ['libs']
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
||
|
compile 'com.android.support:preference-v7:25.4.0'
|
||
|
compile 'com.android.support:support-annotations:26.0.1'
|
||
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
||
|
|
||
|
compile 'com.squareup:otto:1.3.8'
|
||
|
|
||
|
compile 'tv.danmaku.ijk.media:ijkplayer-java:0.8.8'
|
||
|
compile 'tv.danmaku.ijk.media:ijkplayer-exo:0.8.8'
|
||
|
|
||
|
}
|