# App/Android(JAVA)

[안드로이드 스튜디오] 프로젝트 생성 후 렌더링 오류

프로젝트를 처음 만들었는데 Hello world도 보이지 않을 때


(다른 프로젝트 imort 하고 새로운 프로젝트 만들 때가 원인이 될 수 있습니다)


1. Gradle Sync를 눌러본다.


2. build.gradle (Module : app) 들어가서 compileSdkVersion, targetSdkVersion,


implementation 'com.android.support:appcompat-v7:27.1.1'


부분 확인하기




기존에 잘 보이던 프로젝트의 gradle app을 복사해봐도 되고


app gradle에 밑에 거 붙여 놓고 gradle sync 돌려보세요



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
apply plugin: 'com.android.application'
 
android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "본인거 쓰기"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
 
dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
 
}
 
cs


728x90