|
apply plugin: 'com.android.library'
android {
compileSdkVersion 22
defaultConfig {
minSdkVersion 8
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile files('libs/jcore-android-1.2.0.jar')
compile files('libs/jpush-android-3.1.2.jar')
compileOnly project(':ipu-mobile-common')
compileOnly(name: 'ipu-mobile-framework', ext: 'aar')
}
|