현재 compileSdkVersion 28 로 구글 플레이어 등록이 되질 않아 
어렵게 30으로 업데이트 하고 디버그 하는데 아래와 같은 오류가 뜹니다.
Session 'app': Installation did not succeed.
The application could not be installed: INSTALL_PARSE_FAILED_NO_CERTIFICATES
Retry
SDK Tools 은 아래 처럼 설치가 되었습니다.
-사진-

Nexus 5X API 30 으로 애뮬레이터에서 앱종료 현상이 일어납니다.
--------------------------------------------------------------------------------------------------
원래 28에서 빌드시 오류가 없었는데.. 
30 올리고 나서는 
build apk(s)에서 강제로 휴대폰에 설치도 해보았는데 앱이 종료되고 있습니다.
--------------------------------------------------------------------------------------------------
--참고--
apply plugin: 'com.android.application'
android {
    compileSdkVersion 30
    buildToolsVersion "30.0.2"
    defaultConfig {
        applicationId "com.000.0000"
        minSdkVersion 22
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}
dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}