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.
40 lines
993 B
40 lines
993 B
7 years ago
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 25
|
||
|
buildToolsVersion "25.0.0"
|
||
|
defaultConfig {
|
||
|
applicationId "vip.devkit.share"
|
||
|
minSdkVersion 15
|
||
|
targetSdkVersion 25
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
manifestPlaceholders = [
|
||
|
qq_id: "1106535201"
|
||
|
]
|
||
|
ndk {
|
||
|
abiFilters 'armeabi', 'x86', 'armeabi-v7a'//, 'x86_64', 'arm64-v8a'
|
||
|
}
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
sourceSets {
|
||
|
main.jniLibs.srcDirs = ['libs']
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
testCompile 'junit:junit:4.12'
|
||
|
compile 'com.android.support:appcompat-v7:25.0.0'
|
||
|
// compile 'vip.devkit:common.share:1.0.7'
|
||
|
compile project(':share')
|
||
|
}
|