| | |
| | | dirs 'libs' |
| | | } |
| | | } |
| | | /** |
| | | * 打包自动命名 |
| | | */ |
| | | android.applicationVariants.configureEach { variant -> |
| | | variant.outputs.configureEach { |
| | | outputFileName = "photovoltaic_${name}_v${versionName}_${generateTime()}.apk" |
| | | } |
| | | } |
| | | |
| | | buildTypes { |
| | | release { |
| | |
| | | sourceCompatibility JavaVersion.VERSION_1_8 |
| | | targetCompatibility JavaVersion.VERSION_1_8 |
| | | } |
| | | } |
| | | //构建时间 |
| | | static def generateTime() { |
| | | return new Date().format("yyyyMMddHHmm") |
| | | } |
| | | |
| | | dependencies { |
| | |
| | | annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0' |
| | | |
| | | |
| | | |
| | | //********UniSDK必须添加的依赖 start******** |
| | | implementation "androidx.recyclerview:recyclerview:1.0.0" |
| | | implementation 'com.alibaba:fastjson:1.2.66'//必须集成,fastjson功能需要 |