| 1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 28
- defaultConfig {
- applicationId "com.sheep.jiuyan.samllsheep.skin_newYear"
- minSdkVersion 15
- targetSdkVersion 30
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- }
- //在apk文件后边生成版本号信息
- android.applicationVariants.all {
- variant ->
- variant.outputs.all {
- output ->
- outputFileName = "newYear.skin"
- }
- }
|