This repository has been archived on 2024-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
new_Edit/app/build.gradle

40 lines
995 B
Groovy
Raw Permalink Normal View History

2023-11-25 03:09:10 +00:00
plugins {
id 'com.android.application'
}
android {
signingConfigs {
debug {
storeFile file('keys\\muqing.jks')
2023-11-25 03:09:10 +00:00
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'
}