91 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2023 The Android Open Source Project
 | 
						|
 *
 | 
						|
 * Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
 * you may not use this file except in compliance with the License.
 | 
						|
 * You may obtain a copy of the License at
 | 
						|
 *
 | 
						|
 *      https://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 *
 | 
						|
 * Unless required by applicable law or agreed to in writing, software
 | 
						|
 * distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
 * See the License for the specific language governing permissions and
 | 
						|
 * limitations under the License.
 | 
						|
 */
 | 
						|
plugins {
 | 
						|
    id 'com.android.application'
 | 
						|
    id 'org.jetbrains.kotlin.android'
 | 
						|
}
 | 
						|
 | 
						|
android {
 | 
						|
    namespace 'com.example.cupcake'
 | 
						|
    compileSdk 33
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        applicationId "com.example.cupcake"
 | 
						|
        minSdk 24
 | 
						|
        targetSdk 33
 | 
						|
        versionCode 1
 | 
						|
        versionName "1.0"
 | 
						|
 | 
						|
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 | 
						|
        vectorDrawables {
 | 
						|
            useSupportLibrary true
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    buildTypes {
 | 
						|
        release {
 | 
						|
            minifyEnabled false
 | 
						|
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
 | 
						|
        }
 | 
						|
    }
 | 
						|
    compileOptions {
 | 
						|
        sourceCompatibility JavaVersion.VERSION_1_8
 | 
						|
        targetCompatibility JavaVersion.VERSION_1_8
 | 
						|
    }
 | 
						|
    kotlinOptions {
 | 
						|
        jvmTarget = '1.8'
 | 
						|
        freeCompilerArgs += "-opt-in=androidx.compose.material3.ExperimentalMaterial3Api"
 | 
						|
    }
 | 
						|
    buildFeatures {
 | 
						|
        compose true
 | 
						|
    }
 | 
						|
    composeOptions {
 | 
						|
        kotlinCompilerExtensionVersion '1.4.7'
 | 
						|
    }
 | 
						|
    packagingOptions {
 | 
						|
        resources {
 | 
						|
            excludes += '/META-INF/{AL2.0,LGPL2.1}'
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
 | 
						|
    implementation platform('androidx.compose:compose-bom:2023.05.00')
 | 
						|
    implementation 'androidx.activity:activity-compose:1.7.1'
 | 
						|
    implementation 'androidx.compose.material3:material3'
 | 
						|
    implementation 'androidx.compose.runtime:runtime'
 | 
						|
    implementation 'androidx.compose.runtime:runtime-livedata'
 | 
						|
    implementation 'androidx.compose.ui:ui'
 | 
						|
    implementation 'androidx.compose.ui:ui-graphics'
 | 
						|
    implementation 'androidx.compose.ui:ui-tooling-preview'
 | 
						|
    implementation 'androidx.core:core-ktx:1.10.0'
 | 
						|
    implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
 | 
						|
    implementation "androidx.lifecycle:lifecycle-runtime-ktx:$lifecycle_version"
 | 
						|
    implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
 | 
						|
    implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:$lifecycle_version"
 | 
						|
    implementation 'androidx.navigation:navigation-compose:2.5.3'
 | 
						|
 | 
						|
    androidTestImplementation platform('androidx.compose:compose-bom:2023.05.00')
 | 
						|
    androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
 | 
						|
    androidTestImplementation 'androidx.navigation:navigation-testing:2.5.3'
 | 
						|
    androidTestImplementation 'androidx.test.espresso:espresso-intents:3.5.1'
 | 
						|
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
 | 
						|
 | 
						|
    debugImplementation 'androidx.compose.ui:ui-test-manifest'
 | 
						|
    debugImplementation 'androidx.compose.ui:ui-tooling'
 | 
						|
}
 |