apply plugin: 'com.android.application'
|
|
android {
|
compileSdkVersion 25
|
buildToolsVersion "25.0.2"
|
defaultConfig {
|
applicationId "com.moral.yunfushao"
|
minSdkVersion 18
|
targetSdkVersion 22
|
versionCode 1
|
versionName "1.0"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
}
|
|
signingConfigs {
|
// your debug keystore
|
debug {
|
keyAlias 'moral'
|
keyPassword 'moral123456'
|
storeFile file("C:\\Users\\Administrator\\Desktop\\key\\key.jks")
|
storePassword 'moral123456'
|
}
|
}
|
|
sourceSets {
|
main {
|
jniLibs.srcDirs = ['libs']
|
}
|
}
|
|
buildTypes {
|
release {
|
minifyEnabled false
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
}
|
}
|
}
|
|
dependencies {
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
exclude group: 'com.android.support', module: 'support-annotations'
|
})
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
compile 'com.android.support:cardview-v7:25.3.1'
|
testCompile 'junit:junit:4.12'
|
compile project(':andbrickslib')
|
compile project(':FastBleLib')
|
//下拉刷新
|
compile 'in.srain.cube:ultra-ptr:1.0.11'
|
//图片加载
|
compile 'com.github.bumptech.glide:glide:3.7.0'
|
//网络请求
|
compile 'com.lzy.net:okgo:2.1.4'
|
compile files('libs/BaiduLBS_Android.jar')
|
compile 'pub.devrel:easypermissions:0.4.0'
|
compile 'com.daimajia.numberprogressbar:library:1.4@aar'
|
compile 'org.greenrobot:eventbus:3.0.0'
|
compile 'com.github.lecho:hellocharts-library:1.5.8@aar'
|
compile 'com.contrarywind:Android-PickerView:3.1.2'
|
}
|