제로나라님 웹뷰 따라하기
본문
https://zeronara.net/bbs/board.php?bo_table=tipntech&wr_id=1036
제로나라님 홈페이지 들어가서 그대로 따라 했습니다.
안드로이드 웹뷰-1.
에서
로딩 시간을 줄이는 코드를 삽입했습니다.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.zeronara.zeronara_app">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:hardwareAccelerated="true">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
----------------------------------------------------------------------------------------
물론 이소스도 추가 했구요.
잘 사용해서 생성했구요.
핸드폰에서 설치해서 테스트까지 완료 했습니다.
그런데 key signe을 받으려니 Lint Error이 떠서 Bundle로 signe을 시도하니 되었습니다.
구글 플레이에 올려보니
디버그 가능 APK 또는 Android App Bundle을 업로드했습니다. 보안상의 이유로 Google Play에 게시하기 전에 디버그를 사용 중지해야 합니다.
디버그 모드로 서명한 APK 또는 Android App Bundle을 업로드했습니다. 출시 모드로 APK 또는 Android App Bundle에 서명해야 합니다.
이런 메세지가 뜨면서 업로드가 안되는데 왜 그런건지요 ?
잘 부탁 드리겠습니다.
답변 2
안드로이드 스튜디오에서 debug를 꺼야 될것 같습니다.
https://developer.android.com/studio/publish/preparing 이것을 구글 번역으로 보시고..
한글로 검색을 더 해 보세요