편집 기록

편집 기록
  • 프로필 알 수 없는 사용자님의 편집
    날짜2016.10.07

    이거 혹시 해결방법 따로 있나요??


    Play스토어에 올린 어플이 몇몇 기종에서 자꾸 팅겨서 오류를 보내보니...

    java.lang.OutOfMemoryError

    이거 뜨는데 해결방법 있나요??

    어떤분이 Minimum SDK확인해보라해서

    build.gradle들어가보니

    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 24
        buildToolsVersion "24.0.0"
    
        defaultConfig {
            applicationId "org.androidtown.minirobot"
            minSdkVersion 15
            targetSdkVersion 24
            versionCode 2
            versionName "1.0.2"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:24.0.0'
    }
    

    이렇게 있어서 버전문제는 아닌것 같긴 한데...

    첫 어플 다 끝났다 생각했는데 답답하네요 ㅠㅠ