65 lines
2.2 KiB
Groovy
Executable File
65 lines
2.2 KiB
Groovy
Executable File
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.jakewharton.butterknife'
|
|
android {
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('/Users/adam/Documents/work/keystore/tengshi.jks')
|
|
storePassword 'aaa111!!!'
|
|
keyAlias = 'tengshi'
|
|
keyPassword 'aaa111!!!'
|
|
}
|
|
debug {
|
|
storeFile file('/Users/adam/Documents/work/keystore/tengshi.jks')
|
|
storePassword 'aaa111!!!'
|
|
keyAlias = 'tengshi'
|
|
keyPassword 'aaa111!!!'
|
|
}
|
|
}
|
|
compileSdkVersion rootProject.ext.gCompileSdkVersion
|
|
defaultConfig {
|
|
applicationId "com.tenlion.soft.address_list"
|
|
minSdkVersion rootProject.ext.gMinSdkVersion
|
|
targetSdkVersion rootProject.ext.gCompileSdkVersion
|
|
versionCode rootProject.ext.gVersionCode
|
|
versionName rootProject.ext.gVersionName
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':baselib')
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
//ARouter
|
|
api "com.alibaba:arouter-api:$rootProject.ext.gRouterApiVersion"
|
|
annotationProcessor "com.jakewharton:butterknife-compiler:$rootProject.ext.gButterKnifeVersion"
|
|
|
|
//SmartRefreshLayout
|
|
implementation "com.alibaba:arouter-api:${rootProject.ext.gRouterApiVersion}"
|
|
|
|
implementation 'com.github.jarryleo:MagicScreenAdapter:v2.1'
|
|
//glide
|
|
implementation "com.github.bumptech.glide:glide:${rootProject.ext.supportGlide}"
|
|
annotationProcessor "com.github.bumptech.glide:compiler:${rootProject.ext.supportGlide}"
|
|
//状态栏
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
//图片裁剪
|
|
implementation 'com.isseiaoki:simplecropview:1.1.8'
|
|
|
|
}
|
|
|
|
|
|
|