29 lines
745 B
Groovy
29 lines
745 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion "25.0.2"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 25
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:25.1.1'
|
|
provided files('libs/glide-3.6.1.jar')
|
|
provided 'com.google.android.gms:play-services:9.2.1'
|
|
compile files('libs/HwPush_SDK_V2705_nomap.jar')
|
|
compile files('libs/hyphenatechat_3.2.2.jar')
|
|
compile files('libs/MiPush_SDK_Client_2_2_19.jar')
|
|
compile files('libs/org.apache.http.legacy.jar')
|
|
}
|