문제>

Warning 없애기

Namespace not specified.

 

 

 

해결>

build.gradle (:app) 파일을 열고 android{} 안에 아래를 추가 후에 Sync Now 함

namespace "com.example.project01"

 

plugins {
    id 'com.android.application'
}

android {
    compileSdk 34

    defaultConfig {
        applicationId "com.example.project01"

        namespace "com.example.project01"

        minSdk 21
        targetSdk 34
        versionCode 2
        versionName "1.01"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

 

 

728x90

+ Recent posts