40 lines
995 B
Groovy
40 lines
995 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('keys\\muqing.jks')
|
|
storePassword 'muqing153'
|
|
keyAlias 'muqing'
|
|
keyPassword 'muqing153'
|
|
}
|
|
}
|
|
namespace 'com.muqingedit'
|
|
compileSdk 33
|
|
defaultConfig {
|
|
applicationId "com.muqingedit"
|
|
minSdk 23
|
|
targetSdk 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
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 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.9.0'
|
|
} |