Android build.gradle

2023. 1. 27. 23:13Frontend/Android

    목차
반응형

build.gradle은 프로젝트와 모듈용이 존재합니다.
프로젝트 build.gradle은 일반적인 내용들을 담고 있으며 module용 build.gradle은 프로젝트에 특화된 내용을 담고 있습니다.

buildscript {
    repositories {
        google()
        mavenCentral()
    }

    dependencies {
        classpath "com.android.tools.build:gradle:7.0.2"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.8"
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

plugins {
    id 'com.android.application'
    id 'kotlin-android'
}

android {
    compileSdk 31

    defaultConfig {
        applicationId "com.example.test"
        minSdk 25
        targetSdk 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            ...
        }


    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSIOIN_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {
    implementation 'androidx.core:core-ktx:1.3.2'
    ...
}

dependencies

  • 외부 lib을 지정합니다.
반응형

'Frontend > Android' 카테고리의 다른 글

Android fragment  (0) 2023.01.27
Android layouts  (0) 2023.01.27
Android 버튼 클릭 시 TextView에 텍스트 표시하기  (0) 2023.01.27
Android button에 click event listener 등록하기  (0) 2023.01.27
Android Studio 화면 분할  (0) 2023.01.27