1234567891011121314151617181920212223242526 |
- // +———————————————————————————————————
- // | Created by Yunbao
- // +———————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +———————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +———————————————————————————————————
- // | Date: 2022-04-30
- // +———————————————————————————————————
- ext {
- android = [
- compileSdkVersion: 28,
- buildToolsVersion: "28.0.3",
- minSdkVersion : 23,
- targetSdkVersion : 28,
- versionCode : 106,
- versionName : "6.2.2"
- ]
- manifestPlaceholders = [
- //服务器地址
- serverHost : "http://xxxxxx.xxxxxx.com",
- ]
- }
|