123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- apply plugin: 'com.android.application'
- def build = rootProject.ext.build
- def sign = rootProject.ext.sign
- android {
- compileSdkVersion build.compileSdkVersion
- signingConfigs {
- release {
- storeFile file(sign.storeFile)
- keyAlias sign.keyAlias
- keyPassword sign.keyPassword
- storePassword sign.storePassword
- }
- }
- compileSdkVersion build.compileSdkVersion
- defaultConfig {
- applicationId build.applicationId
- minSdkVersion build.minSdkVersion
- targetSdkVersion build.targetSdkVersion
- versionCode build.versionCode
- versionName build.versionName
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.release
- }
- debug{
- minifyEnabled false
- }
- }
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
-
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.9.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
-
- implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
- }
|