apply plugin: 'com.android.library'
|
|
android {
|
compileSdkVersion 29
|
buildToolsVersion "29.0.0"
|
|
defaultConfig {
|
minSdkVersion 17
|
targetSdkVersion 27
|
versionCode 1
|
versionName "1.0"
|
|
consumerProguardFiles 'consumer-rules.pro'
|
}
|
|
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
}
|
}
|
compileOptions {
|
sourceCompatibility JavaVersion.VERSION_1_8
|
targetCompatibility JavaVersion.VERSION_1_8
|
}
|
|
repositories {
|
flatDir {
|
dirs 'libs'
|
}
|
}
|
}
|
|
dependencies {
|
api 'com.huawei.hms:push:5.0.4.302'
|
api files('libs\\com.heytap.msp.aar')
|
// api files('libs\\MiPush_SDK_Client_3_8_5.jar')
|
api files('libs\\vivo_pushsdk_v3.0.0.0_480.aar')
|
api 'com.meizu.flyme.internet:push-internal:4.0.4'
|
|
implementation project(path: ':library-common')
|
}
|